1 write to WindowedBuffer
Microsoft.ML.TimeSeries (1)
SequentialTransformBase.cs (1)
126WindowedBuffer = (WindowSize > 0) ? new FixedSizeQueue<TInput>(WindowSize) : new FixedSizeQueue<TInput>(1);
6 references to WindowedBuffer
Microsoft.ML.TimeSeries (6)
SequentialTransformBase.cs (6)
140Host.Assert(WindowedBuffer != null); 144WindowedBuffer.Clear(); 161WindowedBuffer.AddLast(input); 168TransformCore(ref input, WindowedBuffer, RowCounter - InitialWindowSize, ref output); 169WindowedBuffer.AddLast(input); 186TransformCore(ref input, WindowedBuffer, RowCounter - InitialWindowSize, ref output);