3 overrides of SlotIndex
Microsoft.ML.Data (3)
Data\SlotCursor.cs (2)
98public override int SlotIndex => _root.SlotIndex; 116public override int SlotIndex => _slotIndex;
DataLoadSave\Transpose\TransposeLoader.cs (1)
706public override int SlotIndex
10 references to SlotIndex
Microsoft.ML.Data (5)
Data\SlotCursor.cs (1)
98public override int SlotIndex => _root.SlotIndex;
DataView\Transposer.cs (4)
1516Ch.Check(_slotCursor.SlotIndex >= 0, RowCursorUtils.FetchValueStateError); 1517id = new DataViewRowId((ulong)_slotCursor.SlotIndex, 0); 1571Ch.Check(_slotCursor.SlotIndex >= 0, RowCursorUtils.FetchValueStateError); 1572id = new DataViewRowId((ulong)_slotCursor.SlotIndex, 0);
Microsoft.ML.FastTree (5)
FastTree.cs (5)
1409iFeature = cursor.SlotIndex; 1647Contracts.Assert(iFeature >= cursor.SlotIndex); 1649if (iFeature == cursor.SlotIndex) 1653Contracts.Assert(cursor.SlotIndex == iFeature); 1677Contracts.Assert(cursor.SlotIndex >= 0);