Skip to content

Commit 2c868f2

Browse files
Merge pull request #233108 from jboback/AnomalyDetectorMetadata
Anomaly Detector Metadata
2 parents 5dc58dc + d1f347d commit 2c868f2

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

articles/cognitive-services/Anomaly-Detector/How-to/prepare-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: mrbullwinkle
77
manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: anomaly-detector
10-
ms.topic: conceptual
10+
ms.topic: how-to
1111
ms.date: 11/01/2022
1212
ms.author: mbullwin
1313
---

articles/cognitive-services/Anomaly-Detector/How-to/streaming-inference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: mrbullwinkle
77
manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: anomaly-detector
10-
ms.topic: conceptual
10+
ms.topic: how-to
1111
ms.date: 11/01/2022
1212
ms.author: mbullwin
1313
---

articles/cognitive-services/Anomaly-Detector/How-to/train-model.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ author: mrbullwinkle
77
manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: anomaly-detector
10-
ms.topic: conceptual
10+
ms.topic: how-to
1111
ms.date: 11/01/2022
1212
ms.author: mbullwin
1313
---
1414

1515
# Train a Multivariate Anomaly Detection model
1616

17-
To test out Multivariate Anomaly Detection quickly, try the [Code Sample](https://github.com/Azure-Samples/AnomalyDetector)! For more instructions on how to run a jupyter notebook, please refer to [Install and Run a Jupyter Notebook](https://jupyter-notebook-beginner-guide.readthedocs.io/en/latest/install.html#).
17+
To test out Multivariate Anomaly Detection quickly, try the [Code Sample](https://github.com/Azure-Samples/AnomalyDetector)! For more instructions on how to run a Jupyter notebook, please refer to [Install and Run a Jupyter Notebook](https://jupyter-notebook-beginner-guide.readthedocs.io/en/latest/install.html#).
1818

1919
## API Overview
2020

@@ -31,9 +31,9 @@ There are 7 APIs provided in Multivariate Anomaly Detection:
3131
| ------ | ---- | ----------- | ------ |
3232
|**Train Model**| POST | `{endpoint}`/anomalydetector/v1.1/multivariate/models | Create and train a model |
3333
|**Get Model Status**| GET | `{endpoint}`anomalydetector/v1.1/multivariate/models/`{modelId}` | Get model status and model metadata with `modelId` |
34-
|**Batch Inference**| POST | `{endpoint}`/anomalydetector/v1.1/multivariate/models/`{modelId}`: detect-batch | Trigger an asynchronous inference with `modelId` which works in a batch scenario |
34+
|**Batch Inference**| POST | `{endpoint}`/anomalydetector/v1.1/multivariate/models/`{modelId}`: detect-batch | Trigger an asynchronous inference with `modelId`, which works in a batch scenario |
3535
|**Get Batch Inference Results**| GET | `{endpoint}`/anomalydetector/v1.1/multivariate/detect-batch/`{resultId}` | Get batch inference results with `resultId` |
36-
|**Streaming Inference**| POST | `{endpoint}`/anomalydetector/v1.1/multivariate/models/`{modelId}`: detect-last | Trigger a synchronous inference with `modelId` which works in a streaming scenario |
36+
|**Streaming Inference**| POST | `{endpoint}`/anomalydetector/v1.1/multivariate/models/`{modelId}`: detect-last | Trigger a synchronous inference with `modelId`, which works in a streaming scenario |
3737
|**List Model**| GET | `{endpoint}`/anomalydetector/v1.1/multivariate/models | List all models |
3838
|**Delete Model**| DELET | `{endpoint}`/anomalydetector/v1.1/multivariate/models/`{modelId}` | Delete model with `modelId` |
3939

@@ -141,7 +141,7 @@ Other parameters for training API are optional:
141141
| `Zero` | Fill `nan` values with 0. |
142142
| `Fixed` | Fill `nan` values with a specified valid value that should be provided in `paddingValue`. |
143143

144-
* **paddingValue**: Padding value is used to fill `nan` when `fillNAMethod` is `Fixed` and must be provided in that case. In other cases it's optional.
144+
* **paddingValue**: Padding value is used to fill `nan` when `fillNAMethod` is `Fixed` and must be provided in that case. In other cases, it's optional.
145145

146146
* **displayName**: This is an optional parameter, which is used to identify models. For example, you can use it to mark parameters, data sources, and any other metadata about the model and its input data. The default value is an empty string.
147147

@@ -450,4 +450,4 @@ The response contains four fields, `models`, `currentCount`, `maxCount`, and `ne
450450

451451
## Next steps
452452

453-
* [Best practices of multivariate anomaly detection](../concepts/best-practices-multivariate.md)
453+
* [Best practices of multivariate anomaly detection](../concepts/best-practices-multivariate.md)

articles/cognitive-services/Anomaly-Detector/concepts/anomaly-detection-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: mrbullwinkle
77
manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: anomaly-detector
10-
ms.topic: conceptual
10+
ms.topic: best-practice
1111
ms.custom: cogserv-non-critical-anomaly-detector
1212
ms.date: 01/22/2021
1313
ms.author: mbullwin

articles/cognitive-services/Anomaly-Detector/concepts/best-practices-multivariate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: mrbullwinkle
77
manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: anomaly-detector
10-
ms.topic: conceptual
10+
ms.topic: best-practice
1111
ms.date: 06/07/2022
1212
ms.custom: cogserv-non-critical-anomaly-detector
1313
ms.author: mbullwin

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ title: What's New - Anomaly Detector
33
description: This article is regularly updated with news about the Azure Cognitive Services Anomaly Detector.
44
ms.service: cognitive-services
55
ms.subservice: anomaly-detector
6-
ms.topic: overview
6+
ms.topic: whats-new
77
ms.date: 12/15/2022
88
---
99

1010
# What's new in Anomaly Detector
1111

1212
Learn what's new in the service. These items include release notes, videos, blog posts, papers, and other types of information. Bookmark this page to keep up to date with the service.
1313

14-
We've also added links to some user-generated content. Those items will be marked with **[UGC]** tag. Some of them are hosted on websites that are external to Microsoft and Microsoft is not responsible for the content there. Use discretion when you refer to these resources. Contact [email protected] or raise an issue on GitHub if you'd like us to remove the content.
14+
We have also added links to some user-generated content. Those items will be marked with **[UGC]** tag. Some of them are hosted on websites that are external to Microsoft and Microsoft isn't responsible for the content there. Use discretion when you refer to these resources. Contact [email protected] or raise an issue on GitHub if you'd like us to remove the content.
1515

1616
## Release notes
1717

1818
### Jan 2023
19-
* Multivariate Anomaly Detection will begin charging as of January 10th, 2023. For pricing details see the [pricing page](https://azure.microsoft.com/pricing/details/cognitive-services/anomaly-detector/).
19+
* Multivariate Anomaly Detection will begin charging as of January 10th, 2023. For pricing details, see the [pricing page](https://azure.microsoft.com/pricing/details/cognitive-services/anomaly-detector/).
2020

2121
### Dec 2022
2222
* Multivariate Anomaly Detection SDK is updated to match with GA API for four languages.
@@ -36,7 +36,7 @@ We've also added links to some user-generated content. Those items will be marke
3636

3737
### June 2022
3838

39-
* New blog released: [4 sets of best practices to use Multivariate Anomaly Detector when monitoring your equipment](https://techcommunity.microsoft.com/t5/ai-cognitive-services-blog/4-sets-of-best-practices-to-use-multivariate-anomaly-detector/ba-p/3490848#footerContent).
39+
* New blog released: [Four sets of best practices to use Multivariate Anomaly Detector when monitoring your equipment](https://techcommunity.microsoft.com/t5/ai-cognitive-services-blog/4-sets-of-best-practices-to-use-multivariate-anomaly-detector/ba-p/3490848#footerContent).
4040

4141
### May 2022
4242

0 commit comments

Comments
 (0)