You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AutoARIMA with the CSS method (or with the standard CSS-ML method but approximation=True) will fail if a model returning residuals all equal to zero is encountered in the search, i.e., if sigma2 = 0. The issue stems from python's math.log not supporting 0 at L787 of myarima. A fix might be to replace with
What happened + What you expected to happen
AutoARIMA with the CSS method (or with the standard CSS-ML method but approximation=True) will fail if a model returning residuals all equal to zero is encountered in the search, i.e., if sigma2 = 0. The issue stems from python's
math.log
not supporting 0 at L787 ofmyarima
. A fix might be to replace withVersions / Dependencies
statsforecast 2.0.0
numpy 2.0.2
pandas 2.2.3
Python 3.11.10 (main, Oct 3 2024, 02:37:52) [Clang 14.0.6 ]
MacOS 15.2
Reproducible example
results in error
Issue Severity
Medium: It is a significant difficulty but I can work around it.
The text was updated successfully, but these errors were encountered: