-
Notifications
You must be signed in to change notification settings - Fork 904
New issue
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
[New Model] Forecasting with Moving Average #951
Comments
+1, adding to our backlog, thanks for the suggestion. |
@hrzn my Python and GitHub chops need to improve a lot before I can confidently contribute, but if there are any non-technical improvements you might already have identified, glad to help there. In the meantime we'll have a look at open issues in case we can shed light on some of them. |
Since the model is first fit and then used to predict future values, the prediction of a moving average model would always be the mean of the last |
Yes I think that's correct. |
@hrzn Hi, could I pick up this issue? |
@JanFidor yes, that'd be great! On second thoughts though I'm not quite sure this statement was correct:
Rather I think for forecasting a horizon of
where Would this make sense? There might be something in Pandas we could reuse. |
There was an initial attempt here as well: #1201 but it required changes so we could also start over. |
Is your feature request related to a current problem? Please describe.
Moving Average (MA) is used as a "baseline model" in many time-series forecasting use cases. With the current darts library, we only have access to MA as:
Describe proposed solution
Implement MA as a Forecasting Model class, so all the underlying functions (fit, predict, backtesting, gridsearch, etc.) can be used. Potentially the work already done for MA Filtering Model can be leveraged.
Describe potential alternatives
Thanks in any case for the great library, awesome work!
The text was updated successfully, but these errors were encountered: