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)
1078public override int ColumnCount { get { return _lims.Length; } } 1104_types = new VectorDataViewType[_lims.Length]; 1105_types[0] = new VectorDataViewType(type.ItemType, _lims[0]); 1106for (int c = 1; c < _lims.Length; ++c) 1107_types[c] = new VectorDataViewType(type.ItemType, _lims[c] - _lims[c - 1]); 1111for (int c = 0; c < _lims.Length; ++c) 1136private int[] Lims { get { return Parent._lims; } } 1227Contracts.Assert(_inputValue.Length == Parent._lims[Parent._lims.Length - 1]);