This project makes an attempt to implement a DCGAN network consisting of a generator n/w and discriminator n/w. The dataset used to train the generator is CIFAR-10 because of the simplicity.
- python 3+
- Tensorflow 2.0
- CIFAR - 10
- Dense 8x8x256 (Reshaped) + LeakyReLU
- Upconvolution Conv2DTranspose (5x5x128-s-1) + BatchNorm + LeakyReLU
- Upconvolution Conv2DTranspose (5x5x64-s-2) + BatchNorm + LeakyReLU
- Upconvolution Conv2DTranspose (5x5x3-s-2) + BatchNorm + LeakyReLU
- Conv2D (5x5x64-s-2) + BatchNorm + LeakyReLU + Dropout
- Conv2D (5x5x128-s-2) + BatchNorm + LeakyReLU
- Conv2D (5x5x128-s-2) + BatchNorm + LeakyReLU
- Dense (1) + Sigmoid