Zheng-Yuan Xie

Results 4 comments of Zheng-Yuan Xie

Thanks for your great work! I'm a newbie of DL and I wonder where is the code of segmentation loss referred in sec 3.4. It seems that loss_identity and loss_aux...

@amsword @601222543 I have the same problem, do you have any solution? Thanks.

> change to this `count = 0 for channel, mean, std in zip(denormalized[0], means, stds): denormalized[0][count] = denormalized[0][count].mul(std) denormalized[0][count] = denormalized[0][count].add(mean) count+=1` the key is change `channel.mul_(std).add_(mean)` to `denormalized[0][count] =...