All Projects → LynnHo → Dcgan Lsgan Wgan Gp Dragan Pytorch

LynnHo / Dcgan Lsgan Wgan Gp Dragan Pytorch

Licence: mit
DCGAN LSGAN WGAN-GP DRAGAN PyTorch

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Dcgan Lsgan Wgan Gp Dragan Pytorch

Pytorch-Basic-GANs
Simple Pytorch implementations of most used Generative Adversarial Network (GAN) varieties.
Stars: ✭ 101 (-24.63%)
Mutual labels:  dcgan, wgan-gp
Dcgan Lsgan Wgan Gp Dragan Tensorflow 2
DCGAN LSGAN WGAN-GP DRAGAN Tensorflow 2
Stars: ✭ 373 (+178.36%)
Mutual labels:  dcgan, wgan-gp
Gan Tutorial
Simple Implementation of many GAN models with PyTorch.
Stars: ✭ 227 (+69.4%)
Mutual labels:  dcgan, wgan-gp
Dcgan wgan wgan Gp lsgan sngan rsgan began acgan pggan tensorflow
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
Stars: ✭ 166 (+23.88%)
Mutual labels:  dcgan, wgan-gp
Awesome Gans
Awesome Generative Adversarial Networks with tensorflow
Stars: ✭ 585 (+336.57%)
Mutual labels:  dcgan, wgan-gp
Chainer Gan Lib
Chainer implementation of recent GAN variants
Stars: ✭ 386 (+188.06%)
Mutual labels:  dcgan, wgan-gp
Generative-Model
Repository for implementation of generative models with Tensorflow 1.x
Stars: ✭ 66 (-50.75%)
Mutual labels:  dcgan, wgan-gp
Pytorch Gan Collections
PyTorch implementation of DCGAN, WGAN-GP and SNGAN.
Stars: ✭ 128 (-4.48%)
Mutual labels:  dcgan, wgan-gp
Tf.gans Comparison
Implementations of (theoretical) generative adversarial networks and comparison without cherry-picking
Stars: ✭ 477 (+255.97%)
Mutual labels:  dcgan, wgan-gp
Mimicry
[CVPR 2020 Workshop] A PyTorch GAN library that reproduces research results for popular GANs.
Stars: ✭ 458 (+241.79%)
Mutual labels:  dcgan, wgan-gp
Deeplearningmugenknock
でぃーぷらーにんぐを無限にやってディープラーニングでDeepLearningするための実装CheatSheet
Stars: ✭ 684 (+410.45%)
Mutual labels:  dcgan, wgan-gp
Ganotebooks
wgan, wgan2(improved, gp), infogan, and dcgan implementation in lasagne, keras, pytorch
Stars: ✭ 1,446 (+979.1%)
Mutual labels:  dcgan, wgan-gp
Tpudcgan
Train DCGAN with TPUs on Google Cloud
Stars: ✭ 33 (-75.37%)
Mutual labels:  dcgan
Wasserstein Gan
Chainer implementation of Wasserstein GAN
Stars: ✭ 95 (-29.1%)
Mutual labels:  dcgan
Dcgan Pytorch
PyTorch Implementation of DCGAN trained on the CelebA dataset.
Stars: ✭ 32 (-76.12%)
Mutual labels:  dcgan
Keras Dcgan
Keras implementation of Deep Convolutional Generative Adversarial Networks
Stars: ✭ 943 (+603.73%)
Mutual labels:  dcgan
Tf Exercise Gan
Tensorflow implementation of different GANs and their comparisions
Stars: ✭ 110 (-17.91%)
Mutual labels:  dcgan
Unified Gan Tensorflow
A Tensorflow implementation of GAN, WGAN and WGAN with gradient penalty.
Stars: ✭ 93 (-30.6%)
Mutual labels:  wgan-gp
Dcgan
Porting pytorch dcgan on FloydHub
Stars: ✭ 21 (-84.33%)
Mutual labels:  dcgan
Dcgan Tensorflow
A tensorflow implementation of "Deep Convolutional Generative Adversarial Networks"
Stars: ✭ 6,963 (+5096.27%)
Mutual labels:  dcgan

Recommendation

  • Our GAN based work for facial attribute editing - AttGAN.

News

  • 28 June 2019: We re-implement these GANs by Pytorch 1.1! The old version is here: v0 or in the "v0" directory.
  • Tensorflow 2 Version


GANs - Pytorch

Pytorch implementations of DCGAN, LSGAN, WGAN-GP(LP) and DRAGAN.

Exemplar results

Fashion-MNIST

DCGAN LSGAN WGAN-GP DRAGAN

CelebA

DCGAN LSGAN
WGAN-GP DRAGAN
WGAN-LP DRAGAN-LP

Anime

WGAN-GP DRAGAN

Usage

  • Prerequisites

    • PyTorch 1.1
    • tensorboardX
    • scikit-image, oyaml, tqdm
    • Python 3.6
  • Datasets

  • Examples of training

    • Fashion-MNIST DCGAN

      CUDA_VISIBLE_DEVICES=0 python train.py --dataset=fashion_mnist --epoch=25 --adversarial_loss_mode=gan
      
    • CelebA DRAGAN

      CUDA_VISIBLE_DEVICES=0 python train.py --dataset=celeba --epoch=25 --adversarial_loss_mode=gan --gradient_penalty_mode=1-gp --gradient_penalty_sample_mode=dragan
      
    • Anime WGAN-GP

      CUDA_VISIBLE_DEVICES=0 python train.py --dataset=anime --epoch=200 --adversarial_loss_mode=wgan --gradient_penalty_mode=1-gp --gradient_penalty_sample_mode=line --n_d=5
      
    • see more training exampls in commands.sh

    • tensorboard for loss visualization

      tensorboard --logdir ./output/fashion_mnist_gan/summaries --port 6006
      
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].