improving-forecast-accuracy-with-machine-learning
improving-forecast-accuracy-with-machine-learning copied to clipboard
auto_predictor
In your create_predictor lambda code it's a legacy predictor
My customer ask if you can consider to add auto_predictor in your solution? Thanks create_auto_predictor
AutoPredictor support has been available as of 2021-12-22. An example is included in the documentation. Note that you use the AutoPredictor
key rather than the Predictor
key.
Use only one of Predictor
or AutoPredictor
for each configuration.
Default:
DatasetGroup:
Domain: RETAIL
Datasets:
- Domain: RETAIL
DatasetType: TARGET_TIME_SERIES
DataFrequency: D
TimestampFormat: yyyy-MM-dd
Schema:
Attributes:
- AttributeName: item_id
AttributeType: string
- AttributeName: timestamp
AttributeType: timestamp
- AttributeName: demand
AttributeType: float
AutoPredictor:
MaxAge: 604800
ForecastHorizon: 72
ForecastFrequency: D
Forecast:
ForecastTypes:
- "0.10"
- "0.50"
- "0.90"
Thank you @pwrmiller for confirming the feature already exits and pointing to its documentation.