All Projects → balansky → pytorch_gan

balansky / pytorch_gan

Licence: MIT License
Spectral Normalization and Projection Discriminator

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pytorch gan

Tensorflow Generative Model Collections
Collection of generative models in Tensorflow
Stars: ✭ 3,785 (+23556.25%)
Mutual labels:  gan, cgan
GANs-Keras
GANs Implementations in Keras
Stars: ✭ 24 (+50%)
Mutual labels:  gan, cgan
Pi Rec
🔥 PI-REC: Progressive Image Reconstruction Network With Edge and Color Domain. 🔥 图像翻译,条件GAN,AI绘画
Stars: ✭ 1,619 (+10018.75%)
Mutual labels:  gan, cgan
cgan-face-generator
Face generator from sketches using cGAN (pix2pix) model
Stars: ✭ 52 (+225%)
Mutual labels:  gan, cgan
Pytorch Generative Model Collections
Collection of generative models in Pytorch version.
Stars: ✭ 2,296 (+14250%)
Mutual labels:  gan, cgan
CoMoGAN
CoMoGAN: continuous model-guided image-to-image translation. CVPR 2021 oral.
Stars: ✭ 139 (+768.75%)
Mutual labels:  gan
Adventures-with-GANS
Showcasing various fun adventures with GANs
Stars: ✭ 13 (-18.75%)
Mutual labels:  gan
sourceseparation misc
No description or website provided.
Stars: ✭ 44 (+175%)
Mutual labels:  gan
ZSL-ADA
Code accompanying the paper "A Generative Framework for Zero Shot Learning with Adversarial Domain Adaptation"
Stars: ✭ 18 (+12.5%)
Mutual labels:  gan
srgan
Pytorch implementation of "Photo-Realistic Single Image Super-Resolution Using a Generative Adversarial Network"
Stars: ✭ 39 (+143.75%)
Mutual labels:  gan
Computer-Vision
implemented some computer vision problems
Stars: ✭ 25 (+56.25%)
Mutual labels:  gan
catgan pytorch
Unsupervised and Semi-supervised Learning with Categorical Generative Adversarial Networks
Stars: ✭ 50 (+212.5%)
Mutual labels:  gan
unrolled-gans
PyTorch Implementation of Unrolled Generative Adversarial Networks
Stars: ✭ 35 (+118.75%)
Mutual labels:  gan
videoMultiGAN
End to End learning for Video Generation from Text
Stars: ✭ 53 (+231.25%)
Mutual labels:  gan
IrwGAN
Official pytorch implementation of the IrwGAN for unaligned image-to-image translation
Stars: ✭ 33 (+106.25%)
Mutual labels:  gan
CariMe-pytorch
Unpaired Caricature Generation with Multiple Exaggerations (TMM 2021)
Stars: ✭ 33 (+106.25%)
Mutual labels:  gan
Image-Classifier
Final Project of the Udacity AI Programming with Python Nanodegree
Stars: ✭ 63 (+293.75%)
Mutual labels:  pytorch-implmention
Deep learning Coloring-Anime-image-and-satellite-image-house-damge-level-colorized
No description or website provided.
Stars: ✭ 16 (+0%)
Mutual labels:  gan
GAN-RNN Timeseries-imputation
Recurrent GAN for imputation of time series data. Implemented in TensorFlow 2 on Wikipedia Web Traffic Forecast dataset from Kaggle.
Stars: ✭ 107 (+568.75%)
Mutual labels:  gan
PerceptualGAN
Pytorch implementation of Image Manipulation with Perceptual Discriminators paper
Stars: ✭ 119 (+643.75%)
Mutual labels:  gan

Spectral Normalization and Projection Discriminator(Pytorch)

This project attempts to reproduce the results from "Spectral Normalization for Generative Adversarial Networks" by Takeru Miyato, Toshiki Kataoka, Masanori Koyama, Yuichi Yoshida. The Official Chainer implementation link

Setup:

pip install pytorch pyyaml

Training(cifar10):

python train.py --config_path configs/sn_cifar10_conditional.yml --batch_size 64

Evaluation:

Inception Score:

python eval.py --config_path configs/sn_cifar10_conditional.yml --model_path=/path/to/model

Generate Samples:

python generate.py --config_path configs/sn_cifar10_conditional.yml --model_path=/path/to/model

32x32 Image Samples

model download

64x64 Dog Samples

model download

Notes

The Inception Score of PyTorch implementation is roughly 1.57 less than tf implementation. The inception score of my implementation is 6.63 which is matched the claim(8.22 - 1.57) from the origin paper. from A Note on the Inception Score

References

  • Takeru Miyato, Toshiki Kataoka, Masanori Koyama, Yuichi Yoshida. Spectral Normalization for Generative Adversarial Networks. ICLR2018. [OpenReview][sngans]
  • Takeru Miyato, Masanori Koyama. cGANs with Projection Discriminator. ICLR2018. [OpenReview][pcgans]
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].