Skip to content

Commit 2122bc8

Browse files
authored
Update how-to-monitor-datasets.md
1 parent ce26ea5 commit 2122bc8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ Metrics in the chart depend on the type of feature.
513513

514514
| Metric | Description |
515515
| ------ | ----------- |
516-
| Euclidian distance | Computed for categorical columns. Euclidean distance is computed on two vectors, generated from empirical distribution of the same categorical column from two datasets. 0 indicates no difference in the empirical distributions. The more it deviates from 0, the more this column has drifted. Trends can be observed from a time series plot of this metric and can be helpful in uncovering a drifting feature. |
516+
| Euclidian distance | Computed for categorical columns. Euclidean distance is computed on two vectors, generated from empirical distribution of the same categorical column from two datasets. 0 indicates no difference in the empirical distributions. The more it deviates from 0, the more this column has drifted. Trends can be observed from a time series plot of this metric and can be helpful in uncovering a drifting feature. |
517517
| Unique values | Number of unique values (cardinality) of the feature. |
518518

519519
On this chart, select a single date to compare the feature distribution between the target and this date for the displayed feature. For numeric features, this shows two probability distributions. If the feature is numeric, a bar chart is shown.
@@ -522,7 +522,7 @@ On this chart, select a single date to compare the feature distribution between
522522

523523
## Metrics, alerts, and events
524524

525-
Metrics can be queried in the [Azure Application Insights](../../azure-monitor/app/app-insights-overview.md) resource associated with your machine learning workspace. You have access to all features of Application Insights including set up for custom alert rules and action groups to trigger an action such as, an Email/SMS/Push/Voice or Azure Function. Refer to the complete Application Insights documentation for details.
525+
Metrics can be queried in the [Azure Application Insights](/azure/azure-monitor/app/app-insights-overview) resource associated with your machine learning workspace. You have access to all features of Application Insights including set up for custom alert rules and action groups to trigger an action such as, an Email/SMS/Push/Voice or Azure Function. Refer to the complete Application Insights documentation for details.
526526

527527
To get started, navigate to the [Azure portal](https://portal.azure.com) and select your workspace's **Overview** page. The associated Application Insights resource is on the far right:
528528

@@ -568,6 +568,10 @@ Limitations and known issues for data drift monitors:
568568

569569
* If the SDK `backfill()` function doesn't generate the expected output, it may be due to an authentication issue. When you create the compute to pass into this function, don't use `Run.get_context().experiment.workspace.compute_targets`. Instead, use [ServicePrincipalAuthentication](/python/api/azureml-core/azureml.core.authentication.serviceprincipalauthentication) such as the following to create the compute that you pass into that `backfill()` function:
570570

571+
> [!NOTE]
572+
> Do not hard code the service principal password in your code. Instead, retrieve it from the Python environment, key store, or other secure method of accessing secrets.
573+
>
574+
571575
```python
572576
auth = ServicePrincipalAuthentication(
573577
tenant_id=tenant_id,

0 commit comments

Comments
 (0)