1 write to _lims
Microsoft.ML.Data (1)
DataView\Transposer.cs (1)
1103
_lims
= lims;
10 references to _lims
Microsoft.ML.Data (10)
DataView\Transposer.cs (10)
1078
public override int ColumnCount { get { return
_lims
.Length; } }
1104
_types = new VectorDataViewType[
_lims
.Length];
1105
_types[0] = new VectorDataViewType(type.ItemType,
_lims
[0]);
1106
for (int c = 1; c <
_lims
.Length; ++c)
1107
_types[c] = new VectorDataViewType(type.ItemType,
_lims
[c] -
_lims
[c - 1]);
1111
for (int c = 0; c <
_lims
.Length; ++c)
1136
private int[] Lims { get { return Parent.
_lims
; } }
1227
Contracts.Assert(_inputValue.Length == Parent.
_lims
[Parent.
_lims
.Length - 1]);