Skip to content
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

[BUG]: Error while assuming fixed number of dimensions in QuantileLoss.loss #1795

Open
bobbyx27 opened this issue Mar 13, 2025 · 0 comments
Open
Labels
bug Something isn't working

Comments

@bobbyx27
Copy link

bobbyx27 commented Mar 13, 2025

WHERE
In pytorch_forecasting.metrics.quantile
In QuantileLoss.loss (shown below)

WHAT
torch.cat with dim=2 does not work as tensors are expected to have unknown number of dimensions.
It works fine with dim=-1.

(By the way I'm not sure about the criterion's scaling "2 *" logic. I don't find it in other references)
(And specifying the quantile dimension is the last one of y_pred/losses should be added to documentation)

CODE

def loss(self, y_pred: torch.Tensor, target: torch.Tensor) -> torch.Tensor:
      # calculate quantile loss
      losses = []
      for i, q in enumerate(self.quantiles):
            errors = target - y_pred[..., i]
            losses.append(torch.max((q - 1) * errors, q * errors).unsqueeze(-1))
      losses = 2 * torch.cat(losses, dim=2)

    return losses
'''
@bobbyx27 bobbyx27 added the bug Something isn't working label Mar 13, 2025
@github-project-automation github-project-automation bot moved this to Needs triage & validation in Bugfixing - pytorch-forecasting Mar 13, 2025
@bobbyx27 bobbyx27 changed the title [BUG]: Error from non existent dim in QuantileLoss.loss [BUG]: Error from unknown number of dimensions in QuantileLoss.loss Mar 13, 2025
@bobbyx27 bobbyx27 changed the title [BUG]: Error from unknown number of dimensions in QuantileLoss.loss [BUG]: Error while assuming fixed number of dimensions in QuantileLoss.loss Mar 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
Status: Needs triage & validation
Development

No branches or pull requests

1 participant