This commit is contained in:
Varuna Jayasiri
2021-05-07 18:29:03 +05:30
parent 591bfc3714
commit 1c4fb26cde
3 changed files with 44 additions and 16 deletions

View File

@ -7,20 +7,20 @@
<meta name="twitter:card" content="summary"/>
<meta name="twitter:image:src" content="https://avatars1.githubusercontent.com/u/64068543?s=400&amp;v=4"/>
<meta name="twitter:title" content="labml.ai Neural Networks"/>
<meta name="twitter:title" content="labml.ai Annotated PyTorch Paper Implementations"/>
<meta name="twitter:description" content=""/>
<meta name="twitter:site" content="@labmlai"/>
<meta name="twitter:creator" content="@labmlai"/>
<meta property="og:url" content="https://nn.labml.ai/index.html"/>
<meta property="og:title" content="labml.ai Neural Networks"/>
<meta property="og:title" content="labml.ai Annotated PyTorch Paper Implementations"/>
<meta property="og:image" content="https://avatars1.githubusercontent.com/u/64068543?s=400&amp;v=4"/>
<meta property="og:site_name" content="LabML Neural Networks"/>
<meta property="og:type" content="object"/>
<meta property="og:title" content="labml.ai Neural Networks"/>
<meta property="og:title" content="labml.ai Annotated PyTorch Paper Implementations"/>
<meta property="og:description" content=""/>
<title>labml.ai Neural Networks</title>
<title>labml.ai Annotated PyTorch Paper Implementations</title>
<link rel="shortcut icon" href="/icon.png"/>
<link rel="stylesheet" href="./pylit.css">
<link rel="canonical" href="https://nn.labml.ai/index.html"/>
@ -70,7 +70,7 @@
<div class='section-link'>
<a href='#section-0'>#</a>
</div>
<h1><a href="index.html">labml.ai Neural Networks</a></h1>
<h1><a href="index.html">labml.ai Annotated PyTorch Paper Implementations</a></h1>
<p>This is a collection of simple PyTorch implementations of
neural networks and related algorithms.
<a href="https://github.com/lab-ml/nn">These implementations</a> are documented with explanations,

View File

@ -8,7 +8,7 @@
<url>
<loc>https://nn.labml.ai/gan/wasserstein/experiment.html</loc>
<lastmod>2021-05-06T16:30:00+00:00</lastmod>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
@ -20,6 +20,13 @@
</url>
<url>
<loc>https://nn.labml.ai/gan/wasserstein/readme.html</loc>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/wasserstein/experiment.html</loc>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
@ -29,56 +36,77 @@
<url>
<loc>https://nn.labml.ai/gan/original/experiment.html</loc>
<lastmod>2021-05-06T16:30:00+00:00</lastmod>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/original/index.html</loc>
<lastmod>2021-05-05T16:30:00+00:00</lastmod>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/original/readme.html</loc>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/original/experiment.html</loc>
<lastmod>2021-05-06T16:30:00+00:00</lastmod>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/dcgan/experiment.html</loc>
<lastmod>2021-05-06T16:30:00+00:00</lastmod>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/dcgan/index.html</loc>
<lastmod>2021-05-06T16:30:00+00:00</lastmod>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/dcgan/readme.html</loc>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/cycle_gan/experiment.html</loc>
<lastmod>2021-05-05T16:30:00+00:00</lastmod>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/cycle_gan/index.html</loc>
<lastmod>2021-05-05T16:30:00+00:00</lastmod>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/cycle_gan/readme.html</loc>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://nn.labml.ai/gan/index.html</loc>
<lastmod>2021-05-05T16:30:00+00:00</lastmod>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>
@ -379,7 +407,7 @@
<url>
<loc>https://nn.labml.ai/index.html</loc>
<lastmod>2021-04-28T16:30:00+00:00</lastmod>
<lastmod>2021-05-07T16:30:00+00:00</lastmod>
<priority>1.00</priority>
</url>

View File

@ -1,5 +1,5 @@
"""
# [labml.ai Neural Networks](index.html)
# [labml.ai Annotated PyTorch Paper Implementations](index.html)
This is a collection of simple PyTorch implementations of
neural networks and related algorithms.