Implemented interface member:
property
this
Microsoft.ML.Trainers.FastTree.IIntArrayForwardIndexer.this[System.Int32]
6 overrides of
Microsoft.ML.FastTree (6)
Dataset\DenseIntArray.cs (6)
177public override int this[int index] 289public sealed override unsafe int this[int index] 438public override unsafe int this[int index] 535public override unsafe int this[int index] 645public override unsafe int this[int index] 734public override int this[int index]
3 writes to
Microsoft.ML.FastTree (3)
Dataset\Feature.cs (2)
346concatBins[pos++] = bin; 355concatBins[pos++] = binMap[bin];
Dataset\SparseIntArray.cs (1)
271dense[index] = _values[i];
16 references to
Microsoft.ML.FastTree (16)
Dataset\DenseIntArray.cs (3)
58return IntArray.New(itemIndices.Length, IntArrayType.Dense, BitsPerItem, itemIndices.Select(x => this[x])); 68newArrays[p] = IntArray.New(assignment[p].Length, IntArrayType.Dense, BitsPerItem, assignment[p].Select(x => this[x])); 124yield return this[i];
Dataset\NHotFeatureFlock.cs (1)
87int v = _flock._values[p];
Dataset\RepeatIntArray.cs (4)
124int val = _values[i]; 169return (_lastVal = _array._values[_pos]); 231int featureBin = _values[i]; 272int bin = _values[pos];
Dataset\SparseIntArray.cs (8)
271dense[index] = _values[i]; 292int featureBin = _values[i]; 317int featureBin = _values[i]; 369int featureBin = _values[iSparse]; 429int featureBin = _values[iSparse]; 551return _array._values[_pos]; 562return _array._values[_pos]; 594yield return _values[i];