1 write to InitialWindowSize
Microsoft.ML.TimeSeries (1)
SequentialTransformBase.cs (1)
124InitialWindowSize = initialWindowSize;
9 references to InitialWindowSize
Microsoft.ML.TimeSeries (9)
SequentialTransformBase.cs (9)
127InitialWindowedBuffer = (InitialWindowSize > 0) ? new FixedSizeQueue<TInput>(InitialWindowSize) : new FixedSizeQueue<TInput>(1); 155if (InitialWindowedBuffer.Count < InitialWindowSize) 160if (InitialWindowedBuffer.Count >= InitialWindowSize - WindowSize) 163if (InitialWindowedBuffer.Count == InitialWindowSize) 168TransformCore(ref input, WindowedBuffer, RowCounter - InitialWindowSize, ref output); 176if (InitialWindowedBuffer.Count < InitialWindowSize) 181if (InitialWindowedBuffer.Count == InitialWindowSize) 186TransformCore(ref input, WindowedBuffer, RowCounter - InitialWindowSize, ref output);