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
Estimating auto regression params is just an ordinary least regression in disguise (AFAIK). At least as long we don't do any fancy stuff and restrict ourselves to the standard AR(p) processes (no seasonal terms, estimating all the terms, ...). Switching from AutoReg to a linear regression solver can speed up the estimation (or more likely the data preparation) considerably (more than 10x). Of course we have to double and triple check the results. (Also I am a bit afraid that, AutoReg checks for some edge chases we don't know about and that we will need to bells and whistles as soon as we rewrite it, but the speed gain could be worth it).
Estimating auto regression params is just an ordinary least regression in disguise (AFAIK). At least as long we don't do any fancy stuff and restrict ourselves to the standard AR(p) processes (no seasonal terms, estimating all the terms, ...). Switching from
AutoReg
to a linear regression solver can speed up the estimation (or more likely the data preparation) considerably (more than 10x). Of course we have to double and triple check the results. (Also I am a bit afraid that,AutoReg
checks for some edge chases we don't know about and that we will need to bells and whistles as soon as we rewrite it, but the speed gain could be worth it).See similarly #290 and #472 (comment)
Also, for
lag > 1
:edit: added OLS
The text was updated successfully, but these errors were encountered: