12 references to Ratings
Microsoft.ML.FastTree (12)
Dataset\Dataset.cs (1)
309
DatasetSkeleton datasetSkeleton = new DatasetSkeleton(docIndices.Select(d =>
Ratings
[d]).ToArray(),
FastTreeClassification.cs (1)
248
return set.
Ratings
.Select(x => x >= 1);
FastTreeRanking.cs (7)
201
_ensembleCompressor.Initialize(FastTreeTrainerOptions.NumberOfTrees, TrainSet, TrainSet.
Ratings
, FastTreeTrainerOptions.Seed);
207
return new LambdaRankObjectiveFunction(TrainSet, TrainSet.
Ratings
, FastTreeTrainerOptions, ParallelTraining);
215
_specialTrainSetTest = new FastNdcgTest(optimizationAlgorithm.TrainingScores, TrainSet.
Ratings
, FastTreeTrainerOptions.SortingAlgorithm, FastTreeTrainerOptions.EarlyStoppingMetrics);
233
return new NdcgTest(ConstructScoreTracker(TrainSet), TrainSet.
Ratings
, FastTreeTrainerOptions.SortingAlgorithm);
416
dataset.
Ratings
,
429
TrainSet.
Ratings
,
442
ValidSet.
Ratings
,
RandomForestClassification.cs (1)
357
_trainSetLabels = TrainSet.
Ratings
.Select(x => x >= 1).ToArray(TrainSet.NumDocs);
Training\DcgCalculator.cs (2)
473
short[] ratings = dataset.
Ratings
;
543
short[] labels = dataset.
Ratings
;