All Projects → MingtaoGuo → Dcgan_wgan_wgan Gp_lsgan_sngan_rsgan_began_acgan_pggan_tensorflow

MingtaoGuo / Dcgan_wgan_wgan Gp_lsgan_sngan_rsgan_began_acgan_pggan_tensorflow

Licence: mit
Implementation of some different variants of GANs by tensorflow, Train the GAN in Google Cloud Colab, DCGAN, WGAN, WGAN-GP, LSGAN, SNGAN, RSGAN, RaSGAN, BEGAN, ACGAN, PGGAN, pix2pix, BigGAN

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Dcgan wgan wgan Gp lsgan sngan rsgan began acgan pggan tensorflow

Awesome Gans
Awesome Generative Adversarial Networks with tensorflow
Stars: ✭ 585 (+252.41%)
Mutual labels:  generative-adversarial-network, dcgan, wgan, wgan-gp
progressive growing of GANs
Pure tensorflow implementation of progressive growing of GANs
Stars: ✭ 31 (-81.33%)
Mutual labels:  generative-adversarial-network, wgan, wgan-gp
Pytorch-Basic-GANs
Simple Pytorch implementations of most used Generative Adversarial Network (GAN) varieties.
Stars: ✭ 101 (-39.16%)
Mutual labels:  dcgan, wgan, wgan-gp
Tf.gans Comparison
Implementations of (theoretical) generative adversarial networks and comparison without cherry-picking
Stars: ✭ 477 (+187.35%)
Mutual labels:  dcgan, wgan, wgan-gp
Deeplearningmugenknock
でぃーぷらーにんぐを無限にやってディープラーニングでDeepLearningするための実装CheatSheet
Stars: ✭ 684 (+312.05%)
Mutual labels:  dcgan, wgan, wgan-gp
Pytorch Generative Model Collections
Collection of generative models in Pytorch version.
Stars: ✭ 2,296 (+1283.13%)
Mutual labels:  generative-adversarial-network, wgan, wgan-gp
Generative-Model
Repository for implementation of generative models with Tensorflow 1.x
Stars: ✭ 66 (-60.24%)
Mutual labels:  dcgan, wgan, wgan-gp
Dcgan Lsgan Wgan Gp Dragan Tensorflow 2
DCGAN LSGAN WGAN-GP DRAGAN Tensorflow 2
Stars: ✭ 373 (+124.7%)
Mutual labels:  dcgan, wgan, wgan-gp
Improved-Wasserstein-GAN-application-on-MRI-images
Improved Wasserstein GAN (WGAN-GP) application on medical (MRI) images
Stars: ✭ 23 (-86.14%)
Mutual labels:  generative-adversarial-network, wgan, wgan-gp
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 (-74.1%)
Mutual labels:  generative-adversarial-network, dcgan, wgan
Gan Tutorial
Simple Implementation of many GAN models with PyTorch.
Stars: ✭ 227 (+36.75%)
Mutual labels:  dcgan, wgan, wgan-gp
Generative adversarial networks 101
Keras implementations of Generative Adversarial Networks. GANs, DCGAN, CGAN, CCGAN, WGAN and LSGAN models with MNIST and CIFAR-10 datasets.
Stars: ✭ 138 (-16.87%)
Mutual labels:  generative-adversarial-network, dcgan, wgan
coursera-gan-specialization
Programming assignments and quizzes from all courses within the GANs specialization offered by deeplearning.ai
Stars: ✭ 277 (+66.87%)
Mutual labels:  generative-adversarial-network, dcgan, wgan
WGAN-GP-tensorflow
Tensorflow Implementation of Paper "Improved Training of Wasserstein GANs"
Stars: ✭ 23 (-86.14%)
Mutual labels:  generative-adversarial-network, wgan, wgan-gp
Chainer Gan Lib
Chainer implementation of recent GAN variants
Stars: ✭ 386 (+132.53%)
Mutual labels:  generative-adversarial-network, dcgan, wgan-gp
Ganotebooks
wgan, wgan2(improved, gp), infogan, and dcgan implementation in lasagne, keras, pytorch
Stars: ✭ 1,446 (+771.08%)
Mutual labels:  dcgan, wgan, wgan-gp
Context Encoder
[CVPR 2016] Unsupervised Feature Learning by Image Inpainting using GANs
Stars: ✭ 731 (+340.36%)
Mutual labels:  generative-adversarial-network, dcgan
Gan theories
Resources and Implementations of Generative Adversarial Nets which are focusing on how to stabilize training process and generate high quality images: DCGAN, WGAN, EBGAN, BEGAN, etc.
Stars: ✭ 158 (-4.82%)
Mutual labels:  dcgan, wgan
Anime gan
GAN models with Anime.
Stars: ✭ 56 (-66.27%)
Mutual labels:  dcgan, wgan
Gans In Action
Companion repository to GANs in Action: Deep learning with Generative Adversarial Networks
Stars: ✭ 748 (+350.6%)
Mutual labels:  generative-adversarial-network, dcgan

