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