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.RegressionCatalog.RegressionTrainers,System.String,System.String,System.String,System.Int32,System.Int32,System.Double))
32
+
/// or [Gam(Options)](xref:Microsoft.ML.TreeExtensions.Gam(Microsoft.ML.RegressionCatalog.RegressionTrainers,Microsoft.ML.Trainers.FastTree.GamRegressionTrainer.Options)).
/// <param name="labelColumnName">The name of the label column.</param>
235
-
/// <param name="featureColumnName">The name of the feature column.</param>
234
+
/// <param name="labelColumnName">The name of the label column. The column data must be <see cref="System.Single"/>.</param>
235
+
/// <param name="featureColumnName">The name of the feature column. The column data must be a known-sized vector of <see cref="System.Single"/>.</param>
236
236
/// <param name="exampleWeightColumnName">The name of the example weight column (optional).</param>
237
237
/// <param name="numberOfIterations">The number of iterations to use in learning the features.</param>
238
238
/// <param name="maximumBinCountPerFeature">The maximum number of bins to use to approximate features.</param>
@@ -258,7 +258,7 @@ public static GamRegressionTrainer Gam(this RegressionCatalog.RegressionTrainers
258
258
}
259
259
260
260
/// <summary>
261
-
/// Predict a target using generalized additive models (GAM) trained with the <see cref="GamRegressionTrainer"/>.
261
+
/// Create <see cref="GamRegressionTrainer"/> using advanced options, which predicts a target using generalized additive models (GAM).
0 commit comments