2 writes to _maxRows
Microsoft.ML.Data (2)
DataLoadSave\Text\TextLoader.cs (2)
1197
_maxRows
= options.MaxRows ?? long.MaxValue;
1420
_maxRows
= ctx.Reader.ReadInt64();
6 references to _maxRows
Microsoft.ML.Data (6)
DataLoadSave\Text\TextLoader.cs (3)
1198
_host.CheckUserArg(
_maxRows
>= 0, nameof(options.MaxRows));
1421
host.CheckDecode(
_maxRows
> 0);
1517
ctx.Writer.Write(
_maxRows
);
DataLoadSave\Text\TextLoaderCursor.cs (3)
77
long cblkMax = parent.
_maxRows
/ BatchSize;
150
var reader = new LineReader(files, BatchSize, 100, parent.HasHeader, parent.ReadMultilines, parent._separators, parent._escapeChar, parent.
_maxRows
, 1);
167
var reader = new LineReader(files, BatchSize, 100, parent.HasHeader, parent.ReadMultilines, parent._separators, parent._escapeChar, parent.
_maxRows
, cthd);