saeedalahmari3

Results 1 issues of saeedalahmari3

I didn't understand this loss functoin `return -dice_coef(y_true, y_pred)`. For backpropagation I think we need a differentiable loss function for instance `return 0.5*math.pow(1-dice_coef(y_true, y_pred),2)` Is it true?