Skip to content

Train a model using PyTorch to generate fake handwritten English digits

Notifications You must be signed in to change notification settings

imranpollob/fake-handwritten-digits

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Generate handwritten digits using GAN

In this project, we will train a model that will eventually learn to write handwritten digits.

INPUT: we will use torchvision dataset that is built-in in PyTorch input

OUTPUT: generated data output

Tools Used

  • Python
  • PyTorch
  • Torchvision
  • Matplotlib

Concepts covered

  • GAN (Generative Adversarial Networks)
  • Generator
  • Discriminator
  • Leaky ReLU Activation Function

Details

We used PyTorch built-in torchvision module as a data source which called MNIST handwritten digit. We implemented a GAN (Generative Adversarial Networks) model that implemented the Leaky ReLU activation function. We trained the Discriminator and Generator Neural Networks. The purpose of the Generator is to create fake images and the Discriminator to identify between the fake and real images. They worked together to finally generate some very realistic fake images which are hard to differentiate.

About

Train a model using PyTorch to generate fake handwritten English digits

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published