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

GeneralizedDiceScore yields 0 scores when using per_class=True for samples where class is not present #2846

Open
nkaenzig opened this issue Nov 28, 2024 · 3 comments
Labels
bug / fix Something isn't working good first issue Good for newcomers help wanted Extra attention is needed v1.6.x v1.7.x

Comments

@nkaenzig
Copy link
Contributor

nkaenzig commented Nov 28, 2024

🐛 Bug

The current implementation of GeneralizedDiceScore yields scores of 0.0 for samples that don't contain a particular class when calculating class-wise metrics via per_class=True.

This leads to very low dice scores, particularly for rare classes and therefore makes the dice scores between classes incomparable.

To Reproduce

The following code sample calculates class-wise scores of tensor([0.2500, 0.2500, 0.0000]), even though all the predictions match the targets:

Code sample
import torch
from torchmetrics.segmentation import GeneralizedDiceScore
from torchmetrics.segmentation import DiceScore

N_SAMPLES = 4
N_CLASSES = 3

target = torch.full((N_SAMPLES, N_CLASSES, 128, 128), 0, dtype=torch.int8)
preds = torch.full((N_SAMPLES, N_CLASSES, 128, 128), 0, dtype=torch.int8)

target[0, 0], preds[0, 0] = 1, 1 
target[2, 1], preds[2, 1]  = 1, 1

generalized_dice = GeneralizedDiceScore(num_classes=3, per_class=True, include_background=True)
print(generalized_dice(preds, target))

Expected behavior

I'd expect the above code sample to return [1.0, 1.0, nan] for the class-wise scores (nan for the third class, given that this class is not present in any of the samples, therefore returning a 1.0 score might also be misleading). Also, samples where the class doesn't occur should not contribute to the dice score of that class.

Environment

  • TorchMetrics version (if build from source, add commit SHA): 1.6.0
  • Python & PyTorch Version (e.g., 1.0): 3.11.10
  • Any other relevant information such as OS (e.g., Linux): macOS 15.1.1 (24B91)

Additional context

Very similar to issue #2850.

@nkaenzig nkaenzig added bug / fix Something isn't working help wanted Extra attention is needed labels Nov 28, 2024
Copy link

Hi! thanks for your contribution!, great first issue!

@Borda
Copy link
Member

Borda commented Mar 21, 2025

Tested and it is still on the master so #2860 did not solve it...
cc: @SkafteNicki

@Borda Borda added the good first issue Good for newcomers label Mar 21, 2025
@barufa
Copy link
Contributor

barufa commented Apr 1, 2025

Hi, is there anyone working on this? Because I would like to give it a try!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug / fix Something isn't working good first issue Good for newcomers help wanted Extra attention is needed v1.6.x v1.7.x
Projects
None yet
Development

No branches or pull requests

4 participants