6 references to BatchSize
Microsoft.ML.Data (6)
DataView\AppendRowsDataView.cs (6)
430
_batch = new int[
BatchSize
];
436
for (int i = 0; i < _rowsLeft.Length && _batchEnd <
BatchSize
; i++)
439
if (_totalLeft <=
BatchSize
)
445
newEnd = _batchEnd + (int)Math.Ceiling((double)_rowsLeft[i] *
BatchSize
/ _totalLeft);
446
if (newEnd >
BatchSize
)
447
newEnd =
BatchSize
;