2 writes to _momentum
Microsoft.ML.StandardTrainers (2)
Optimizer\SgdOptimizer.cs (2)
50
_momentum
= value;
149
_momentum
= momentum;
4 references to _momentum
Microsoft.ML.StandardTrainers (4)
Optimizer\SgdOptimizer.cs (4)
46
get { return
_momentum
; }
180
if (
_momentum
== 0)
183
VectorUtils.ScaleBy(ref step,
_momentum
);
201
float scale = (1 -
_momentum
) / _batchSize;