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 [FastForest](xref:Microsoft.ML.TreeExtensions.FastForest(Microsoft.ML.RegressionCatalog.RegressionTrainers,System.String,System.String,System.String,System.Int32,System.Int32,System.Int32))
250
+
/// or [FastForest(Options)](xref:Microsoft.ML.TreeExtensions.FastForest(Microsoft.ML.RegressionCatalog.RegressionTrainers,Microsoft.ML.Trainers.FastTree.FastForestRegressionTrainer.Options)).
/// <param name="labelColumnName">The name of the label column.</param>
339
-
/// <param name="featureColumnName">The name of the feature column.</param>
338
+
/// <param name="labelColumnName">The name of the label column. The column data must be <see cref="System.Single"/></param>
339
+
/// <param name="featureColumnName">The name of the feature column. The column data must be a known-sized vector of <see cref="System.Single"/></param>
340
340
/// <param name="exampleWeightColumnName">The name of the example weight column (optional).</param>
341
341
/// <param name="numberOfLeaves">The maximum number of leaves per decision tree.</param>
342
342
/// <param name="numberOfTrees">Total number of decision trees to create in the ensemble.</param>
@@ -362,7 +362,7 @@ public static FastForestRegressionTrainer FastForest(this RegressionCatalog.Regr
362
362
}
363
363
364
364
/// <summary>
365
-
/// Predict a target using a decision tree regression model trained with the <see cref="FastForestRegressionTrainer"/> and advanced options.
365
+
/// Create <see cref="FastForestRegressionTrainer"/> with advanced options, which predicts a target using a decision tree regression model.
0 commit comments