1 instantiation of RowSet
Microsoft.ML.Data (1)
DataLoadSave\Text\TextLoaderParser.cs (1)
833RowSet rows = new RowSet(stats, count, _creator.Length);
31 references to RowSet
Microsoft.ML.Data (31)
DataLoadSave\Text\TextLoaderCursor.cs (3)
34private readonly RowSet _rows; 865private readonly RowSet _rows; 892public ParallelState(Cursor curs, out RowSet rows, int cthd)
DataLoadSave\Text\TextLoaderParser.cs (28)
28private static readonly FuncInstanceMethodInfo1<ValueCreatorCache, PrimitiveDataViewType, Func<RowSet, ColumnPipe>> _getCreatorOneCoreMethodInfo 29= FuncInstanceMethodInfo1<ValueCreatorCache, PrimitiveDataViewType, Func<RowSet, ColumnPipe>>.Create(target => target.GetCreatorOneCore<int>); 31private static readonly FuncInstanceMethodInfo1<ValueCreatorCache, PrimitiveDataViewType, Func<RowSet, ColumnPipe>> _getCreatorVecCoreMethodInfo 32= FuncInstanceMethodInfo1<ValueCreatorCache, PrimitiveDataViewType, Func<RowSet, ColumnPipe>>.Create(target => target.GetCreatorVecCore<int>); 59private readonly Func<RowSet, ColumnPipe>[] _creatorsOne; 60private readonly Func<RowSet, ColumnPipe>[] _creatorsVec; 69_creatorsOne = new Func<RowSet, ColumnPipe>[InternalDataKindExtensions.KindCount]; 70_creatorsVec = new Func<RowSet, ColumnPipe>[InternalDataKindExtensions.KindCount]; 79private Func<RowSet, ColumnPipe> GetCreatorOneCore(PrimitiveDataViewType type) 84private Func<RowSet, ColumnPipe> GetCreatorOneCore<T>(PrimitiveDataViewType type) 92private Func<RowSet, ColumnPipe> GetCreatorVecCore(PrimitiveDataViewType type) 97private Func<RowSet, ColumnPipe> GetCreatorVecCore<T>(PrimitiveDataViewType type) 105public Func<RowSet, ColumnPipe> GetCreatorOne(KeyDataViewType key) 111public Func<RowSet, ColumnPipe> GetCreatorVec(KeyDataViewType key) 117public Func<RowSet, ColumnPipe> GetCreatorOne(InternalDataKind kind) 124public Func<RowSet, ColumnPipe> GetCreatorVec(InternalDataKind kind) 227public readonly RowSet Rows; 233protected ColumnPipe(RowSet rows) 258public PrimitivePipe(RowSet rows, PrimitiveDataViewType type, TryParseMapper<TResult> conv) 441public VectorPipe(RowSet rows, PrimitiveDataViewType type, TryParseMapper<TItem> conv) 666private readonly Func<RowSet, ColumnPipe>[] _creator; 678_creator = new Func<RowSet, ColumnPipe>[_infos.Length]; 693var mapOne = new Dictionary<InternalDataKind, Func<RowSet, ColumnPipe>>(); 694var mapVec = new Dictionary<InternalDataKind, Func<RowSet, ColumnPipe>>(); 829public RowSet CreateRowSet(ParseStats stats, int count, bool[] active) 833RowSet rows = new RowSet(stats, count, _creator.Length); 860public void ParseRow(RowSet rows, int irow, Helper helper, bool[] active, string path, long line, string text) 1365private void ProcessItems(RowSet rows, int irow, bool[] active, FieldSet fields, int srcLim, long line)