eriklindernoren / PyTorch-GAN

PyTorch implementations of Generative Adversarial Networks.
MIT License
16.22k stars 4.05k forks source link

Why is img_size 32 for acgan on mnist? #144

Closed jlim13 closed 3 years ago

jlim13 commented 3 years ago

https://github.com/eriklindernoren/PyTorch-GAN/blob/36d3c77e5ff20ebe0aeefd322326a134a279b93e/implementations/acgan/acgan.py#L28

isn't mnist 28*28?

TheDudeFromCI commented 3 years ago

Powers of 2 are usually nicer to work with, so the images are scaled to the nearest power of 2.