diff --git a/docs/gan/cycle_gan.html b/docs/gan/cycle_gan.html index e03ef7d7c304b985e1b068d96a098c83b8833c65..d281c20fb62574067536bf1437397b54cbec835d 100644 --- a/docs/gan/cycle_gan.html +++ b/docs/gan/cycle_gan.html @@ -72,7 +72,7 @@

Cycle GAN

This is an implementation of paper Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks.

-

I’ve taken pieces of code from https://github.com/eriklindernoren/PyTorch-GAN. +

I’ve taken pieces of code from eriklindernoren/PyTorch-GAN. It is a very good resource if you want to checkout other GAN variations too.

Cycle GAN does image-to-image translation. It trains a model to translate an image from given distribution to another, say images of class A and B diff --git a/labml_nn/gan/cycle_gan.py b/labml_nn/gan/cycle_gan.py index 8099d3b2b2c0afbc929b92dc0c34cd32c4ec13e1..4ca5a9ed756bfb9c375a3055b01931c1f73d77b3 100644 --- a/labml_nn/gan/cycle_gan.py +++ b/labml_nn/gan/cycle_gan.py @@ -11,7 +11,7 @@ summary: > This is an implementation of paper [Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks](https://arxiv.org/abs/1703.10593). -I've taken pieces of code from [https://github.com/eriklindernoren/PyTorch-GAN](https://github.com/eriklindernoren/PyTorch-GAN). +I've taken pieces of code from [eriklindernoren/PyTorch-GAN](https://github.com/eriklindernoren/PyTorch-GAN). It is a very good resource if you want to checkout other GAN variations too. Cycle GAN does image-to-image translation.