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
/// To create this trainer, use [Gam](xref:Microsoft.ML.TreeExtensions.Gam(Microsoft.ML.BinaryClassificationCatalog.BinaryClassificationTrainers,System.String,System.String,System.String,System.Int32,System.Int32,System.Double))
35
+
/// or [Gam(Options)](xref:Microsoft.ML.TreeExtensions.Gam(Microsoft.ML.BinaryClassificationCatalog.BinaryClassificationTrainers,Microsoft.ML.Trainers.FastTree.GamBinaryTrainer.Options)).
/// <param name="labelColumnName">The name of the label column.</param>
185
-
/// <param name="featureColumnName">The name of the feature column.</param>
184
+
/// <param name="labelColumnName">The name of the label column. The column data must be <see cref="System.Boolean"/>.</param>
185
+
/// <param name="featureColumnName">The name of the feature column. The column data must be a known-sized vector of <see cref="System.Single"/>.</param>
186
186
/// <param name="exampleWeightColumnName">The name of the example weight column (optional).</param>
187
187
/// <param name="numberOfIterations">The number of iterations to use in learning the features.</param>
188
188
/// <param name="maximumBinCountPerFeature">The maximum number of bins to use to approximate features.</param>
@@ -208,7 +208,7 @@ public static GamBinaryTrainer Gam(this BinaryClassificationCatalog.BinaryClassi
208
208
}
209
209
210
210
/// <summary>
211
-
/// Predict a target using generalized additive models (GAM) trained with the <see cref="GamBinaryTrainer"/>.
211
+
/// Create <see cref="GamBinaryTrainer"/> using advanced options, which predicts a target using generalized additive models (GAM).
0 commit comments