All Projects → csinva → gan-vae-pretrained-pytorch

csinva / gan-vae-pretrained-pytorch

Licence: other
Pretrained GANs + VAEs + classifiers for MNIST/CIFAR in pytorch.

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to gan-vae-pretrained-pytorch

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 (+2.99%)
Mutual labels:  generative-adversarial-network, mnist, dcgan, gans, generative-adversarial-networks
pytorch-gans
PyTorch implementation of GANs (Generative Adversarial Networks). DCGAN, Pix2Pix, CycleGAN, SRGAN
Stars: ✭ 21 (-84.33%)
Mutual labels:  generative-adversarial-network, dcgan, gans, pytorch-implementation
GAN-Project-2018
GAN in Tensorflow to be run via Linux command line
Stars: ✭ 21 (-84.33%)
Mutual labels:  generative-adversarial-network, dcgan, generative-adversarial-networks
gans-collection.torch
Torch implementation of various types of GAN (e.g. DCGAN, ALI, Context-encoder, DiscoGAN, CycleGAN, EBGAN, LSGAN)
Stars: ✭ 53 (-60.45%)
Mutual labels:  generative-adversarial-network, dcgan, gans
coursera-gan-specialization
Programming assignments and quizzes from all courses within the GANs specialization offered by deeplearning.ai
Stars: ✭ 277 (+106.72%)
Mutual labels:  generative-adversarial-network, dcgan, gans
MNIST-invert-color
Invert the color of MNIST images with PyTorch
Stars: ✭ 13 (-90.3%)
Mutual labels:  generative-adversarial-network, mnist, generative-adversarial-networks
DLSS
Deep Learning Super Sampling with Deep Convolutional Generative Adversarial Networks.
Stars: ✭ 88 (-34.33%)
Mutual labels:  generative-adversarial-network, dcgan, gans
Mimicry
[CVPR 2020 Workshop] A PyTorch GAN library that reproduces research results for popular GANs.
Stars: ✭ 458 (+241.79%)
Mutual labels:  dcgan, gans, generative-adversarial-networks
Pytorch Mnist Celeba Gan Dcgan
Pytorch implementation of Generative Adversarial Networks (GAN) and Deep Convolutional Generative Adversarial Networks (DCGAN) for MNIST and CelebA datasets
Stars: ✭ 363 (+170.9%)
Mutual labels:  generative-adversarial-network, mnist, dcgan
cDCGAN
PyTorch implementation of Conditional Deep Convolutional Generative Adversarial Networks (cDCGAN)
Stars: ✭ 49 (-63.43%)
Mutual labels:  mnist, dcgan, generative-adversarial-networks
DCGAN-Pytorch
A Pytorch implementation of "Deep Convolutional Generative Adversarial Networks"
Stars: ✭ 23 (-82.84%)
Mutual labels:  generative-adversarial-network, mnist, dcgan
Generative models tutorial with demo
Generative Models Tutorial with Demo: Bayesian Classifier Sampling, Variational Auto Encoder (VAE), Generative Adversial Networks (GANs), Popular GANs Architectures, Auto-Regressive Models, Important Generative Model Papers, Courses, etc..
Stars: ✭ 276 (+105.97%)
Mutual labels:  generative-adversarial-network, dcgan, gans
Gans In Action
Companion repository to GANs in Action: Deep learning with Generative Adversarial Networks
Stars: ✭ 748 (+458.21%)
Mutual labels:  generative-adversarial-network, dcgan, gans
Tensorflow Mnist Gan Dcgan
Tensorflow implementation of Generative Adversarial Networks (GAN) and Deep Convolutional Generative Adversarial Netwokrs for MNIST dataset.
Stars: ✭ 163 (+21.64%)
Mutual labels:  generative-adversarial-network, mnist, dcgan
Generative MLZSL
[TPAMI Under Submission] Generative Multi-Label Zero-Shot Learning
Stars: ✭ 37 (-72.39%)
Mutual labels:  generative-adversarial-network, pytorch-implementation
Anime2Sketch
A sketch extractor for anime/illustration.
Stars: ✭ 1,623 (+1111.19%)
Mutual labels:  generative-adversarial-network, gans
Pytorch-conditional-GANs
Implementation of Conditional Generative Adversarial Networks in PyTorch
Stars: ✭ 91 (-32.09%)
Mutual labels:  generative-adversarial-network, dcgan
deep-blueberry
If you've always wanted to learn about deep-learning but don't know where to start, then you might have stumbled upon the right place!
Stars: ✭ 17 (-87.31%)
Mutual labels:  generative-adversarial-network, pytorch-implementation
gans-2.0
Generative Adversarial Networks in TensorFlow 2.0
Stars: ✭ 76 (-43.28%)
Mutual labels:  generative-adversarial-network, mnist
deep-learning-roadmap
my own deep learning mastery roadmap
Stars: ✭ 40 (-70.15%)
Mutual labels:  generative-adversarial-network, gans

Pre-trained GANs, VAEs + classifiers for MNIST / CIFAR10

A simple starting point for modeling with GANs/VAEs in pytorch.

  • includes model class definitions + training scripts
  • includes notebooks showing how to load pretrained nets / use them
  • tested with pytorch 1.0+
  • generates images the same size as the dataset images

mnist

Generates images the size of the MNIST dataset (28x28), using an architecture based on the DCGAN paper. Trained for 100 epochs. Weights here.

data samples dcgan samples vae samples
real_images fake_images-300 fake_images-300

For comparison with a less complicated architecture, I've also included a pre-trained non-convolutional GAN in the mnist_gan_mlp folder, based on code from this repo (trained for 300 epochs).

I've also included a pre-trained LeNet classifier which achieves 99% test accuracy in the mnist_classifier folder, based on this repo.

cifar10

The cifar10 gan is from the pytorch examples repo and implements the DCGAN paper. It required only minor alterations to generate images the size of the cifar10 dataset (32x32x3). Trained for 200 epochs. Weights here.

data samples generated samples
real_images fake_images-300

I've also linked to a pre-trained cifar10 classifier in the cifar10_classifier folder from this repo.

cifar100

Similiar to the above gans, the cifar100 gan here generates 32x32x1 images for generating grayscale images. Trained for 200 epochs. Weights here. There are also weights/code for generating images which are 34x45x1.

data samples generated samples
real_images fake_images-300

reference

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