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
The CRPS calculation seems to be incorrect. Line 318, targets is passed as the first argument, and q_pred is the second; whereas according to Line 257, the first argument should be predictions and the second should be targets.
Thank you so much for your attention to PyPOTS! You can follow me on GitHub
to receive the latest news of PyPOTS. If you find PyPOTS helpful to your work, please star⭐️ this repository.
Your star is your recognition, which can help more people notice PyPOTS and grow PyPOTS community.
It matters and is definitely a kind of contribution to the community.
I have received your message and will respond ASAP. Thank you for your patience! 😃
1. System Info
PyPOTS version: 0.8.1
This bug is independent of operating environment.
2. Information
3. Reproduction
The CRPS calculation seems to be incorrect. Line 318,
targets
is passed as the first argument, andq_pred
is the second; whereas according to Line 257, the first argument should bepredictions
and the second should betargets
.PyPOTS/pypots/utils/metrics/error.py
Lines 257 to 320 in 7239b51
4. Expected behavior
Line 318 should be
q_loss = calc_quantile_loss(q_pred, targets, quantiles[i], masks)
.The text was updated successfully, but these errors were encountered: