8 references to Ratings
Microsoft.ML.FastTree (8)
Dataset\Dataset.cs (8)
117
public short[] Ratings => _datasetSkeleton.
Ratings
;
504
Contracts.Check(
Ratings
!= null && Boundaries != null && QueryIds != null && DocIds != null && MaxDcg != null,
507
Contracts.Check(
Ratings
.Length == DocIds.Length, "Length of label array does not match length of docID array");
543
return
Ratings
.SizeInBytes()
559
Ratings
.ToByteArray(buffer, ref position);
663
ratings[p] = assignment[p].Select(d =>
Ratings
[d]).ToArray();
716
Array.Copy(parts[p].
Ratings
, 0, concatRatings, docBegin, numDocs);
795
MaxDcg = MaxDcgRange(
Ratings
, Boundaries, truncationLevel);