Skip to content

DEVESH307/DCGANs

Repository files navigation

Resume Points

Deep Convolutional Generative Adversarial Network (DCGANs) in Keras Aug‘20

Project Objective

  • Implemented a deep learning CNN model to create a generator and a discriminator by the adversarial process using keras
  • Uses FASHION_MNIST dataset and train the model for 20 epochs. The images begin as random noise, and increasingly resemble over time

DCGANs

Generate Synthetic Images with DCGANs in Keras

Welcome!

Welcome to Generate Synthetic Images with DCGANs in Keras. This project is based on Deep Convolutional Generative Adversarial Network (DCGAN).

Generative Adversarial Networks (GANs) are one of the most interesting ideas in computer science today. Two models are trained simultaneously by an adversarial process. A generator ("the artist") learns to create images that look real, while a discriminator ("the art critic") learns to tell real images apart from fakes.

GAN

During training, the generator progressively becomes better at creating images that look real, while the discriminator becomes better at telling them apart. The process reaches equilibrium when the discriminator can no longer distinguish real images from fakes.

DCGAN

This notebook demonstrates this process on the FASHION_MNIST dataset. The following animation shows a series of images produced by the generator as it was trained for 20 epochs. The images begin as random noise, and increasingly resemble over time.

project Structure

The hands on project on Generating Synthetic Images with DCGANs in Kerasis divided into following tasks:

Task 1: Project Overview and Import Libraries

Task 2: Load and Preprocess the Data

Task 3: Create Batches of Training Data

Task 4: Build the Generator Network for DCGAN

Task 5: Build the Discriminator Network for DCGAN

Task 6: Compile the Deep Convolutional Generative Adversarial Network (DCGAN)

Task 7: Define the Training Procedure

Task 8: Train DCGAN

Task 9: Generate Synthetic Images with DCGAN

About

Generate Synthetic Images with DCGANs in Keras

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors