MyFirst905

Results 3 comments of MyFirst905

issue里面的第一个问题里有写

> def dice_loss_func(input, target): smooth = 1. n = input.size(0) iflat = input.view(n, -1) tflat = target.view(n, -1) intersection = (iflat * tflat).sum(1) loss = 1 - ((2. * intersection...

Have you solved it? I also want to know the answer to that question