Skip to content

DCGAN (Deep Convolutional Generative Adversarial Network) model for generating fake face images with PyTorch.

Notifications You must be signed in to change notification settings

HaMy-DS/Face-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Face Generator

In this project, I used DCGAN mode for Face Generator using CelebFaces Attributes (CelebA) Dataset https://www.kaggle.com/datasets/jessicali9530/celeba-dataset.

A DCGAN consists of two neural networks:

Generator: This network takes a random noise vector as input and generates images that resemble the real training data. Its goal is to "fool" the discriminator into thinking its fake images are real.

Discriminator: This is the discriminative network. It’s a convolutional neural network (CNN) trained to classify inputs as either real (from the training data) or fake (generated by the generator). The discriminator serves as a binary classifier, distinguishing between actual images from the dataset and the synthetic ones created by the generator.

image

Output of DCGAN model after training 15 epochs:

generated_images

About

DCGAN (Deep Convolutional Generative Adversarial Network) model for generating fake face images with PyTorch.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published