Replies: 1 comment
-
Fixed in #6924. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using MONAI for binary 3D segmentation.
I've noticed that in my case the 'CE' component in DiceCELoss is 0 and therefore has no effect, however I wouldn't know that if I didn't dig deep and debug the code.
repro script:
This is basically extracted from
forward
of DCELoss hereMONAI/monai/losses/dice.py
Line 723 in be4e1f5
I think what's going on here is CELoss is not aimed for binary case.
However - DiceCELoss isn't shouting at me that I'm doing something wrong, and at the same time it gave me confidence I can use it for a single-channel case (e.g. because it gives some warnings about doing single-channel e.g.
single channel prediction,
include_background=Falseignored.
.).Am I right that it should either be:
Beta Was this translation helpful? Give feedback.
All reactions