3 references to FirstChunkSizeMb
Microsoft.ML.AutoML (3)
ColumnInference\TextFileSample.cs (3)
87/// 2. Read first <see cref="FirstChunkSizeMb"/> MB chunk. Determine average line length in the chunk. 106var firstChunk = new byte[FirstChunkSizeMb * (1 << 20)]; 131int chunkCount = (int)Math.Ceiling((BufferSizeMb * OversamplingRate - FirstChunkSizeMb) * (1 << 20) / usefulChunkSize);