This commit is contained in:
Varuna Jayasiri
2021-05-09 15:42:46 +05:30
parent 7526ec4f4c
commit 27da7005a4
6 changed files with 13 additions and 1 deletions

View File

@ -77,6 +77,7 @@
<li><a href="dcgan/index.html">GAN with deep convolutional network</a></li>
<li><a href="cycle_gan/index.html">Cycle GAN</a></li>
<li><a href="wasserstein/index.html">Wasserstein GAN</a></li>
<li><a href="wasserstein/gradient_penalty/index.html">Wasserstein GAN with Gradient Penalty</a></li>
</ul>
</div>
<div class='code'>

View File

@ -106,6 +106,7 @@ implementations.</p>
<li><a href="gan/dcgan/index.html">GAN with deep convolutional network</a></li>
<li><a href="gan/cycle_gan/index.html">Cycle GAN</a></li>
<li><a href="gan/wasserstein/index.html">Wasserstein GAN</a></li>
<li><a href="gan/wasserstein/gradient_penalty/index.html">Wasserstein GAN with Gradient Penalty</a></li>
</ul>
<h4><a href="sketch_rnn/index.html">Sketch RNN</a></h4>
<h4><a href="rl/index.html">Reinforcement Learning</a></h4>

View File

@ -27,6 +27,13 @@
</url>
<url>
<loc>https://nn.labml.ai/gan/wasserstein/gradient_penalty/readme.html</loc>
<lastmod>2021-05-09T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/wasserstein/gradient_penalty/experiment.html</loc>
<lastmod>2021-05-09T16:30:00+00:00</lastmod>
@ -71,7 +78,7 @@
<url>
<loc>https://nn.labml.ai/gan/original/experiment.html</loc>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<lastmod>2021-05-09T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>

View File

@ -40,6 +40,7 @@ implementations.
* [GAN with deep convolutional network](gan/dcgan/index.html)
* [Cycle GAN](gan/cycle_gan/index.html)
* [Wasserstein GAN](gan/wasserstein/index.html)
* [Wasserstein GAN with Gradient Penalty](gan/wasserstein/gradient_penalty/index.html)
#### ✨ [Sketch RNN](sketch_rnn/index.html)

View File

@ -11,4 +11,5 @@ summary: >
* [GAN with deep convolutional network](dcgan/index.html)
* [Cycle GAN](cycle_gan/index.html)
* [Wasserstein GAN](wasserstein/index.html)
* [Wasserstein GAN with Gradient Penalty](wasserstein/gradient_penalty/index.html)
"""

View File

@ -46,6 +46,7 @@ implementations almost weekly.
* [GAN with deep convolutional network](https://nn.labml.ai/gan/dcgan/index.html)
* [Cycle GAN](https://nn.labml.ai/gan/cycle_gan/index.html)
* [Wasserstein GAN](https://nn.labml.ai/gan/wasserstein/index.html)
* [Wasserstein GAN with Gradient Penalty](https://nn.labml.ai/gan/wasserstein/gradient_penalty/index.html)
#### ✨ [Sketch RNN](https://nn.labml.ai/sketch_rnn/index.html)