Skip to content

doc: fix typo in create_monitoring_schedule method #2176

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/sagemaker/model_monitor/model_monitoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def create_monitoring_schedule(
schedule.
statistics (sagemaker.model_monitor.Statistic or str): If provided alongside
constraints, these will be used for monitoring the endpoint. This can be a
sagemaker.model_monitor.Constraints object or an S3 uri pointing to a constraints
sagemaker.model_monitor.Statistic object or an S3 uri pointing to a statistic
JSON file.
constraints (sagemaker.model_monitor.Constraints or str): If provided alongside
statistics, these will be used for monitoring the endpoint. This can be a
Expand Down Expand Up @@ -352,7 +352,7 @@ def update_monitoring_schedule(
schedule.
statistics (sagemaker.model_monitor.Statistic or str): If provided alongside
constraints, these will be used for monitoring the endpoint. This can be a
sagemaker.model_monitor.Constraints object or an S3 uri pointing to a constraints
sagemaker.model_monitor.Statistics object or an S3 uri pointing to a statistics
JSON file.
constraints (sagemaker.model_monitor.Constraints or str): If provided alongside
statistics, these will be used for monitoring the endpoint. This can be a
Expand Down Expand Up @@ -1552,7 +1552,7 @@ def create_monitoring_schedule(
JSON file.
statistics (sagemaker.model_monitor.Statistic or str): If provided alongside
constraints, these will be used for monitoring the endpoint. This can be a
sagemaker.model_monitor.Constraints object or an s3_uri pointing to a constraints
sagemaker.model_monitor.Statistics object or an s3_uri pointing to a statistics
JSON file.
monitor_schedule_name (str): Schedule name. If not specified, the processor generates
a default job name, based on the image name and current timestamp.
Expand Down Expand Up @@ -1657,7 +1657,7 @@ def update_monitoring_schedule(
statistics json files.
statistics (sagemaker.model_monitor.Statistic or str): If provided alongside
constraints, these will be used for monitoring the endpoint. This can be a
sagemaker.model_monitor.Constraints object or an S3 uri pointing to a constraints
sagemaker.model_monitor.Statistics object or an S3 uri pointing to a statistics
JSON file.
constraints (sagemaker.model_monitor.Constraints or str): If provided alongside
statistics, these will be used for monitoring the endpoint. This can be a
Expand Down Expand Up @@ -1843,7 +1843,7 @@ def _update_data_quality_monitoring_schedule(
to a constraints JSON file.
statistics (sagemaker.model_monitor.Statistic or str): If provided alongside
constraints, these will be used for monitoring the endpoint. This can be a
sagemaker.model_monitor.Constraints object or an S3 uri pointing to a constraints
sagemaker.model_monitor.Statistics object or an S3 uri pointing to a statistics
JSON file.
schedule_cron_expression (str): The cron expression that dictates the frequency that
this job run. See sagemaker.model_monitor.CronExpressionGenerator for valid
Expand Down