Kiana-Jahanshid / DCGAN

Deep Convolutional Generative Adversarial Network

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DCGAN (Generative Adversarial Network)

A simple GAN and a DCGAN are similar in that they both use a generative and a discriminative models , to generate synthetic images.

img A simple GAN uses fully-connected layers in both G and D, whereas a DCGAN uses convolutional layers. This means that a DCGAN is able to capture spatial dependencies in the data, which can improve the quality of the generated images.

DCGAN is typically trained using batch normalization and transposed convolutional layers, which can stabilize the training process and improve the performance of the generative model.


How to install :

pip install -r requirements.txt


Results :

1_ MNIST :

mnist

2_ Deep Convolutional GAN on FASHION-MNSIT dataset :

fashion

3_ Deep Convolutional GAN on Celeb_A dataset :

celeb

About

Deep Convolutional Generative Adversarial Network


Languages

Language:Jupyter Notebook 100.0%