4 instantiations of DeltaRepeatIntArray
Microsoft.ML.FastTree (4)
Dataset\IntArray.cs (2)
117
return new
DeltaRepeatIntArray
(length, bitsPerItem, values);
180
return new
DeltaRepeatIntArray
(buffer, ref position);
Dataset\RepeatIntArray.cs (2)
188
return new
DeltaRepeatIntArray
(itemIndices.Length, BitsPerItem, itemIndices.Select(i => indexer[i]));
201
return new
DeltaRepeatIntArray
(a.Length, BitsPerItem, a.Select(i => indexer[i]));
2 references to DeltaRepeatIntArray
Microsoft.ML.FastTree (2)
Dataset\RepeatIntArray.cs (2)
132
private readonly
DeltaRepeatIntArray
_array;
137
public DeltaRepeatIntArrayIndexer(
DeltaRepeatIntArray
array)