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
Describe the bug
A ValueError is thrown when attempting to train global models (I've tried LightGBMModel and LinearRegressionModel) on lists of TimeSeries objects that all have the same static covariates assigned.
The static covariate labels are strings and I've tried both with and without using StaticCovariatesTransformer() to convert the strings to float labels.
To Reproduce
All TimeSeries objects have the same structure but vary in length. For example:
Describe the bug
A ValueError is thrown when attempting to train global models (I've tried LightGBMModel and LinearRegressionModel) on lists of TimeSeries objects that all have the same static covariates assigned.
The static covariate labels are strings and I've tried both with and without using
StaticCovariatesTransformer()
to convert the strings to float labels.To Reproduce
All TimeSeries objects have the same structure but vary in length. For example:
AND
Fit the model:
Error:
Expected behavior
The
static_covs
array should match the dimensions of thefeatures
array so that they can be concatenated.System (please complete the following information):
Additional context
DARTS has been a huge boost for me. Thanks for all the effort, especially the effort put into the docs.
The text was updated successfully, but these errors were encountered: