5 writes to _step
Microsoft.ML.AutoML (5)
Tuner\Flow2.cs (5)
50
_step
= _stepSize * Math.Sqrt(_dim);
55
_step
= _stepUpperBound;
111
_step
*= _convergeSpeed;
112
_step
= Math.Min(_step, _stepUpperBound);
124
_step
/= _convergeSpeed;
4 references to _step
Microsoft.ML.AutoML (4)
Tuner\Flow2.cs (4)
53
if (
_step
> _stepUpperBound)
63
get =>
_step
< _stepLowerBound;
112
_step = Math.Min(
_step
, _stepUpperBound);
134
vec = ArrayMath.Mul(vec,
_step
/ mag);