-
Notifications
You must be signed in to change notification settings - Fork 917
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
[BUG] ARIMA future covariates not working #843
Comments
Can someone confirm if this is intended or not? Just wanna make sure I'm not doing something wrong with my code |
Hi @Japsz and thanks for pointing this out. You are right, the slicing only correctly works for DatetimeIndex and not a RangeIndex. We need to fix this |
I've run into the same error today. Good timing 😁 |
I'm still getting the error of RangeIndex for ARIMA and VARIMA. |
Which darts version are you using? |
Seems like this issue still persists for the ARIMA (ARMA) Model. I am still getting the same error with the below code
gives me the below error. Please let me know if I am making any mistake but if not, I believe the issue still persists. I have
|
Describe the bug
ARIMA model is not letting me introduce exogenous variables into the model.
To Reproduce
Expected behavior
I'm expecting this to work since I'm making sure that there's already at least n point after the training series ends.
System (please complete the following information):
Additional context
I've been debugging a lot and seems that the internal slicing will always give a future covariate series that's one less than the prediction needs (when freq is 1), hence throwing the error.
in darts/models/forecasting/forecasting_model.py line 1183
The text was updated successfully, but these errors were encountered: