1 write to Scores
Microsoft.ML.FastTree (1)
Training\Applications\ObjectiveFunction.cs (1)
57Scores = scores;
8 references to Scores
Microsoft.ML.FastTree (8)
FastTreeClassification.cs (1)
381fixed (double* pScores = Scores)
FastTreeRanking.cs (3)
758double[] scoresToUse = Scores; 770Array.Copy(Scores, begin, _scoresCopy, begin, numDocuments); 978PermutationSort(permutation, Scores, _labels, numDocuments, begin);
FastTreeRegression.cs (1)
466Gradient[i] = _labels[i] - Scores[i];
FastTreeTweedie.cs (3)
467Gradient[i] = Math.Exp(Scores[i]) - _labels[i]; 476Gradient[i] = Math.Exp(_index2 * Scores[i]) - _labels[i] * Math.Exp(_index1 * Scores[i]);