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