| EndpointInput | R Documentation |
It also provides a method to turn those parameters into a dictionary.
new()Initialize an “EndpointInput“ instance. EndpointInput accepts parameters that specify an endpoint input for a monitoring job and provides a method to turn those parameters into a dictionary.
EndpointInput$new(
endpoint_name,
destination,
s3_input_mode = c("File", "Pipe"),
s3_data_distribution_type = c("FullyReplicated", "ShardedByS3Key"),
start_time_offset = NULL,
end_time_offset = NULL,
features_attribute = NULL,
inference_attribute = NULL,
probability_attribute = NULL,
probability_threshold_attribute = NULL
)endpoint_name(str): The name of the endpoint.
destination(str): The destination of the input.
s3_input_mode(str): The S3 input mode. Can be one of: "File", "Pipe. Default: "File".
s3_data_distribution_type(str): The S3 Data Distribution Type. Can be one of: "FullyReplicated", "ShardedByS3Key"
start_time_offset(str): Monitoring start time offset, e.g. "-PT1H"
end_time_offset(str): Monitoring end time offset, e.g. "-PT0H".
features_attribute(str): JSONpath to locate features in JSONlines dataset. Only used for ModelBiasMonitor and ModelExplainabilityMonitor
inference_attribute(str): Index or JSONpath to locate predicted label(s). Only used for ModelQualityMonitor, ModelBiasMonitor, and ModelExplainabilityMonitor
probability_attribute(str or int): Index or JSONpath to locate probabilities. Only used for ModelQualityMonitor, ModelBiasMonitor and ModelExplainabilityMonitor
probability_threshold_attribute(float): threshold to convert probabilities to binaries Only used for ModelQualityMonitor, ModelBiasMonitor and ModelExplainabilityMonitor
to_request_list()Generates a request dictionary using the parameters provided to the class.
EndpointInput$to_request_list()
format()format class
EndpointInput$format()
clone()The objects of this class are cloneable with this method.
EndpointInput$clone(deep = FALSE)
deepWhether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.