7 references to WindowSize
Microsoft.ML.TimeSeries (7)
SlidingWindowTransformBase.cs (7)
64
: base(args.
WindowSize
+ args.Lag - 1, args.
WindowSize
+ args.Lag - 1, args.Name, args.Source, loaderSignature, env, input)
66
Host.CheckUserArg(args.
WindowSize
>= 1, nameof(args.
WindowSize
), "Must be at least 1.");
68
if (args.Lag == 0 && args.
WindowSize
<= 1)
70
Host.Assert(args.
WindowSize
== 1);
72
$"If {args.Lag}=0 and {args.
WindowSize
}=1, the transform just copies the column. Use {ColumnCopyingTransformer.LoaderSignature} transform instead.");