improving-forecast-accuracy-with-machine-learning icon indicating copy to clipboard operation
improving-forecast-accuracy-with-machine-learning copied to clipboard

auto_predictor

Open timwukp opened this issue 2 years ago • 2 comments

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

timwukp avatar Aug 24 '22 07:08 timwukp

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"

pwrmiller avatar Aug 25 '22 19:08 pwrmiller

Thank you @pwrmiller for confirming the feature already exits and pointing to its documentation.

tabdunabi avatar Aug 25 '22 19:08 tabdunabi