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
* fixing model parameter discrepencies
* multiclass LR singe that refactoring is happening in a parallel PR
* review comments. Added Multiclass to NaiveBayes
* Drop Classification from trainer names - v1 (more trainers to follow)
* multiclass LR will be handled separately
* Drop Classification from trainer names - v2 (all trainers taken care of)
* fix entrypoint file
Copy file name to clipboardExpand all lines: docs/samples/Microsoft.ML.Samples/Dynamic/Trainers/BinaryClassification/StochasticDualCoordinateAscentWithOptions.cs
Copy file name to clipboardExpand all lines: docs/samples/Microsoft.ML.Samples/Dynamic/Trainers/MulticlassClassification/StochasticDualCoordinateAscentWithOptions.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ public static void Example()
26
26
// CC 1.216908,1.248052,1.391902,0.4326252,1.099942,0.9262842,1.334019,1.08762,0.9468155,0.4811099
@@ -118,7 +118,7 @@ public sealed partial class FastTreeBinaryClassificationTrainer :
118
118
privatedouble_sigmoidParameter;
119
119
120
120
/// <summary>
121
-
/// Initializes a new instance of <see cref="FastTreeBinaryClassificationTrainer"/>
121
+
/// Initializes a new instance of <see cref="FastTreeBinaryTrainer"/>
122
122
/// </summary>
123
123
/// <param name="env">The private instance of <see cref="IHostEnvironment"/>.</param>
124
124
/// <param name="labelColumnName">The name of the label column.</param>
@@ -128,7 +128,7 @@ public sealed partial class FastTreeBinaryClassificationTrainer :
128
128
/// <param name="minimumExampleCountPerLeaf">The minimal number of documents allowed in a leaf of a regression tree, out of the subsampled data.</param>
129
129
/// <param name="numberOfLeaves">The max number of leaves in each regression tree.</param>
130
130
/// <param name="numberOfTrees">Total number of decision trees to create in the ensemble.</param>
0 commit comments