torchgan / torchgan

Research Framework for easy and efficient training of GANs based on Pytorch
https://torchgan.readthedocs.io/en/latest/
MIT License
1.4k stars 168 forks source link

Only part of the fake image is clear in AAE tutorial. #151

Open wlsdzyzl opened 1 year ago

wlsdzyzl commented 1 year ago

When I run the AAE tutorial, the output fake image is as following. For each image, only left top part is clear. Is there any problem related to this outcome?

wlsdzyzl commented 1 year ago

When I change the nn.Conv2d(channels, channels * 2, 5, 4, 2) to nn.Conv2d(channels, channels * 2, 5, 2, 2) (as long as the tranposed convolution layer), the results become corrrect. But I'm still confused about how this happened.