File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed
src/Microsoft.ML.HalLearners Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ public void Check(IExceptionContext ectx)
91
91
public override TrainerInfo Info { get ; }
92
92
private readonly Arguments _args ;
93
93
94
- ///REVIEW: Copy-paste from LinearClassificationTrainer.
95
94
/// <summary>
96
95
/// This method ensures that the data meets the requirements of this trainer and its
97
96
/// subclasses, injects necessary transforms, and throws if it couldn't meet them.
Original file line number Diff line number Diff line change 22
22
</code >
23
23
</example >
24
24
</member >
25
-
25
+
26
+ <member name =" SymSGD" >
27
+ <summary >
28
+ Parallel Stochastic Gradient Descent trainer.
29
+ </summary >
30
+ <remarks >
31
+ <a href =' https://en.wikipedia.org/wiki/Stochastic_gradient_descent' >Stochastic gradient descent (SGD)</a > is an interative algorithm
32
+ that optimizes a differentiable objective function. <a href =' https://arxiv.org/abs/1705.08030' >SYMSGD</a > parallelizes SGD using Sound Combiners.
33
+ </remarks >
34
+ <example >
35
+ <code language =" csharp" >
36
+ new SymSgdBinaryClassifier()
37
+ {
38
+ NumberOfIterations = 50,
39
+ L2Regularization = 0,
40
+ Shuffle = true
41
+ }
42
+ </code >
43
+ </example >
44
+ </member >
45
+
26
46
</members >
27
47
</doc >
You can’t perform that action at this time.
0 commit comments