sky-uk/anticipy

Smart detection of default naive model

capelastegui opened this issue · 0 comments

For run_forecast(), we currently have a l_model_naive parameter

  • defaults to model_naive

We should add logic to detect whether weekly seasonality can apply, as follows:

l_model_naive = [forecast_models.model_snaive_wday] if freq == 'D' else [forecast_models.model_naive]