We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Predicting two or more variates fails if there are static covariates present and shall be used.
To Reproduce
import pandas as pd from darts.datasets import ETTh1Dataset from darts.models import DLinearModel series = ETTh1Dataset().load().astype("float32") target = series["HUFL"].stack(series["LULL"]).with_static_covariates(pd.Series([3, 4])) past_cov = series["MULL"] model = DLinearModel(16, 4, use_static_covariates=True) model.fit(series=target, past_covariates=past_cov) ---> RuntimeError: mat1 and mat2 shapes cannot be multiplied (32x2 and 4x8)
Expected behavior Not a crash, but nice forecasts.
System (please complete the following information):
3.10.13
2.1.0
0.26.0
Additional context Possibly related to #1873 and #2035.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
Predicting two or more variates fails if there are static covariates present and shall be used.
To Reproduce
Expected behavior
Not a crash, but nice forecasts.
System (please complete the following information):
3.10.13
2.1.0
0.26.0
Additional context
Possibly related to #1873 and #2035.
The text was updated successfully, but these errors were encountered: