Skip to content

Commit 81780c6

Browse files
authored
Update how-to-monitor-datasets.md
1 parent 2368426 commit 81780c6

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

articles/machine-learning/v1/how-to-monitor-datasets.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,10 @@ monitor = monitor.enable_schedule()
286286
After completion of the wizard, the resulting dataset monitor will appear in the list. Select it to go to that monitor's details page.
287287

288288
# [Azure CLI](#tab/azure-cli)
289+
<a name="cli-monitor"></a>
289290

290291
Not supported
292+
291293
---
292294

293295

@@ -298,11 +300,12 @@ When you migrate to Model Monitor, if you didn't deploy your model to production
298300

299301
Following sections contain more details on how to migrate to Model Monitor.
300302

301-
## If you have deployed your model to production in an Azure Machine Learning online endpoint and enabled data collection (Migrate to Model Monitor)
303+
## Create Model Monitor via automatically collected production data (Migrate to Model Monitor)
302304

303305
If you have deployed your model to production in an Azure Machine Learning online endpoint and enabled [data collection](../how-to-collect-production-data.md) at deployment time.
304306

305307
# [Python SDK](#tab/python)
308+
<a name="sdk-model-monitor"></a>
306309

307310
You can use the following code to set up the out-of-box model monitoring:
308311

@@ -371,6 +374,7 @@ created_monitor = poller.result()
371374
```
372375

373376
# [Studio](#tab/azure-studio)
377+
<a name="studio-model-monitor"></a>
374378

375379
1. Navigate to [Azure Machine Learning studio](https://ml.azure.com).
376380
1. Go to your workspace.
@@ -397,6 +401,7 @@ created_monitor = poller.result()
397401
1. Review your monitoring details and select **Create** to create the monitor.
398402

399403
# [Azure CLI](#tab/azure-cli)
404+
<a name="cli-model-monitor"></a>
400405

401406
Azure Machine Learning model monitoring uses `az ml schedule` to schedule a monitoring job. You can create the out-of-box model monitor with the following CLI command and YAML definition:
402407

@@ -410,10 +415,10 @@ The following YAML contains the definition for the out-of-box model monitoring.
410415

411416
---
412417

413-
## If you didn't deploy your model to production in an Azure Machine Learning online endpoint or you don't want to use data collection (Migrate to Model Monitor)
418+
## Create Model Monitor via custom data preprocessing component (Migrate to Model Monitor)
414419
When you migrate to Model Monitor, if you didn't deploy your model to production in an Azure Machine Learning online endpoint, or you don't want to use [data collection](../how-to-collect-production-data.md), you can also [set up model monitoring with custom signals and metrics](../how-to-monitor-model-performance.md#set-up-model-monitoring-with-custom-signals-and-metrics).
415420

416-
You can also set up model monitoring for models deployed to Azure Machine Learning batch endpoints or deployed outside of Azure Machine Learning. If you don't have a deployment, but you have production data, you can use the data to perform continuous model monitoring. To monitor these models, you must be able to:
421+
If you don't have a deployment, but you have production data, you can use the data to perform continuous model monitoring. To monitor these models, you must be able to:
417422

418423
* Collect production inference data from models deployed in production.
419424
* Register the production inference data as an Azure Machine Learning data asset, and ensure continuous updates of the data.

0 commit comments

Comments
 (0)