Batch predictions for time series models work without any additional configuration. However, in most cases you need to either modify the default configuration or prepare the prediction dataset.
The default configuration can be overridden using the timeseriesSettings job configuration property:
Parameter
Example
Description
type
forecast
Must be either forecast (default) or historical.
forecastPoint
2019-02-04T00:00:00Z
(Optional) By default, DataRobot infers the forecast point from the dataset. To configure, type must be set to forecast.
predictionsStartDate
2019-01-04T00:00:00Z
(Optional) By default, DataRobot infers the start date from the dataset. To configure, type must be set to historical.
predictionsEndDate
2019-02-04T00:00:00Z
(Optional) By default, DataRobot infers the end date from the dataset. To configure, type must be set to historical.
relaxKnownInAdvanceFeaturesCheck
false
(Optional) If activated, missing values in the known in advance features are allowed in the forecast window at prediction time. If omitted or false, missing values are not allowed. Default: false.
When using forecast mode, DataRobot makes predictions using forecastPoint or rows in the dataset without a target. In historical mode, DataRobot enables bulk predictions, which calculates predictions for all possible forecast points and forecast distances within predictionsStartDate and predictionsEndDate range.