-
Notifications
You must be signed in to change notification settings - Fork 215
[ENH] TAR forecaster #3012
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
base: main
Are you sure you want to change the base?
[ENH] TAR forecaster #3012
Conversation
Thank you for contributing to
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't comment much on the actual correctness of the model, but it seems from the graph that it is doing the correct thing, but otherwise looks good
Resolves #2817
Implements a numba TAR and AutoTAR forecaster. TAR is simple, if not a bit odd to me.
Given or find a threshold value. All points where previous delay point was below the threshold go in one series ("regime"), all values above in another. Fit separate AR models to each.
Also refactors TVPForecaster to just TVP for consistency