Skip to content

Commit 2e23790

Browse files
authored
Update how-to-monitor-datasets.md
1 parent b9d89ea commit 2e23790

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,11 @@ Before following the steps in this article, make sure you have the following pre
6868

6969
* An Azure Machine Learning workspace and a compute instance. If you don't have these resources, use the steps in the [Quickstart: Create workspace resources](../quickstart-create-resources.md) article to create them.
7070

71+
# [Azure CLI](#tab/azure-cli)
72+
73+
[!INCLUDE [basic prereqs cli](../includes/machine-learning-cli-prereqs.md)]
74+
---
75+
7176
* Azure role-based access controls (Azure RBAC) are used to grant access to operations in Azure Machine Learning. To perform the steps in this article, your user account must be assigned the __owner__ or __contributor__ role for the Azure Machine Learning workspace, or a custom role allowing `Microsoft.MachineLearningServices/workspaces/onlineEndpoints/*`. For more information, see [Manage access to an Azure Machine Learning workspace](../how-to-assign-roles.md).
7277

7378
* For monitoring a model that is deployed to an Azure Machine Learning online endpoint (managed online endpoint or Kubernetes online endpoint), be sure to:
@@ -82,10 +87,6 @@ Before following the steps in this article, make sure you have the following pre
8287
* Update the registered data asset continuously for model monitoring.
8388
* (Recommended) Register the model in an Azure Machine Learning workspace, for lineage tracking.
8489

85-
# [Azure CLI](#tab/azure-cli)
86-
87-
[!INCLUDE [basic prereqs cli](../includes/machine-learning-cli-prereqs.md)]
88-
---
8990
> [!IMPORTANT]
9091
>
9192
> Model monitoring jobs are scheduled to run on serverless Spark compute pools with support for the following VM instance types: `Standard_E4s_v3`, `Standard_E8s_v3`, `Standard_E16s_v3`, `Standard_E32s_v3`, and `Standard_E64s_v3`. You can select the VM instance type with the `create_monitor.compute.instance_type` property in your YAML configuration or from the dropdown in the Azure Machine Learning studio.
@@ -215,6 +216,7 @@ Not supported.
215216

216217

217218

219+
218220
## Create dataset monitor
219221

220222
Create a dataset monitor to detect and alert to data drift on a new dataset. Use either the [Python SDK](#sdk-monitor) or [Azure Machine Learning studio](#studio-monitor).
@@ -319,6 +321,7 @@ monitor = monitor.enable_schedule()
319321
After completion of the wizard, the resulting dataset monitor will appear in the list. Select it to go to that monitor's details page.
320322

321323
# [Azure CLI](#tab/azure-cli)
324+
322325
Not supported
323326
---
324327

@@ -427,6 +430,7 @@ created_monitor = poller.result()
427430
1. Select **Next** to go to the **Select monitoring signals** page.
428431
1. Select **Next** to go to the **Notifications** page. Add your email to receive email notifications.
429432
1. Review your monitoring details and select **Create** to create the monitor.
433+
430434
# [Azure CLI](#tab/azure-cli)
431435

432436
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:

0 commit comments

Comments
 (0)