1 write to _scores
Microsoft.ML.FastTree (1)
Training\OptimizationAlgorithms\GradientDescent.cs (1)
47
_scores
= new double[TrainingScores.Scores.Length];
5 references to _scores
Microsoft.ML.FastTree (5)
Training\OptimizationAlgorithms\GradientDescent.cs (5)
46
if (
_scores
== null)
70
for (int j = 0; j <
_scores
.Length; j++)
72
_scores
[j] = TrainingScores.Scores[j] - _droppedScores[j];
75
return ObjectiveFunction.GetGradient(ch,
_scores
);
112
TrainingScores.Scores =
_scores
;