4 writes to _right
Microsoft.ML.FastTree (4)
Training\StepSearch.cs (4)
30
_right
= new StepScoresAndLoss(lossCalculator, lossIndex);
139
Rotate(ref _lo, ref _left, ref
_right
);
144
Rotate(ref _hi, ref
_right
, ref _left);
153
Swap(ref _left, ref
_right
);
5 references to _right
Microsoft.ML.FastTree (5)
Training\StepSearch.cs (5)
103
_right
.Initialize(tree, partitioning, previousScores);
130
_right
.Step = _lo.Step + (_hi.Step - _lo.Step) / _phi;
133
int cmp =
_right
.Loss.CompareTo(_left.Loss);
140
_right
.Step = _lo.Step + (_hi.Step - _lo.Step) / _phi;
152
if (
_right
.Loss.CompareTo(_left.Loss) == 1)