-
Notifications
You must be signed in to change notification settings - Fork 11
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
ANN version #1
Comments
Hi, |
It makes a lot of sense to have an ANN standalone function since it could be 10-100 times faster than current implementation? Many other Bayesian methods were not well accepted in practice because of speed issues. Only ANN, no others. It's like in forecast package there's SES for ANN, and others are still in ETS. There are many time series out there essentially ANN with no seasonality. I guess then the input can take negative values assuming no seasonality? Thanks for the great work by the way |
Hi,
well, the ses function in the forecast package is just a wrapper for the ets function, and my understanding is that it is mostly there for teaching purposes (i.e., the FPP book). But if it is really a lot faster I agree that it could make sense to have such a stand-alone function.
Regards,
Christoph
…On 11/5/19 16:12, naodaihuang wrote:
It makes a lot of sense to have an ANN standalone function since it could be 10-100 times faster than current implementation? Many other Bayesian methods were not well accepted in practice because of speed issues. Only ANN, no others. It's like in forecast package there's SES for ANN, and others are still in ETS. There are many time series out there essentially ANN with no seasonality. I guess then the input can take negative values assuming no seasonality? Thanks for the great work by the way
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub <#1 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AAD76GXM25GRSPRUCDU4EVLPUZPUTANCNFSM4HLXQHQA>.
|
yes ses is just a wrapper, but as I look at the stan code here, if it's ANN then fewer parameters and distributions needed, I guess it can be a lot faster |
You are right, it is much faster. I implemented my version of damped Holt Winters and it is at least 10 times faster, and also, on M3 yearly dataset, beats ARIMA and ETS. |
Or wait till RStan 2.19 comes out. |
I'd suggest just a very simple one without seasonality consideration. Many time series are not seasonal, and people can do their own seasonality trend decomposition anyway |
Can you add a simpler ANN version of LGT? In Smyl Slawek's 2015 paper Appendix 1, it has implementation of AAN, and "Remove or comment out highlighted lines for ANN model". It would be similar to ses in forecast package.
Will the ANN version work for time series that has negative values?
The text was updated successfully, but these errors were encountered: