All Projects → universome → Inr Gan

universome / Inr Gan

Adversarial Generation of Continuous Images [CVPR 2021]

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Inr Gan

Pytorch Pix2pix
Pytorch implementation of pix2pix for various datasets.
Stars: ✭ 74 (-8.64%)
Mutual labels:  gan, generative-model
Segan
Speech Enhancement Generative Adversarial Network in TensorFlow
Stars: ✭ 661 (+716.05%)
Mutual labels:  gan, generative-model
Alae
[CVPR2020] Adversarial Latent Autoencoders
Stars: ✭ 3,178 (+3823.46%)
Mutual labels:  gan, generative-model
Dragan
A stable algorithm for GAN training
Stars: ✭ 189 (+133.33%)
Mutual labels:  gan, generative-model
Discogan Pytorch
PyTorch implementation of "Learning to Discover Cross-Domain Relations with Generative Adversarial Networks"
Stars: ✭ 961 (+1086.42%)
Mutual labels:  gan, generative-model
Triple Gan
See Triple-GAN-V2 in PyTorch: https://github.com/taufikxu/Triple-GAN
Stars: ✭ 203 (+150.62%)
Mutual labels:  gan, generative-model
Seqgan
A simplified PyTorch implementation of "SeqGAN: Sequence Generative Adversarial Nets with Policy Gradient." (Yu, Lantao, et al.)
Stars: ✭ 502 (+519.75%)
Mutual labels:  gan, generative-model
Lggan
[CVPR 2020] Local Class-Specific and Global Image-Level Generative Adversarial Networks for Semantic-Guided Scene Generation
Stars: ✭ 97 (+19.75%)
Mutual labels:  gan, generative-model
Dcgan Tensorflow
A tensorflow implementation of "Deep Convolutional Generative Adversarial Networks"
Stars: ✭ 6,963 (+8496.3%)
Mutual labels:  gan, generative-model
Began Tensorflow
Tensorflow implementation of "BEGAN: Boundary Equilibrium Generative Adversarial Networks"
Stars: ✭ 904 (+1016.05%)
Mutual labels:  gan, generative-model
Semantic image inpainting
Semantic Image Inpainting
Stars: ✭ 140 (+72.84%)
Mutual labels:  gan, generative-model
Wavegan Pytorch
PyTorch implementation of " Synthesizing Audio with Generative Adversarial Networks"
Stars: ✭ 33 (-59.26%)
Mutual labels:  gan, generative-model
Psgan
Periodic Spatial Generative Adversarial Networks
Stars: ✭ 108 (+33.33%)
Mutual labels:  gan, generative-model
cgan-face-generator
Face generator from sketches using cGAN (pix2pix) model
Stars: ✭ 52 (-35.8%)
Mutual labels:  gan, generative-model
Spectralnormalizationkeras
Spectral Normalization for Keras Dense and Convolution Layers
Stars: ✭ 100 (+23.46%)
Mutual labels:  gan, generative-model
Tensorflow Generative Model Collections
Collection of generative models in Tensorflow
Stars: ✭ 3,785 (+4572.84%)
Mutual labels:  gan, generative-model
Generative Models
Collection of generative models, e.g. GAN, VAE in Pytorch and Tensorflow.
Stars: ✭ 6,701 (+8172.84%)
Mutual labels:  gan, generative-model
Dcgan Pytorch
PyTorch Implementation of DCGAN trained on the CelebA dataset.
Stars: ✭ 32 (-60.49%)
Mutual labels:  gan, generative-model
Frechet Inception Distance
CPU/GPU/TPU implementation of the Fréchet Inception Distance
Stars: ✭ 66 (-18.52%)
Mutual labels:  gan, generative-model
Conditional Animegan
Conditional GAN for Anime face generation.
Stars: ✭ 70 (-13.58%)
Mutual labels:  generative-model

Official implementation of Adversarial Generation of Continuous Images

Disclaimer

Right now, the repo is being rewritten/refactored from firelab to pytorch-lightning, so you may like to wait a week or two for the update before starting building it.

INR-based GAN

Generating images in their implicit form.

To run the reconstruction model, you should first install firelab library:

pip install firelab

To run the experiment on a single GPU, use the following command:

CUDA_VISIBLE_DEVICES=0,1,2,3 horovodrun -np 4 --mpi-args="--oversubscribe" python src/run.py -c configs/inr-gan.yml --config.dataset lsun_church_outdoor --config.distributed_training.enabled true --config.logging.freqs.images 1000 --config.logging.freqs.fid 10000

To run a multi-gpu training, we use horovod which is launched via:

horovodrun -np NUM_GPUS --mpi-args=--oversubscribe python src/run.py -c configs/inr-gan.yml --config.distributed_training.enabled true --config.dataset lsun_256 --config.hp.batch_size BATCH_SIZE
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].