Table of Contents

DCGAN

Tips

Information - Checkerboard Artifacts of Deconvolution

https://distill.pub/2016/deconv-checkerboard/

#nn.ConvTranspose2d(ngf, nc, 4, 2, 1, bias=False),
nn.Upsample(scale_factor=2, mode="nearest"),
nn.Conv2d(ngf, nc, 3, 1, 1, bias=False),
nn.Tanh()

References

PyTorch Example of DCGAN:
https://github.com/pytorch/examples/tree/main/dcgan

https://sorabatake.jp/18467/