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