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)); 1421host.CheckDecode(_maxRows > 0); 1517ctx.Writer.Write(_maxRows);
DataLoadSave\Text\TextLoaderCursor.cs (3)
77long cblkMax = parent._maxRows / BatchSize; 150var reader = new LineReader(files, BatchSize, 100, parent.HasHeader, parent.ReadMultilines, parent._separators, parent._escapeChar, parent._maxRows, 1); 167var reader = new LineReader(files, BatchSize, 100, parent.HasHeader, parent.ReadMultilines, parent._separators, parent._escapeChar, parent._maxRows, cthd);