3 instantiations of Cursor
Microsoft.ML.Data (3)
DataLoadSave\Text\TextLoaderCursor.cs (3)
152
return new
Cursor
(parent, stats, active, reader, srcNeeded, cthd);
170
return new DataViewRowCursor[1] { new
Cursor
(parent, stats, active, reader, srcNeeded, 1) };
176
cursors[i] = new
Cursor
(parent, stats, active, reader, srcNeeded, 1);
8 references to Cursor
Microsoft.ML.Data (8)
DataLoadSave\Text\TextLoader.cs (6)
728
Cursor
.GetSomeLines(headerFile, 1, parent.ReadMultilines, parent._separators, parent._escapeChar, ref lines);
730
Cursor
.GetSomeLines(dataSample, 100, parent.ReadMultilines, parent._separators, parent._escapeChar, ref lines);
732
Cursor
.GetSomeLines(dataSample, 1, parent.ReadMultilines, parent._separators, parent._escapeChar, ref lines);
1332
string str =
Cursor
.GetEmbeddedArgs(files);
1666
return
Cursor
.Create(_loader, _files, active);
1673
return
Cursor
.CreateSet(_loader, _files, active, n);
DataLoadSave\Text\TextLoaderCursor.cs (2)
863
private readonly
Cursor
_curs;
892
public ParallelState(
Cursor
curs, out RowSet rows, int cthd)