Hello,
I have two questions about the UNet architecture and Dice loss function:
- In the UNet paper, there is no Relu layer after the final conv. In experiments of my implemented version of UNet, such a Relu doesn't help. I don't whether the Relu in Line 136, unet.py helps or not.
- IMHO, Dice loss can be regarded as
# of True Positives / (# of Positives + # of False Positives), but the Dice loss in Line 231, unet.py count both positives and negatives if I understand the code correctly.
Please correct me if I am wrong. Thanks.