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
The input label column data must be <xref:System.Boolean>. This trainer outputs the following columns:
2
+
The input label column data must be <xref:System.Boolean>.
3
+
The input features column data must be a known-sized vector of <xref:System.Single>. This trainer outputs the following columns:
3
4
4
5
| Output Column Name | Column Type | Description|
5
6
| -- | -- | -- |
6
-
|`Score`|<xref:System.Single>| The unbounded score that was calculated by the trainer to determine the prediction.|
7
-
|`PredictedLabel`|<xref:System.Boolean>| The label predicted by the trainer. `false` maps to negative score and `true` maps to positive score.|
8
-
|`Probability`|<xref:System.Single>| The probability of having true as the label. Probability value is in range [0, 1].||
7
+
|`Score`|<xref:System.Single>| The unbounded score that was calculated by the model.|
8
+
|`PredictedLabel`|<xref:System.Boolean>| The predicted label, based on the sign of the score. A negative score maps to `false` and a positive score maps to `true`.|
9
+
|`Probability`|<xref:System.Single>| The probability calculated by calibrating the score of having true as the label. Probability value is in range [0, 1].||
/// Trains an approximate principal component analysis (PCA) model using randomized SVD algorithm.
43
+
/// Create <see cref="RandomizedPcaTrainer"/>, which trains an approximate principal component analysis (PCA) model using randomized singular value decomposition (SVD) algorithm.
/// <param name="featureColumnName">The name of the feature column.</param>
47
-
/// <param name="exampleWeightColumnName">The name of the example weight column (optional).</param>
46
+
/// <param name="featureColumnName">The name of the feature column. The column data must be a known-sized vector of <see cref="System.Single"/>.</param>
47
+
/// <param name="exampleWeightColumnName">The name of the example weight column (optional). To use the weight column, the column data
48
+
/// must be of type <see cref="System.Single"/>.</param>
48
49
/// <param name="rank">The number of components in the PCA.</param>
49
50
/// <param name="oversampling">Oversampling parameter for randomized PCA training.</param>
50
51
/// <param name="ensureZeroMean">If enabled, data is centered to be zero mean.</param>
@@ -69,7 +70,7 @@ public static RandomizedPcaTrainer RandomizedPca(this AnomalyDetectionCatalog.An
69
70
}
70
71
71
72
/// <summary>
72
-
/// Trains an approximate principal component analysis (PCA) model using randomized SVD algorithm.
73
+
/// Create <see cref="RandomizedPcaTrainer"/> with advanced options, which trains an approximate principal component analysis (PCA) model using randomized singular value decomposition (SVD) algorithm.
/// The <see cref="IEstimator{TTransformer}"/> for training an approximate PCA using Randomized SVD algorithm.
38
37
/// </summary>
39
38
/// <remarks>
40
-
/// This PCA can be made into Kernel PCA by using Random Fourier Features transform
39
+
/// <format type="text/markdown"><)
41
+
/// or [RandomizedPca(Options)](xref:Microsoft.ML.PcaCatalog.RandomizedPca(Microsoft.ML.AnomalyDetectionCatalog.AnomalyDetectionTrainers,Microsoft.ML.Trainers.RandomizedPcaTrainer.Options)).
0 commit comments