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