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
Copy file name to clipboardExpand all lines: src/Microsoft.ML.PCA/PCACatalog.cs
+8
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,10 @@ internal static PrincipalComponentAnalyzer ProjectToPrincipalComponents(this Tra
54
54
/// <param name="oversampling">Oversampling parameter for randomized PCA training.</param>
55
55
/// <param name="ensureZeroMean">If enabled, data is centered to be zero mean.</param>
56
56
/// <param name="seed">The seed for random number generation.</param>
57
+
/// <remarks>
58
+
/// By default the threshold used to determine the label of a data point based on the predicted score is 0.5. Scores range from 0 to 1. A data point with predicted
59
+
/// score higher than 0.5 is considered an outlier. Use <see cref="AnomalyDetectionCatalog.ChangeModelThreshold"/> to change this threshold.
60
+
/// </remarks>
57
61
/// <example>
58
62
/// <format type="text/markdown">
59
63
/// <![CDATA[
@@ -78,6 +82,10 @@ public static RandomizedPcaTrainer RandomizedPca(this AnomalyDetectionCatalog.An
/// <param name="options">Advanced options to the algorithm.</param>
85
+
/// <remarks>
86
+
/// By default the threshold used to determine the label of a data point based on the predicted score is 0.5. Scores range from 0 to 1. A data point with predicted
87
+
/// score higher than 0.5 is considered an outlier. Use <see cref="AnomalyDetectionCatalog.ChangeModelThreshold"/> to change this threshold.
0 commit comments