2 writes to Scores
Microsoft.ML.FastTree (2)
Training\StepSearch.cs (2)
84
Scores
= new ScoreTracker(_previousScores);
172
_left.
Scores
= null; //We need to set it to null so that next call to AdjustTreeOutputs will not destroy returned object
5 references to Scores
Microsoft.ML.FastTree (5)
Training\StepSearch.cs (5)
83
if (
Scores
== null ||
Scores
.Dataset != _previousScores.Dataset)
86
Scores
.Initialize(_previousScores, _tree, _partitioning, _step);
87
Loss = _lossCalculator.ComputeTests(
Scores
.Scores).ToList()[_lossIndex];
171
ScoreTracker result = _left.
Scores
;