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

https://github.com/prashanthatp/gans

Implementations of different Generative Adversarial Networks
https://github.com/prashanthatp/gans

cyclegan gans generative-adversarial-networks pix2pix vanilla-gan

Last synced: about 1 month ago
JSON representation

Implementations of different Generative Adversarial Networks

Awesome Lists containing this project

README

          

# Generative Adversarial Networks(GANs)

[![python](https://img.shields.io/badge/Python-3776AB?style=for-the-badge&logo=python&logoColor=white)](https://www.python.org/) [![pytorch](https://img.shields.io/badge/PyTorch-EE4C2C?style=for-the-badge&logo=PyTorch&logoColor=white)](https://pytorch.org/) [![GANs](https://img.shields.io/badge/GANs-4BB749?style=for-the-badge&logo=&logoColor=white)](#References)

This repo includes implementation of different types of GANs

## Results

**Vanilla GAN**

![Vanilla GAN output](gifs/vanilla_gan/vanilla_gan_out_Run_28_2_2021__23_38.gif)

**Pix2Pix**

![Pix2Pix GAN output](gifs/pix2pix/pix2pix_out_Run_2_3_2021__11_29.gif)

## References

[1] Generative Adversarial Nets
```bibtex
@article{goodfellow2014generative,
title={Generative adversarial networks},
author={Goodfellow, Ian J and Pouget-Abadie, Jean and Mirza, Mehdi and Xu, Bing and Warde-Farley, David and Ozair, Sherjil and Courville, Aaron and Bengio, Yoshua},
journal={arXiv preprint arXiv:1406.2661},
year={2014}
}
```

[2] Image-to-Image Translation with Conditional Adversarial Nets
```bibtex
@article{pix2pix2017,
title={Image-to-Image Translation with Conditional Adversarial Networks},
author={Isola, Phillip and Zhu, Jun-Yan and Zhou, Tinghui and Efros, Alexei A},
journal={CVPR},
year={2017}
}
```

[3] Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks
```bibtex
@inproceedings{CycleGAN2017,
title={Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks},
author={Zhu, Jun-Yan and Park, Taesung and Isola, Phillip and Efros, Alexei A},
booktitle={Computer Vision (ICCV), 2017 IEEE International Conference on},
year={2017}
}
```