Skip to content

Commit ec9c22c

Browse files
committed
Edit content
1 parent c4cbc64 commit ec9c22c

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

articles/machine-learning/how-to-monitor-model-performance.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -559,18 +559,15 @@ To understand the concepts associated with model performance monitoring, conside
559559

560560
After you satisfy the [prerequisites for model performance monitoring](#more-prerequisites-for-model-performance-monitoring), you can use the Azure CLI to set up model monitoring:
561561

562-
1. Create a monitoring definition in a YAML file. For a sample advanced definition, see the following YAML code, which is also available in the [azureml-examples repository](https://github.com/Azure/azureml-examples/blob/main/cli/monitoring/advanced-model-monitoring.yaml).
563-
564-
Before you use this definition, adjust the following values and any others you need to fit your environment:
562+
1. Create a monitoring definition in a YAML file. The following sample specification defines model monitoring with production inference data. Before you use this definition, adjust the following values and any others you need to fit your environment:
565563

566564
- For `endpoint_deployment_id`, use a value in the format `azureml:<endpoint-name>:<deployment-name>`.
567-
- For `path` in reference input data sections, use a value in the format `azureml:<reference-data-asset-name>:<version>`.
568-
- For `target_column`, use the name of the output column that contains values that the model predicts, such as `DEFAULT_NEXT_MONTH`.
569-
- For `features`, list the features like `SEX`, `EDUCATION`, and `AGE` that you want to use in an advanced data quality signal.
565+
- For `path` in the reference input data section, use a value in the format `azureml:<ground-truth-data-asset-name>:<version>`.
566+
- For the `prediction` value, use the name of the output column that contains values that the model predicts, such as `DEFAULT_NEXT_MONTH`.
567+
- For the `actual` value, use the name of the ground truth column that contains the actual values that the model tries to predict.
568+
- For the `correlation_id` values, use the names of the columns that are used to join the output data and the ground truth data.
570569
- For `emails`, list the email addresses that you want to use for notifications.
571570

572-
The following YAML contains the definition for model monitoring with production inference data that you've collected.
573-
574571
```YAML
575572
$schema: http://azureml/sdk-2-0/Schedule.json
576573
name: model_performance_monitoring
@@ -607,7 +604,7 @@ After you satisfy the [prerequisites for model performance monitoring](#more-pre
607604
data_column_names:
608605
actual: is_fraud
609606
correlation_id: correlation_id
610-
data_context: actuals
607+
data_context: ground_truth
611608
alert_enabled: true
612609
metric_thresholds:
613610
tabular_classification:

0 commit comments

Comments
 (0)