Skip to content

Commit 2ff26d6

Browse files
Merge pull request #225562 from pritamso/Broken-link-fix-mrbullwinkle
Broken link fix
2 parents d6b428d + 65348e0 commit 2ff26d6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

articles/cognitive-services/Anomaly-Detector/includes/quickstarts/anomaly-detector-client-library-python-multivariate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ pip install pandas
4343

4444
### Download sample data
4545

46-
This quickstart uses the `sample_data_5_3000.zip` file that can be downloaded from our [GitHub sample data](https://github.com/Azure-Samples/AnomalyDetector/blob/master/samples-multivariate/multivariate_sample_data/sample_data_5_3000.zip)
46+
This quickstart uses the `sample_data_5_3000.zip` file that can be downloaded from our [GitHub sample data](https://github.com/Azure-Samples/AnomalyDetector/blob/master/sampledata/multivariate/multivariate_sample_data_5_3000.zip)
4747

4848
You can also download the sample data by running:
4949

5050
```cmd
51-
curl "https://github.com/Azure-Samples/AnomalyDetector/blob/master/samples-multivariate/multivariate_sample_data/sample_data_5_3000.zip" --output sample_data_5_3000_.zip
51+
curl "https://github.com/Azure-Samples/AnomalyDetector/blob/master/sampledata/multivariate/multivariate_sample_data_5_3000.zip" --output sample_data_5_3000_.zip
5252
```
5353

5454
### Generate SAS URL
@@ -258,4 +258,4 @@ We also have an [in-depth Jupyter Notebook](https://github.com/Azure-Samples/Ano
258258
If you want to clean up and remove an Anomaly Detector resource, you can delete the resource or resource group. Deleting the resource group also deletes any other resources associated with it. You also may want to consider [deleting the environment variables](/powershell/module/microsoft.powershell.core/about/about_environment_variables#using-the-environment-provider-and-item-cmdlets) you created if you no longer intend to use them.
259259

260260
* [Portal](../../../cognitive-services-apis-create-account.md#clean-up-resources)
261-
* [Azure CLI](../../../cognitive-services-apis-create-account-cli.md#clean-up-resources)
261+
* [Azure CLI](../../../cognitive-services-apis-create-account-cli.md#clean-up-resources)

articles/cognitive-services/Anomaly-Detector/includes/quickstarts/anomaly-detector-client-library-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,9 @@ Anomaly detected at index: 44
162162

163163
### Understanding your results
164164

165-
In our code above, we call the Anomaly Detector API twice. The first call checks for trend change points across our sample data series with the [`detect_change_point`](/python/api/azure-ai-anomalydetector/azure.ai.anomalydetector.operations.anomalydetectorclientoperationsmixin?view=azure-python-preview#azure-ai-anomalydetector-operations-anomalydetectorclientoperationsmixin-detect-change-point&preserve-view=true) method. This call returns a [`ChangePointDetectResponse`](/python/api/azure-ai-anomalydetector/azure.ai.anomalydetector.models.changepointdetectresponse?view=azure-python-preview&preserve-view=true) that we stored in a variable we named `change_point_request`. We then iterate through the response's `is_change_point` list, and print the index of any values with a boolean of `true`.
165+
In our code above, we call the Anomaly Detector API twice. The first call checks for trend change points across our sample data series with the `detect_change_point` method. This call returns a `ChangePointDetectResponse` that we stored in a variable we named `change_point_request`. We then iterate through the response's `is_change_point` list, and print the index of any values with a boolean of `true`.
166166

167-
The second call checks the entire sample data series for anomalies using the [`detect_entire_series`](/python/api/azure-ai-anomalydetector/azure.ai.anomalydetector.operations.anomalydetectorclientoperationsmixin?view=azure-python-preview#azure-ai-anomalydetector-operations-anomalydetectorclientoperationsmixin-detect-entire-series&preserve-view=true) method. This call returns a [`EntireDetectResponse`](/python/api/azure-ai-anomalydetector/azure.ai.anomalydetector.models.entiredetectresponse?view=azure-python-preview&preserve-view=true) that we stored in a variable we named `anomaly_response`. We iterate through the response's `is_anomaly` list, and print the index of any values with a boolean of `true`. Alternatively, we could have used the [`detect_last_point`](/python/api/azure-ai-anomalydetector/azure.ai.anomalydetector.operations.anomalydetectorclientoperationsmixin?view=azure-python-preview#azure-ai-anomalydetector-operations-anomalydetectorclientoperationsmixin-detect-last-point&preserve-view=true) method, which is more appropriate for detecting anomalies in real-time data. To learn more, consult the [best practices guide](../../concepts/anomaly-detection-best-practices.md).
167+
The second call checks the entire sample data series for anomalies using the `detect_entire_series` method. This call returns a `EntireDetectResponse` that we stored in a variable we named `anomaly_response`. We iterate through the response's `is_anomaly` list, and print the index of any values with a boolean of `true`. Alternatively, we could have used the `detect_last_point` method, which is more appropriate for detecting anomalies in real-time data. To learn more, consult the [best practices guide](../../concepts/anomaly-detection-best-practices.md).
168168

169169
## Visualize results
170170

articles/cognitive-services/Anomaly-Detector/whats-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ We've also added links to some user-generated content. Those items will be marke
9898
* September 2020 [Multivariate Time-series Anomaly Detection via Graph Attention Network](https://arxiv.org/abs/2009.02040) - Paper on multivariate anomaly detection accepted by ICDM 2020
9999
* November 5, 2019 [Overview of SR-CNN algorithm in Azure Anomaly Detector](https://techcommunity.microsoft.com/t5/ai-customer-engineering-team/overview-of-sr-cnn-algorithm-in-azure-anomaly-detector/ba-p/982798) - Technical blog on SR-CNN
100100
* June 10, 2019 [Time-Series Anomaly Detection Service at Microsoft](https://arxiv.org/abs/1906.03821) - Paper on SR-CNN accepted by KDD 2019
101-
* April 25, 2019 **[UGC]** [Trying the Cognitive Service: Anomaly Detector API (in Japanese)](https://azure-recipe.kc-cloud.jp/2019/04/cognitive-service-anomaly-detector-api/)
101+
* April 25, 2019 **[UGC]** [Trying the Cognitive Service: Anomaly Detector API (in Japanese)](/ja-jp/azure/cognitive-services/anomaly-detector/)
102102
* April 20, 2019 [Introducing Azure Anomaly Detector API](https://techcommunity.microsoft.com/t5/ai-customer-engineering-team/introducing-azure-anomaly-detector-api/ba-p/490162) - Announcement blog
103103

104104
## Videos

0 commit comments

Comments
 (0)