@@ -3966,7 +3966,7 @@ public sealed partial class FastForestBinaryClassifier : Microsoft.ML.Runtime.En
39663966 public int MinDocumentsInLeafs { get; set; } = 10;
39673967
39683968 /// <summary>
3969- /// Number of weak hypotheses in the ensemble
3969+ /// Total number of decision trees to create in the ensemble
39703970 /// </summary>
39713971 [TlcModule.SweepableDiscreteParamAttribute("NumTrees", new object[]{20, 100, 500})]
39723972 public int NumTrees { get; set; } = 100;
@@ -4248,7 +4248,7 @@ public sealed partial class FastForestRegressor : Microsoft.ML.Runtime.EntryPoin
42484248 public int MinDocumentsInLeafs { get; set; } = 10;
42494249
42504250 /// <summary>
4251- /// Number of weak hypotheses in the ensemble
4251+ /// Total number of decision trees to create in the ensemble
42524252 /// </summary>
42534253 [TlcModule.SweepableDiscreteParamAttribute("NumTrees", new object[]{20, 100, 500})]
42544254 public int NumTrees { get; set; } = 100;
@@ -4646,7 +4646,7 @@ public sealed partial class FastTreeBinaryClassifier : Microsoft.ML.Runtime.Entr
46464646 public int MinDocumentsInLeafs { get; set; } = 10;
46474647
46484648 /// <summary>
4649- /// Number of weak hypotheses in the ensemble
4649+ /// Total number of decision trees to create in the ensemble
46504650 /// </summary>
46514651 [TlcModule.SweepableDiscreteParamAttribute("NumTrees", new object[]{20, 100, 500})]
46524652 public int NumTrees { get; set; } = 100;
@@ -5072,7 +5072,7 @@ public sealed partial class FastTreeRanker : Microsoft.ML.Runtime.EntryPoints.Co
50725072 public int MinDocumentsInLeafs { get; set; } = 10;
50735073
50745074 /// <summary>
5075- /// Number of weak hypotheses in the ensemble
5075+ /// Total number of decision trees to create in the ensemble
50765076 /// </summary>
50775077 [TlcModule.SweepableDiscreteParamAttribute("NumTrees", new object[]{20, 100, 500})]
50785078 public int NumTrees { get; set; } = 100;
@@ -5458,7 +5458,7 @@ public sealed partial class FastTreeRegressor : Microsoft.ML.Runtime.EntryPoints
54585458 public int MinDocumentsInLeafs { get; set; } = 10;
54595459
54605460 /// <summary>
5461- /// Number of weak hypotheses in the ensemble
5461+ /// Total number of decision trees to create in the ensemble
54625462 /// </summary>
54635463 [TlcModule.SweepableDiscreteParamAttribute("NumTrees", new object[]{20, 100, 500})]
54645464 public int NumTrees { get; set; } = 100;
@@ -5849,7 +5849,7 @@ public sealed partial class FastTreeTweedieRegressor : Microsoft.ML.Runtime.Entr
58495849 public int MinDocumentsInLeafs { get; set; } = 10;
58505850
58515851 /// <summary>
5852- /// Number of weak hypotheses in the ensemble
5852+ /// Total number of decision trees to create in the ensemble
58535853 /// </summary>
58545854 [TlcModule.SweepableDiscreteParamAttribute("NumTrees", new object[]{20, 100, 500})]
58555855 public int NumTrees { get; set; } = 100;
@@ -14162,7 +14162,7 @@ public sealed class FastTreeBinaryClassificationFastTreeTrainer : FastTreeTraine
1416214162 public int MinDocumentsInLeafs { get; set; } = 10;
1416314163
1416414164 /// <summary>
14165- /// Number of weak hypotheses in the ensemble
14165+ /// Total number of decision trees to create in the ensemble
1416614166 /// </summary>
1416714167 [TlcModule.SweepableDiscreteParamAttribute("NumTrees", new object[]{20, 100, 500})]
1416814168 public int NumTrees { get; set; } = 100;
@@ -14550,7 +14550,7 @@ public sealed class FastTreeRankingFastTreeTrainer : FastTreeTrainer
1455014550 public int MinDocumentsInLeafs { get; set; } = 10;
1455114551
1455214552 /// <summary>
14553- /// Number of weak hypotheses in the ensemble
14553+ /// Total number of decision trees to create in the ensemble
1455414554 /// </summary>
1455514555 [TlcModule.SweepableDiscreteParamAttribute("NumTrees", new object[]{20, 100, 500})]
1455614556 public int NumTrees { get; set; } = 100;
@@ -14898,7 +14898,7 @@ public sealed class FastTreeRegressionFastTreeTrainer : FastTreeTrainer
1489814898 public int MinDocumentsInLeafs { get; set; } = 10;
1489914899
1490014900 /// <summary>
14901- /// Number of weak hypotheses in the ensemble
14901+ /// Total number of decision trees to create in the ensemble
1490214902 /// </summary>
1490314903 [TlcModule.SweepableDiscreteParamAttribute("NumTrees", new object[]{20, 100, 500})]
1490414904 public int NumTrees { get; set; } = 100;
@@ -15251,7 +15251,7 @@ public sealed class FastTreeTweedieRegressionFastTreeTrainer : FastTreeTrainer
1525115251 public int MinDocumentsInLeafs { get; set; } = 10;
1525215252
1525315253 /// <summary>
15254- /// Number of weak hypotheses in the ensemble
15254+ /// Total number of decision trees to create in the ensemble
1525515255 /// </summary>
1525615256 [TlcModule.SweepableDiscreteParamAttribute("NumTrees", new object[]{20, 100, 500})]
1525715257 public int NumTrees { get; set; } = 100;
0 commit comments