Skip to content

Commit 608be94

Browse files
committed
updates
1 parent 7d27ed4 commit 608be94

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ Other parameters for training API are optional:
8282

8383
* **slidingWindow**: How many data points are used to determine anomalies. An integer between 28 and 2,880. The default value is 300. If `slidingWindow` is `k` for model training, then at least `k` points should be accessible from the source file during inference to get valid results.
8484

85-
MVAD takes a segment of data points to decide if the next data point is an anomaly. The length of the segment is `slidingWindow`.
85+
Multivariate Anomaly Detection takes a segment of data points to decide if the next data point is an anomaly. The length of the segment is the `slidingWindow`.
8686
Please keep two things in mind when choosing a `slidingWindow` value:
8787
1. The properties of your data: whether it's periodic and the sampling rate. When your data is periodic, you could set the length of 1 - 3 cycles as the `slidingWindow`. When your data is at a high frequency (small granularity) like minute-level or second-level, you could set a relatively higher value of `slidingWindow`.
88-
1. The trade-off between training/inference time and potential performance impact. A larger `slidingWindow` may cause longer training/inference time. There's **no guarantee** that larger `slidingWindow`s will lead to accuracy gains. A small `slidingWindow` may cause the model difficult to converge to an optimal solution. For example, it's hard to detect anomalies when `slidingWindow` has only two points.
88+
1. The trade-off between training/inference time and potential performance impact. A larger `slidingWindow` may cause longer training/inference time. There's **no guarantee** that larger `slidingWindow`s will lead to accuracy gains. A small `slidingWindow` may make it difficult for the model to converge on an optimal solution. For example, it's hard to detect anomalies when `slidingWindow` has only two points.
8989

9090
* **alignMode**: How to align multiple variables (time series) on timestamps. There are two options for this parameter, `Inner` and `Outer`, and the default value is `Outer`.
9191

@@ -143,7 +143,7 @@ Other parameters for training API are optional:
143143

144144
* **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

146-
* **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 meta data about the model and its input data. The default value is an empty string.
146+
* **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

148148
### Response
149149

articles/cognitive-services/Anomaly-Detector/toc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@
4848
- name: All Cognitive Services containers documentation
4949
href: ../containers/index.yml
5050
maintainContext: true
51+
- name: Multivariate Anomaly Detector
52+
items:
53+
- name: Train a model
54+
href: how-to/train-model.md
5155
- name: Enterprise readiness
5256
items:
5357
- name: Set up Virtual Networks

0 commit comments

Comments
 (0)