-
Notifications
You must be signed in to change notification settings - Fork 753
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
Add copy_dim
to QuantileForecast
, change dim
method for multivariate data
#2352
Conversation
What is the purpose of |
The purpose is stated in the base class |
That's some weird naming. Should we add a test for this? |
While trying to write a test, I found that in the multivariate case, the 3d NumPy arrays for
Before this commit, it was both (num_samples, target_dim, prediction_length) and then it was changed in It seems to me like the change for Please correct me if I'm wrong and if changing the meaning of |
With N = batch axis, T = time axis, C = channel axis (in the context of multivariate forecasts:
Even though comparing these different contexts only makes limited sense, it looks like T usually precedes C, to which things have been updated in the Long story short, in my view this confirms that changing the dimensions of the multivariate |
We changed to the Indeed, the change you point out just missed the |
copy_dim
to QuantileForecast
, change dim
method for multivariate data
Issue #, if available:
Description of changes:
This PR adds
copy_dim
to theQuantileForecast
class, similar to how it is done inSampleForecast
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.