2 writes to WindowSize
Microsoft.ML.TimeSeries (2)
SequentialTransformerBase.cs (2)
78
WindowSize
= reader.ReadInt32();
105
WindowSize
= windowSize;
11 references to WindowSize
Microsoft.ML.TimeSeries (11)
SequentialAnomalyDetectionTransformBase.cs (6)
540
if (
WindowSize
> 0)
658
Host.Assert(
WindowSize
>= 0);
663
LogMartingaleUpdateBuffer = new FixedSizeQueue<Double>(
WindowSize
== 0 ? 1 :
WindowSize
);
667
RawScoreBuffer = new FixedSizeQueue<float>(
WindowSize
== 0 ? 1 :
WindowSize
);
SequentialForecastingTransformBase.cs (1)
309
Host.Assert(
WindowSize
>= 0);
SequentialTransformerBase.cs (4)
84
writer.Write(
WindowSize
);
108
WindowedBuffer = (
WindowSize
> 0) ? new FixedSizeQueue<TInput>(
WindowSize
) : new FixedSizeQueue<TInput>(1);
157
if (InitialWindowedBuffer.Count >= InitialWindowSize -
WindowSize
&& buffer)