DCGAN_WGAN_WGAN-GP_LSGAN_SNGAN_RSGAN_BEGAN_ACGAN_PGGAN_TensorFlow is being sponsored by the following tool; please help to support us by taking a look and signing up to a free trial

GitAds

DCGAN_LSGAN_WGAN_WGAN-GP_SNGAN_RSGAN_BEGAN_ACGAN_PGGAN_pix2pix_BigGAN

Implementation of some different variants of GANs

Introduction


This code is mainly implement some basic GANs about 'DCGAN', 'WGAN', 'WGAN-GP', 'LSGAN', 'SNGAN', 'RSGAN'&'RaSGAN', 'BEGAN', 'ACGAN', 'PGGAN', 'pix2pix', 'BigGAN'.

More details of these GANs, please see follow papers:

  1. DCGAN: Unsupervised representation learning with deep convolutional generative adversarial networks

  2. WGAN: Wasserstein gan

  3. WGAN-GP: Improved training of wasserstein gans

  4. LSGAN: Least Squares Generative Adversarial Networks

  5. SNGAN: Spectral normalization for generative adversarial networks

  6. RSGAN&RaSGAN: The relativistic discriminator: a key element missing from standard GAN

  7. BEGAN:BEGAN: Boundary Equilibrium Generative Adversarial Networks

  8. ACGAN: Conditional Image Synthesis With Auxiliary Classifier GANs

  9. PGGAN: Progressive Growing of GANs for Improved Quality, Stability, and Variation

  10. pix2pix: Image-to-Image Translation with Conditional Adversarial Networks

  11. BigGAN: Large Scale GAN Training for High Fidelity Natural Image Synthesis [Code]

Attention

If your computer don't have GPU to accelerate the training process, please click Google Cloud Colab to train the GANs.

How to use

Firstly, you should download the data 'facedata.mat' from Baidu Drive or Google Drive, then put the file 'facedata.mat' into the folder 'TrainingSet'.

Requirements

  1. python3.5
  2. tensorflow1.4.0
  3. pillow
  4. scipy
  5. numpy

Results of this code

This result is using DCGAN trained about 8000 iterations.

Compare LSGAN, WGAN, WGAN-GP, SNGAN, RSGAN of different iteration

Convergence of BEGAN

ACGAN for face generating

dataset: download address: Baidu Drive password: 5egd

Fixed label, change noise slightly Fixed noise, change label slightly

PGGAN for face generating

SNGAN for cifar-10

D_loss G_loss results

Pix2Pix

Dataset: Google maps download address: http://efrosgans.eecs.berkeley.edu/pix2pix/datasets/maps.tar.gz

Edges2Shoes download address: http://efrosgans.eecs.berkeley.edu/pix2pix/datasets/edges2shoes.tar.gz

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].