Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Latest commit

 

History

History
68 lines (57 loc) · 2.57 KB

config.md

File metadata and controls

68 lines (57 loc) · 2.57 KB

This is what a default config looks like.

It has 4 top level keys :

  • fitting : everything related to fitting
  • forecast : parameters related to forecasting
  • uncertainty : parameters related to uncertainty estimation
  • logging : parameters related to logging on ML Flow

We may add a 5th key for whatifs scenarios, but that depends on how formally intergrated that becomes to the end to end pipeline.

Fitting

  • data :
    • tables : list of tables to retrieve from Athena DB
    • schema : name of the schema in Athena DB
    • staging_dir : name of the S3 staging directory
    • label : label used to name all associated artifacts
  • model :
  • variable_param_ranges :
  • default_params :
  • optimiser :
  • optimiser_params : str. Can be GridSearch or BO_Hyperopt
    • num_evals: int
    • algo: str. Can be tpe (TPE), atpe (adaptive TPE), or rand