Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aniketmaurya/pytorch-gans

PyTorch implementation of GANs (Generative Adversarial Networks). DCGAN, Pix2Pix, CycleGAN, SRGAN
https://github.com/aniketmaurya/pytorch-gans

cyclegan dcgan gan-models gans generative-adversarial-network pix2pix pytorch pytorch-implementation super-resolution superresolution

Last synced: 3 months ago
JSON representation

PyTorch implementation of GANs (Generative Adversarial Networks). DCGAN, Pix2Pix, CycleGAN, SRGAN

Awesome Lists containing this project

README

        

# Implementation of Generative Deep Learning Models in PyTorch and PyTorch Lightning

## DCGAN
- Paper: [Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks](https://arxiv.org/abs/1511.06434)
- Authors: Alec Radford, Luke Metz, Soumith Chintala
- Code (PyTorch): [dcgan.ipynb](DCGAN/dcgan.ipynb) by [Aniket Maurya](http://aniketmaurya.ml)
- Code (Lightning): [dcgan_lightning.ipynb](DCGAN/dcgan_lightning.ipynb) by [Aniket Maurya](http://aniketmaurya.ml)

## Pix2Pix
- Paper: [Image-to-Image Translation with Conditional Adversarial Networks](https://arxiv.org/abs/1611.07004)
- Authors: Phillip Isola, Jun-Yan Zhu, Tinghui Zhou, Alexei A. Efros
- Code (PyTorch): [pix2pix.ipynb](pix2pix/Pix2Pix_pytorch.ipynb) by [Aniket Maurya](http://aniketmaurya.ml)

## To do
- [x] DCGAN
- [x] Pix2Pix
- [ ] StyleGAN
- [ ] CycleGAN
- [ ] SRGAN