mirror of
https://github.com/labmlai/annotated_deep_learning_paper_implementations.git
synced 2025-08-26 08:41:23 +08:00
readme
This commit is contained in:
@ -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)
|
||||
"""
|
4
labml_nn/gan/cycle_gan/readme.md
Normal file
4
labml_nn/gan/cycle_gan/readme.md
Normal 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).
|
4
labml_nn/gan/dcgan/readme.md
Normal file
4
labml_nn/gan/dcgan/readme.md
Normal 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).
|
4
labml_nn/gan/original/readme.md
Normal file
4
labml_nn/gan/original/readme.md
Normal 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).
|
@ -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).
|
||||
|
||||
|
4
labml_nn/gan/wasserstein/readme.md
Normal file
4
labml_nn/gan/wasserstein/readme.md
Normal 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).
|
Reference in New Issue
Block a user