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
I am using several models via GluonTS shell. When using IdentityPredictor I get the following error: ValueError: operands could not be broadcast together with remapped shapes [original->remapped]: (1,107) and requested shape (100,672)
I guess this means that when there are not enough observations in the past, then the IdentityPredictor just doesn't work.
Would it make sense to extend it to handle these cases and just generate a warning? Maybe copying its values until the desired prediction length is satisfied?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am using several models via GluonTS shell. When using
IdentityPredictor
I get the following error:ValueError: operands could not be broadcast together with remapped shapes [original->remapped]: (1,107) and requested shape (100,672)
This error seems to be located here:
I guess this means that when there are not enough observations in the past, then the
IdentityPredictor
just doesn't work.Would it make sense to extend it to handle these cases and just generate a warning? Maybe copying its values until the desired prediction length is satisfied?
Beta Was this translation helpful? Give feedback.
All reactions