2 writes to DocIds
Microsoft.ML.FastTree (2)
Dataset\Dataset.cs (2)
468DocIds = docIds; 493DocIds = buffer.ToULongArray(ref position);
8 references to DocIds
Microsoft.ML.FastTree (8)
Dataset\Dataset.cs (8)
137public ulong[] DocIds => _datasetSkeleton.DocIds; 504Contracts.Check(Ratings != null && Boundaries != null && QueryIds != null && DocIds != null && MaxDcg != null, 507Contracts.Check(Ratings.Length == DocIds.Length, "Length of label array does not match length of docID array"); 530get { return DocIds.Length; } 546+ DocIds.SizeInBytes() 562DocIds.ToByteArray(buffer, ref position); 665docIds[p] = assignment[p].Select(d => DocIds[d]).ToArray(); 717Array.Copy(parts[p].DocIds, 0, concatDocIds, docBegin, numDocs);