Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated docs to include PredictedLabel member #4107

Merged
merged 11 commits into from
Aug 23, 2019
3 changes: 2 additions & 1 deletion docs/api-reference/io-columns-anomaly-detection.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ The input features column data must be a known-sized vector of <xref:System.Sing

| Output Column Name | Column Type | Description|
| -- | -- | -- |
| `Score` | <xref:System.Single> | The non-negative, unbounded score that was calculated by the anomaly detection model.|
| `Score` | <xref:System.Single> | The non-negative, unbounded score that was calculated by the anomaly detection model.|
| `PredictedLabel` | <xref:System.Boolean> | The predicted label, based on the threshold. A score higher than the threshold maps to `true` and a score lower than the threshold maps to `false`. The default threshold is `0.5`.Use <xref:AnomalyDetectionCatalog.ChangeModelThreshold> to change the default value.|