All Projects → erilyth → DCGANs

erilyth / DCGANs

Licence: MIT license
Implementation of some basic GAN architectures in Keras

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to DCGANs

Pytorch-Basic-GANs
Simple Pytorch implementations of most used Generative Adversarial Network (GAN) varieties.
Stars: ✭ 101 (+124.44%)
Mutual labels:  dcgan
coursera-gan-specialization
Programming assignments and quizzes from all courses within the GANs specialization offered by deeplearning.ai
Stars: ✭ 277 (+515.56%)
Mutual labels:  dcgan
keras-text-to-image
Translate text to image in Keras using GAN and Word2Vec as well as recurrent neural networks
Stars: ✭ 60 (+33.33%)
Mutual labels:  dcgan
pytorch-gans
PyTorch implementation of GANs (Generative Adversarial Networks). DCGAN, Pix2Pix, CycleGAN, SRGAN
Stars: ✭ 21 (-53.33%)
Mutual labels:  dcgan
MMD-GAN
Improving MMD-GAN training with repulsive loss function
Stars: ✭ 82 (+82.22%)
Mutual labels:  dcgan
DCGAN-Pytorch
A Pytorch implementation of "Deep Convolutional Generative Adversarial Networks"
Stars: ✭ 23 (-48.89%)
Mutual labels:  dcgan
Anogan Tf
Unofficial Tensorflow Implementation of AnoGAN (Anomaly GAN)
Stars: ✭ 218 (+384.44%)
Mutual labels:  dcgan
GAN-Anime-Characters
Applied several Generative Adversarial Networks (GAN) techniques such as: DCGAN, WGAN and StyleGAN to generate Anime Faces and Handwritten Digits.
Stars: ✭ 43 (-4.44%)
Mutual labels:  dcgan
dcgan vae pytorch
dcgan combined with vae in pytorch!
Stars: ✭ 110 (+144.44%)
Mutual labels:  dcgan
Advanced Models
여러가지 유명한 신경망 모델들을 제공합니다. (DCGAN, VAE, Resnet 등등)
Stars: ✭ 48 (+6.67%)
Mutual labels:  dcgan
MXNet-GAN
MXNet Implementation of DCGAN, Conditional GAN, pix2pix
Stars: ✭ 23 (-48.89%)
Mutual labels:  dcgan
DCGAN-CIFAR10
A implementation of DCGAN (Deep Convolutional Generative Adversarial Networks) for CIFAR10 image
Stars: ✭ 18 (-60%)
Mutual labels:  dcgan
cDCGAN
PyTorch implementation of Conditional Deep Convolutional Generative Adversarial Networks (cDCGAN)
Stars: ✭ 49 (+8.89%)
Mutual labels:  dcgan
prediction gan
PyTorch Impl. of Prediction Optimizer (to stabilize GAN training)
Stars: ✭ 31 (-31.11%)
Mutual labels:  dcgan
gan-vae-pretrained-pytorch
Pretrained GANs + VAEs + classifiers for MNIST/CIFAR in pytorch.
Stars: ✭ 134 (+197.78%)
Mutual labels:  dcgan
Gan Tutorial
Simple Implementation of many GAN models with PyTorch.
Stars: ✭ 227 (+404.44%)
Mutual labels:  dcgan
emotion-recognition-GAN
This project is a semi-supervised approach to detect emotions on faces in-the-wild using GAN
Stars: ✭ 20 (-55.56%)
Mutual labels:  dcgan
LSGAN
Chainer implementation of Least Squares GAN (LSGAN)
Stars: ✭ 54 (+20%)
Mutual labels:  dcgan
Deep-Learning-Tensorflow
Gathers Tensorflow deep learning models.
Stars: ✭ 50 (+11.11%)
Mutual labels:  dcgan
Generative-Model
Repository for implementation of generative models with Tensorflow 1.x
Stars: ✭ 66 (+46.67%)
Mutual labels:  dcgan

Deep Convolutional Generative Adversarial Networks

Implementation of a few types of Generative Adversarial Networks in Keras.

Subprojects

1) ACGAN-MNIST (Auxilary Classifier GAN)

  • Train an ACGAN on the MNIST dataset using class priors. Inputs are (100) dimensional noise vectors along with (10) dimensional class vectors (conditioning) and the outputs are generated (1,28,28) images
  • Samples of generated outputs at various epochs in ACGAN-MNIST/Run1/Results
  • Trained generator and discriminator models in ACGAN-MNIST/Run1/Models
  • Generated samples in ACGAN-MNIST/Samples
  • The samples generated are much sharper than other generative methods such as variational autoencoders etc.
  • Some cherry picked generations below

| | | | |

| | | | |


2) DCGAN-MNIST (Deep Convolutional GAN)

  • Train a DCGAN on the MNIST dataset without any class priors. Inputs are (100) dimensional noise vectors and the outputs are generated (1,28,28) images
  • Samples of generated outputs in DCGAN-MNIST/GeneratedOutputs
  • Trained generator and discriminator models in DCGAN-MNIST/TrainedModels
  • Generated digit samples below

| | | | |

| | | | |

Note: Training the GAN for longer would give us much better results, which are not as blurry.


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].