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()
PyTorch Example of DCGAN:
https://github.com/pytorch/examples/tree/main/dcgan