Skip to content

Commit 6a68a32

Browse files
Acrolinx fixes to try for 80 score
1 parent 11429a1 commit 6a68a32

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.author: mbullwin
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)

0 commit comments

Comments
 (0)