> For the complete documentation index, see [llms.txt](https://aisuko.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aisuko.gitbook.io/wiki/ai-techniques/stable-diffusion/vae.md).

# VAE

## Variational Autoencoder

{% hint style="info" %}
It is done using a technique called the <mark style="color:red;">**variational autoencoder. (VAE file)**</mark>
{% endhint %}

The VAE neural network has two parts:

* An encoder
* A decoder

The encoder compresses an image to a lower dimensional representation in the latent space. The decoder restores the image from the latent space.

<figure><img src="/files/sebGjkyl1WEwfOqeT8xP" alt=""><figcaption><p>Variational autoencoder transforms the image to and from the latent space.</p></figcaption></figure>

*<mark style="color:red;">**The latent space of the Stable Diffusion model is 4x64x64, 48 times smaller than the image pixel space**</mark>*. All the *<mark style="color:green;">**forward and reverse diffusions**</mark>* we talked about are done in the latent space.

And during training, *<mark style="color:red;">**instead of generating a noisy image, it generates a random tensor in latent space**</mark>* (latent noise). Instead of corrupting an image with noise, it corrupts the representation of the image in latent space with the latent noise. *<mark style="color:red;">**The reason for doing that is it is a lot faster since the latent space is smaller.**</mark>*
