Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
save validation batch results to wandb #252
save validation batch results to wandb #252
Changes from 9 commits
430a1f7
a3f661b
f25947b
202385a
a17ad48
e227b65
42ed3e7
0444b70
53024cd
ffe9b15
79de1c4
d501107
dd2f469
156fdfa
89e4e75
8276a07
058a881
6f8b946
a9032a0
74f4f6d
91a7e94
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have you done a training run with this? When predicting quantiles, I think
y_i
andy_hat_i
will be different shapesThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I havent done training, but the end2end test does go through here.
becasue i take
y = batch[self._target_key][:, -self.forecast_len :, 0]
, it makes it the same length as y_hat.Perhaps theres a better way to standardised that. something for the future
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeh but I think in this case,
y_i
is a vector with shape(horizon_step,)
. Buty_hat_i
can either be a vector with shape(horizon_step,)
or(horizon_step, quantile,)
depending on whether we are training to predict quantiles or only a central value. The end2end test only tests non-quantile training.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh good point. ill have a think about the qunalite things. Good catch on that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I should have it now