You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I guess that's because earlier you thresholded the values to be binary. So the squares don't matter for the calculation of the loss, but do matter for the formulation of the expression for the backward pass.
My question is, can I use the forward expression (with squares in the denominator) with probabilities instead of thresholded values?
Thanks,
Manuel
The text was updated successfully, but these errors were encountered:
TLDR: Can I use the forward expression (with squares in the denominator) with probabilities instead of thresholded values?
Hi, I saw in your thesis, page 73, that the Dice coefficient has two variants:
On page 74, you say:
But I don't see those squared pi and gi in the code:
VNet/pyLayer.py
Line 47 in 584c150
I guess that's because earlier you thresholded the values to be binary. So the squares don't matter for the calculation of the loss, but do matter for the formulation of the expression for the backward pass.
My question is, can I use the forward expression (with squares in the denominator) with probabilities instead of thresholded values?
Thanks,
Manuel
The text was updated successfully, but these errors were encountered: