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
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.
Automatically determine the forecast horizon k by stopping when the confidence intervals are no longer meaningful.
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.
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.
The text was updated successfully, but these errors were encountered:
Ideas:
NeoLSSVM
on y(t+1), then fit a newNeoLSSVM
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.predict
does not acceptX
ory
). Instead, users can fit a new model if there's new data.The text was updated successfully, but these errors were encountered: