Skip to content

Commit a0679ec

Browse files
committed
title
1 parent 84fab83 commit a0679ec

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@
77

88
<meta name="twitter:card" content="summary"/>
99
<meta name="twitter:image:src" content="https://avatars1.githubusercontent.com/u/64068543?s=400&amp;v=4"/>
10-
<meta name="twitter:title" content="Annotated Research Paper Implementations: Transformers, StyleGAN, Diffusion(DDPM, DDIM), LayerNorm, Nucleus Sampling and more"/>
10+
<meta name="twitter:title" content="Annotated Research Paper Implementations: Transformers, StyleGAN, Stable Diffusion, DDPM/DDIM, LayerNorm, Nucleus Sampling and more"/>
1111
<meta name="twitter:description" content=""/>
1212
<meta name="twitter:site" content="@labmlai"/>
1313
<meta name="twitter:creator" content="@labmlai"/>
1414

1515
<meta property="og:url" content="https://nn.labml.ai/index.html"/>
16-
<meta property="og:title" content="Annotated Research Paper Implementations: Transformers, StyleGAN, Diffusion(DDPM, DDIM), LayerNorm, Nucleus Sampling and more"/>
16+
<meta property="og:title" content="Annotated Research Paper Implementations: Transformers, StyleGAN, Stable Diffusion, DDPM/DDIM, LayerNorm, Nucleus Sampling and more"/>
1717
<meta property="og:image" content="https://avatars1.githubusercontent.com/u/64068543?s=400&amp;v=4"/>
18-
<meta property="og:site_name" content="Annotated Research Paper Implementations: Transformers, StyleGAN, Diffusion(DDPM, DDIM), LayerNorm, Nucleus Sampling and more"/>
18+
<meta property="og:site_name" content="Annotated Research Paper Implementations: Transformers, StyleGAN, Stable Diffusion, DDPM/DDIM, LayerNorm, Nucleus Sampling and more"/>
1919
<meta property="og:type" content="object"/>
20-
<meta property="og:title" content="Annotated Research Paper Implementations: Transformers, StyleGAN, Diffusion(DDPM, DDIM), LayerNorm, Nucleus Sampling and more"/>
20+
<meta property="og:title" content="Annotated Research Paper Implementations: Transformers, StyleGAN, Stable Diffusion, DDPM/DDIM, LayerNorm, Nucleus Sampling and more"/>
2121
<meta property="og:description" content=""/>
2222

23-
<title>Annotated Research Paper Implementations: Transformers, StyleGAN, Diffusion(DDPM, DDIM), LayerNorm, Nucleus Sampling and more</title>
23+
<title>Annotated Research Paper Implementations: Transformers, StyleGAN, Stable Diffusion, DDPM/DDIM, LayerNorm, Nucleus Sampling and more</title>
2424
<link rel="shortcut icon" href="/icon.png"/>
2525
<link rel="stylesheet" href="./pylit.css?v=1">
2626
<link rel="canonical" href="https://nn.labml.ai/index.html"/>
@@ -69,7 +69,7 @@
6969
<div class='section-link'>
7070
<a href='#section-0'>#</a>
7171
</div>
72-
<h1><a href="index.html">Annotated Research Paper Implementations: Transformers, StyleGAN, Diffusion(DDPM, DDIM), LayerNorm, Nucleus Sampling and more</a></h1>
72+
<h1><a href="index.html">Annotated Research Paper Implementations: Transformers, StyleGAN, Stable Diffusion, DDPM/DDIM, LayerNorm, Nucleus Sampling and more</a></h1>
7373
<p>This is a collection of simple PyTorch implementations of neural networks and related algorithms. <a href="https://github.com/labmlai/annotated_deep_learning_paper_implementations">These implementations</a> are documented with explanations, and the <a href="index.html">website</a> renders these as side-by-side formatted notes. We believe these would help you understand these algorithms better.</p>
7474
<p><img alt="Screenshot" src="dqn-light.png"></p>
7575
<p>We are actively maintaining this repo and adding new implementations. <a href="https://twitter.com/labmlai"><img alt="Twitter" src="https://img.shields.io/twitter/follow/labmlai?style=social"></a> for updates.</p>

labml_nn/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
# [Annotated Research Paper Implementations: Transformers, StyleGAN, Diffusion(DDPM, DDIM), LayerNorm, Nucleus Sampling and more](index.html)
2+
# [Annotated Research Paper Implementations: Transformers, StyleGAN, Stable Diffusion, DDPM/DDIM, LayerNorm, Nucleus Sampling and more](index.html)
33
44
This is a collection of simple PyTorch implementations of
55
neural networks and related algorithms.

0 commit comments

Comments
 (0)