9 writes to Step
Microsoft.ML.FastTree (9)
Training\StepSearch.cs (9)
105
_lo.
Step
= _historicStepSize / _phi;
106
_left.
Step
= _historicStepSize;
115
_lo.
Step
= _left.Step / _phi;
120
_hi.
Step
= _historicStepSize * _phi;
124
_hi.
Step
= _left.Step * _phi;
130
_right.
Step
= _lo.Step + (_hi.Step - _lo.Step) / _phi;
140
_right.
Step
= _lo.Step + (_hi.Step - _lo.Step) / _phi;
147
_left.
Step
= _hi.Step - (_hi.Step - _lo.Step) / _phi;
158
_left.
Step
= _minStepSize;
16 references to Step
Microsoft.ML.FastTree (16)
Training\StepSearch.cs (16)
113
if (_hi.
Step
<= _minStepSize)
115
_lo.Step = _left.
Step
/ _phi;
124
_hi.Step = _left.
Step
* _phi;
130
_right.Step = _lo.
Step
+ (_hi.
Step
- _lo.
Step
) / _phi;
140
_right.Step = _lo.
Step
+ (_hi.
Step
- _lo.
Step
) / _phi;
145
if (_hi.
Step
<= _minStepSize)
147
_left.Step = _hi.
Step
- (_hi.
Step
- _lo.
Step
) / _phi;
157
if (_hi.
Step
< _minStepSize)
159
else if (_hi.
Step
== _minStepSize)
162
double bestStep = _left.
Step
;