We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For run_forecast(), we currently have a l_model_naive parameter
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]
The text was updated successfully, but these errors were encountered:
feature #195; Smart detection of default naive model
47aaeb1
No branches or pull requests
For run_forecast(), we currently have a l_model_naive parameter
We should add logic to detect whether weekly seasonality can apply, as follows:
The text was updated successfully, but these errors were encountered: