-
statsforecast/statsforecast/models.py Line 238 in b4b59c9 approximation is set to False by default in auto_arima(), but auto_arima_f()'s default handles this logic similarly to R's auto.arima() already: statsforecast/statsforecast/arima.py Line 1438 in b4b59c9 |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
Hi @alech97! We decided to set |
Beta Was this translation helpful? Give feedback.
-
@all-contributors please add @alech97 for question |
Beta Was this translation helpful? Give feedback.
-
I've put up a pull request to add @alech97! 🎉 |
Beta Was this translation helpful? Give feedback.
-
I presume you meant "The use of approximation=True"? |
Beta Was this translation helpful? Give feedback.
-
Yes, @MarcoGorelli that is correct! Thanks for catching that :) |
Beta Was this translation helpful? Give feedback.
Hi @alech97! We decided to set
approximation = False
to be comparable withpmdarima
. That package (if I remember correctly) doesn't have the option to use approximation. Even without approximation, our implementation is a lot faster. 😄The use of
approximation=True
reduces the time even more, but may also reduce the accuracy.