Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 664 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 664 Bytes

DCGAN-Fashion-MNIST

Fashion MNIST dataset is directly downloaded from tf.keras.datasets
Composed of 60,000 training images and 10,000 test images
Dimension of each image is 28x28

Random Gaussian noise is added to make sure we get realistic images and not the exact images

To improve DCGAN model performance (use GPU/Colab for these cases)

  1. Increase the number of epochs
  2. Increase the number of layers for Generator and Discriminator

To use custom images of different dimensions

  1. Make changes in input size of Discriminator
  2. Modify layers in both Generator and Discriminator accordingly