This commit is contained in:
Varuna Jayasiri
2021-05-07 16:43:07 +05:30
parent bc86802ddc
commit cb6f63f2a1
16 changed files with 546 additions and 29 deletions

View File

@ -0,0 +1,14 @@
"""
---
title: Generative Adversarial Networks
summary: >
A set of PyTorch implementations/tutorials of GANs.
---
# Generative Adversarial Networks
* [Original GAN](original/index.html)
* [GAN with deep convolutional network](dcgan/index.html)
* [Cycle GAN](cycle_gan/index.html)
* [Wasserstein GAN](wasserstein/index.html)
"""

View File

@ -0,0 +1,4 @@
# [Cycle GAN](https://nn.labml.ai/gan/cycle_gan/index.html)
This is a [PyTorch](https://pytorch.org) implementation/tutorial of the paper
[Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks](https://arxiv.org/abs/1703.10593).

View File

@ -0,0 +1,4 @@
# [Deep Convolutional Generative Adversarial Networks - DCGAN](https://nn.labml.ai/gan/dcgan/index.html)
This is a [PyTorch](https://pytorch.org) implementation of paper
[Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks](https://arxiv.org/abs/1511.06434).

View File

@ -0,0 +1,4 @@
# [Generative Adversarial Networks - GAN](https://nn.labml.ai/gan/original/index.html)
This is an annotated implementation of
[Generative Adversarial Networks](https://arxiv.org/abs/1406.2661).

View File

@ -4,6 +4,8 @@ title: Wasserstein GAN (WGAN)
summary: A simple PyTorch implementation/tutorial of Wasserstein Generative Adversarial Networks (WGAN) loss functions.
---
# Wasserstein GAN (WGAN)
This is an implementation of
[Wasserstein GAN](https://arxiv.org/abs/1701.07875).

View File

@ -0,0 +1,4 @@
# [Wasserstein GAN - WGAN](https://nn.labml.ai/gan/wasserstein/index.html)
This is an implementation of
[Wasserstein GAN](https://arxiv.org/abs/1701.07875).