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
More trainer extensions, bug fixes and consistency across trainer extensions (#1524)
* fixing GAM trainers extending the right context. Removing unused arguments from the extensions of their signatures.
No clusters in advancedSettings now overiddes the number of clusters passed directly in KMeans.
Copy file name to clipboardExpand all lines: src/Microsoft.ML.FastTree/FastTreeArguments.cs
+2-2
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ internal static class Defaults
143
143
{
144
144
internalconstintNumTrees=100;
145
145
internalconstintNumLeaves=20;
146
-
internalconstintMinDocumentsInLeafs=10;
146
+
internalconstintMinDocumentsInLeaves=10;
147
147
internalconstdoubleLearningRates=0.2;
148
148
}
149
149
@@ -245,7 +245,7 @@ public abstract class TreeArgs : LearnerInputBaseWithGroupId
245
245
[Argument(ArgumentType.LastOccurenceWins,HelpText="The minimal number of documents allowed in a leaf of a regression tree, out of the subsampled data",ShortName="mil",SortOrder=3)]
246
246
[TGUI(Description="Minimum number of training instances required to form a leaf",SuggestedSweeps="1,10,50")]
0 commit comments