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