4 implementations of GetSlotType
Microsoft.ML.Data (4)
DataLoadSave\LegacyCompositeDataLoader.cs (1)
601
VectorDataViewType ITransposeDataView.
GetSlotType
(int col) => _tview?.GetSlotType(col);
DataLoadSave\Transpose\TransposeLoader.cs (1)
611
VectorDataViewType ITransposeDataView.
GetSlotType
(int col)
DataView\Transposer.cs (1)
260
VectorDataViewType ITransposeDataView.
GetSlotType
(int col)
Transforms\TransformBase.cs (1)
655
VectorDataViewType ITransposeDataView.
GetSlotType
(int col) => _bindings.GetSlotType(col);
21 references to GetSlotType
Microsoft.ML.Data (21)
Commands\ShowSchemaCommand.cs (1)
141
var slotType = transposeDataView?.
GetSlotType
(col);
Data\ITransposeDataView.cs (3)
23
/// is accessible in this fashion iff <see cref="
GetSlotType
"/> with col=i doesn't return <see langword="null"/>.
35
/// <see cref="
GetSlotType
"/> (input argument is named col) specifies the type of all values at the col-th column of
37
/// <see cref="
GetSlotType
"/> with col=i may return a <see cref="VectorDataViewType"/> whose <see cref="VectorDataViewType.ItemType"/>
Data\SlotCursor.cs (2)
50
/// <see cref="ITransposeDataView.
GetSlotType
"/> for the column from which this slot cursor
57
/// to the item type from <see cref="ITransposeDataView.
GetSlotType
"/>.
DataLoadSave\LegacyCompositeDataLoader.cs (2)
601
VectorDataViewType ITransposeDataView.GetSlotType(int col) => _tview?.
GetSlotType
(col);
606
if (_tview?.
GetSlotType
(col) == null)
DataLoadSave\Transpose\TransposeLoader.cs (3)
649
DataViewType cursorType = ((ITransposeDataView)this).
GetSlotType
(col).ItemType;
738
_host.Assert((trans as ITransposeDataView)?.
GetSlotType
(0).GetValueCount() == Schema[col].Type.GetValueCount());
799
Ch.Assert(((ITransposeDataView)_parent).
GetSlotType
(col).Size == _parent._header.RowCount);
DataLoadSave\Transpose\TransposeSaver.cs (1)
114
var slotType = data.
GetSlotType
(cols[0]);
DataView\Transposer.cs (6)
102
columnSet = columnSet.Where(c => _tview.
GetSlotType
(c) == null);
239
if (_tview?.
GetSlotType
(col) != null)
244
var type = ((ITransposeDataView)this).
GetSlotType
(col).ItemType.RawType;
265
return _tview?.
GetSlotType
(col);
328
return ((ITransposeDataView)_parent).
GetSlotType
(_col);
1430
_type = data.
GetSlotType
(col);
Transforms\TransformBase.cs (3)
310
return tidv?.
GetSlotType
(col);
357
var slotType = transposedInput?.
GetSlotType
(i);
405
var slotType = transposeInput?.
GetSlotType
(i);