Skip to content
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

Feature: time series forecasting #16

Open
lsorber opened this issue Feb 26, 2024 · 0 comments
Open

Feature: time series forecasting #16

lsorber opened this issue Feb 26, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@lsorber
Copy link
Owner

lsorber commented Feb 26, 2024

Ideas:

  1. Fit a NeoLSSVM on y(t+1), then fit a new NeoLSSVM on y(t+2) | ŷ(t+1), and so on. This is more expensive than training a single t+1 model, but has the advantage that there's a direct estimate for the confidence interval of ŷ(t+k) with conformal prediction of the k'th model. Another advantage is that this method does not need 'future values of past covariates' as darts does.
  2. Automatically determine the forecast horizon k by stopping when the confidence intervals are no longer meaningful.
  3. Initially, only support past covariates and no future covariates. Later, add automatic future covariates based on the dataset's time series index using Time Axes Encoders. And after that maybe allow users to supply their own future covariates.
  4. To keep things simple initially, don't allow supplying a new target to forecast a fitted model on (i.e. predict does not accept X or y). Instead, users can fit a new model if there's new data.
@lsorber lsorber self-assigned this Feb 26, 2024
@lsorber lsorber added documentation Improvements or additions to documentation enhancement New feature or request and removed documentation Improvements or additions to documentation labels Apr 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant