1 write to RowCount
Microsoft.ML.Data (1)
DataLoadSave\Transpose\TransposeSaver.cs (1)
116header.RowCount = slotType.Size;
8 references to RowCount
Microsoft.ML.Data (8)
DataLoadSave\Transpose\TransposeLoader.cs (8)
251Host.CheckDecode(rowCount == 0 || _parent._header.RowCount == rowCount); 304Host.CheckDecode(vectorType.Size == _parent._header.RowCount); 368get { return _header.RowCount == _schemaEntry.GetView().GetRowCount(); } 389if (_header.RowCount == view.GetRowCount()) 596_host.CheckDecode(header.RowCount >= 0, "Row count cannot be negative"); 619return _header.RowCount; 799Ch.Assert(((ITransposeDataView)_parent).GetSlotType(col).Size == _parent._header.RowCount); 856bool more = Position < _parent._header.RowCount - 1;