ukuer

Results 4 comments of ukuer

your pytorch version is too new, try pytorch==1.7.0

Hi, I have the same problem with you. The images in my datasets are specific, and almost in one single color. I agree with your opinions 1 and 2. My...

change ``` real_fake_images = torch.cat((imgs[:4], decoded_images.add(1).mul(0.5)[:4])) ``` to ``` real_fake_images = torch.cat((imgs.add(1).mul(0.5)[:4], decoded_images.add(1).mul(0.5)[:4])) ```