2 writes to InitialWindowSize
Microsoft.ML.TimeSeries (2)
SequentialTransformerBase.cs (2)
79InitialWindowSize = reader.ReadInt32(); 106InitialWindowSize = initialWindowSize;
17 references to InitialWindowSize
Microsoft.ML.TimeSeries (17)
SequentialTransformerBase.cs (17)
85writer.Write(InitialWindowSize); 109InitialWindowedBuffer = (InitialWindowSize > 0) ? new FixedSizeQueue<TInput>(InitialWindowSize) : new FixedSizeQueue<TInput>(1); 154if (InitialWindowedBuffer.Count < InitialWindowSize) 157if (InitialWindowedBuffer.Count >= InitialWindowSize - WindowSize && buffer) 175if (InitialWindowedBuffer.Count < InitialWindowSize) 179if (InitialWindowedBuffer.Count == InitialWindowSize) 184TransformCore(ref input, WindowedBuffer, RowCounter - InitialWindowSize, ref output1, ref output2, ref output3); 194if (InitialWindowedBuffer.Count < InitialWindowSize) 198if (InitialWindowedBuffer.Count == InitialWindowSize) 202TransformCore(ref input, WindowedBuffer, RowCounter - InitialWindowSize, ref output1, ref output2, ref output3); 211if (InitialWindowedBuffer.Count < InitialWindowSize) 215if (InitialWindowedBuffer.Count == InitialWindowSize) 220TransformCore(ref input, WindowedBuffer, RowCounter - InitialWindowSize, ref output); 230if (InitialWindowedBuffer.Count < InitialWindowSize) 234if (InitialWindowedBuffer.Count == InitialWindowSize) 238TransformCore(ref input, WindowedBuffer, RowCounter - InitialWindowSize, ref output);