5 writes to _hi
Microsoft.ML.FastTree (5)
Training\StepSearch.cs (5)
28
_hi
= new StepScoresAndLoss(lossCalculator, lossIndex);
112
Rotate(ref
_hi
, ref _left, ref _lo);
123
Rotate(ref _lo, ref _left, ref
_hi
);
144
Rotate(ref
_hi
, ref _right, ref _left);
160
Swap(ref
_hi
, ref _left);
12 references to _hi
Microsoft.ML.FastTree (12)
Training\StepSearch.cs (12)
101
_hi
.Initialize(tree, partitioning, previousScores);
113
if (
_hi
.Step <= _minStepSize)
120
_hi
.Step = _historicStepSize * _phi;
121
while (
_hi
.Loss.CompareTo(_left.Loss) == 1)
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)