1 write to _droppedScores
Microsoft.ML.FastTree (1)
Training\OptimizationAlgorithms\GradientDescent.cs (1)
43_droppedScores = new double[TrainingScores.Scores.Length];
7 references to _droppedScores
Microsoft.ML.FastTree (7)
Training\OptimizationAlgorithms\GradientDescent.cs (7)
42if (_droppedScores == null) 45Array.Clear(_droppedScores, 0, _droppedScores.Length); 63for (int j = 0; j < _droppedScores.Length; j++) 65_droppedScores[j] += s[j]; // summing up the weights of the dropped tree 72_scores[j] = TrainingScores.Scores[j] - _droppedScores[j]; 73TrainingScores.Scores[j] -= _droppedScores[j] / (1.0 + _numberOfDroppedTrees);