You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated docs to include PredictedLabel member (#4107)
* Fixed build errors resulting from upgrade to VS2019 compilers
* Added additional message describing the previous fix
* Updated docs to include PredictedLabel member
Copy file name to clipboardExpand all lines: docs/api-reference/io-columns-anomaly-detection.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -3,4 +3,5 @@ The input features column data must be a known-sized vector of <xref:System.Sing
3
3
4
4
| Output Column Name | Column Type | Description|
5
5
| -- | -- | -- |
6
-
|`Score`|<xref:System.Single>| The non-negative, unbounded score that was calculated by the anomaly detection model.|
6
+
|`Score`|<xref:System.Single>| The non-negative, unbounded score that was calculated by the anomaly detection model.|
7
+
|`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.|
0 commit comments