Replies: 1 comment
-
Hi @greenyjwk, you can set MONAI/monai/metrics/meandice.py Line 42 in 4029c42 Hope it helps, thanks. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I want to find each class dice score using DiceMetric instead of finding whole Dice score.
My prediction dimension is (1,4,255,255,255 ) == (Batch, Class, Width, Height, Depth)
and
My label dimension is (1,1,255,255,255 ) == (Batch, , Width, Height, Depth)
Background:0, Kidney:1, Tumor:2, Cyst:3
Using DiceMetric(monai.metrics.DiceMetric) I want to find the dice score for only Tumor dice score. Which arguments would I need to change from DiceScore for this task?
Beta Was this translation helpful? Give feedback.
All reactions