WindowConfig

Config that contains the strategy used to generate sliding windows in time series training. A window is a series of rows that comprise the context up to the time of prediction, and the horizon following. The corresponding row for each window marks the start of the forecast horizon. Each window is used as an input example for training/evaluation.

Fields
strategy Union type
strategy can be only one of the following:
column string

name of the column that should be used to generate sliding windows. The column should contain either booleans or string booleans; if the value of the row is True, generate a sliding window with the horizon starting at that row. The column will not be used as a feature in training.

strideLength string (int64 format)

Stride length used to generate input examples. Within one time series, every {$STRIDE_LENGTH} rows will be used to generate a sliding window.

maxCount string (int64 format)

Maximum number of windows that should be generated across all time series.

JSON representation
{

  // strategy
  "column": string,
  "strideLength": string,
  "maxCount": string
  // Union type
}