Open codaibk opened 6 years ago
You should have something like this in your code:
nn.Upsample(scale_factor = 2, mode='nearest'),
nn.ReflectionPad2d(1),
nn.Conv2d(ngf * mult, int(ngf * mult / 2), kernel_size=3, stride=1, padding=0),
You should have something like this in your code:
nn.Upsample(scale_factor = 2, mode='nearest'), nn.ReflectionPad2d(1), nn.Conv2d(ngf * mult, int(ngf * mult / 2), kernel_size=3, stride=1, padding=0),
Can you show the TensorFlow version?I would be grateful.
Hi, Thanks for great Post Could you please help me how to edit my Generator function to avoid artifacts? This is my code: