Jump to content

Latent diffusion model

From Wikipedia, the free encyclopedia
Latent Diffusion Model
Original author(s)CompVis
Repositoryhttps://github.com/CompVis/latent-diffusion
Written inPython
Type
LicenseMIT

The Latent Diffusion Model (LDM)[1] is a diffusion model architecture developed developed by the CompVis (Computer Vision & Learning)[2] group at LMU Munich.[3]

Introduced in 2015, diffusion models (DM) are trained with the objective of removing successive applications of Gaussian noise on training images. The LDM is an improvement on standard DM by performing diffusion modeling in latent space, and by allowing self-attention and cross-attention conditioning.

LDM are widely used in practical diffusion models. The Stable Diffusion 1.1 up to SD 2.1 were based on the LDM architecture.[4]

Version history

[edit]

Diffusion models were introduced in 2015 as a method to learn a model that can sample from a highly complex probability distribution. They used techniques from non-equilibrium thermodynamics, especially diffusion.[5] It was accompanied by a software implementation in Theano.[6]

A 2019 paper proposed the noise conditional score network (NCSN) or score-matching with Langevin dynamics (SMLD).[7] The paper was accompanied by a software package written in PyTorch release on GitHub.[8]

A 2020 paper[9] proposed the Denoising Diffusion Probabilistic Model (DDPM), which improves upon the previous method by variational inference. The paper was accompanied by a software package written in TensorFlow release on GitHub.[10] It was reimplemented in PyTorch by lucidrains.[11][12]

On December 20, 2021, both Stable Diffusion[13] and LDM[14] repositories were published on GitHub. However, they remained roughly the same. Substantial information concerning Stable Diffusion v1 was only added to GitHub on August 10, 2022.[15]

SD 1.1 to 1.4 were particular instantiations of the LDM architecture, released by CompVis on August 2022. There is no "version 1.0". SD 1.1 was a LDM trained on the laion2B-en dataset. SD 1.1 was finetuned to 1.2 on more aesthetic images. SD 1.2 was finetuned to 1.3, 1.4 and 1.5, with 10% of text-conditioning dropped, to improve classifier-free guidance.[16][17] SD 1.5 was released by RunwayML in October 2022.[17]

Architecture

[edit]

While the LDM can work for generating arbitrary data conditional on arbitrary data, for concreteness, we describe its operation in conditional text-to-image generation.

LDM consists of a variational autoencoder (VAE), a modified U-Net, and a text encoder.

The VAE encoder compresses the image from pixel space to a smaller dimensional latent space, capturing a more fundamental semantic meaning of the image. Gaussian noise is iteratively applied to the compressed latent representation during forward diffusion. The U-Net block, composed of a ResNet backbone, denoises the output from forward diffusion backwards to obtain a latent representation. Finally, the VAE decoder generates the final image by converting the representation back into pixel space.[4]

The denoising step can be conditioned on a string of text, an image, or another modality. The encoded conditioning data is exposed to denoising U-Nets via a cross-attention mechanism.[4] For conditioning on text, the fixed, a pretrained CLIP ViT-L/14 text encoder is used to transform text prompts to an embedding space.[3]

Variational Autoencoder

[edit]

To compress the image data, a variational autoencoder (VAE) is first trained on a dataset of images. The encoder part of the VAE takes an image as input and outputs a lower-dimensional latent representation of the image. This latent representation is then used as input to the U-Net. Once the model is trained, the encoder is used to encode images into latent representations, and the decoder is used to decode latent representations back into images.

U-Net

[edit]

The U-Net backbone takes the following kinds of inputs:

  • A latent image array, produced by the VAE encoder. It has dimensions . For example, if it equals , then it can be visualized as a 64-by-64 RGB image. However, the latent image is not intended to be visualized directly.
  • A timestep-embedding vector, which indicates to the backbone about how much noise there is in the image. For example, an embedding of timestep would indicate that the input image is already noiseless, while would indicate a large amount of noise.
  • A modality-embedding vector sequence, which indicates to the backbone about additional conditions for denoising. For example, in text-to-image generation, the text is divided into a sequence of tokens, then encoded by a text encoder, such as a CLIP encoder, before feeding into the backbone. As another example, an input image can be processed by a Vision Transformer into a sequence of vectors, which can then be used to condition the backbone for tasks such as generating an image in the same style.

Each run through the UNet backbone produces a predicted noise vector. This noise vector is scaled down and subtracted away from the latent image array, resulting in a slightly less noisy latent image. The denoising is repeated according to a denoising schedule ("noise schedule"), and the output of the last step is processed by the VAE decoder into a finished image.

A single cross-attention mechanism as it appears in a standard Transformer language model.
Block diagram for the full Transformer architecture. The stack on the right is a standard pre-LN Transformer decoder, which is essentially the same as the SpatialTransformer.

Similar to the standard U-Net, the U-Net backbone used in the SD 1.5 is essentially composed of down-scaling layers followed by up-scaling layers. However, the UNet backbone has additional modules to allow for it to handle the embedding. As an illustration, we describe a single down-scaling layer in the backbone:

  • The latent array and the time-embedding are processed by a ResBlock:
    • The latent array is processed by a convolutional layer.
    • The time-embedding vector is processed by a one-layered feedforward network, then added to the previous array (broadcast over all pixels).
    • This is processed by another convolutional layer, then another time-embedding.
  • The latent array and the embedding vector sequence are processed by a SpatialTransformer, which is essentially a standard pre-LN Transformer decoder without causal masking.
    • In the cross-attentional blocks, the latent array itself serves as the query sequence, one query-vector per pixel. For example, if, at this layer in the UNet, the latent array has dimensions , then the query sequence has vectors, each of which has dimensions. The embedding vector sequence serves as both the key sequence and as the value sequence.
    • When no embedding vector sequence is input, a cross-attentional block defaults to self-attention, with the latent array serving as the query, key, and value.[18]: line 251 

In pseudocode,

def ResBlock(x, time, residual_channels):
    x_in = x
    time_embedding = feedforward_network(time)
    x = concatenate(x, residual_channels)
    x = conv_layer_1(activate(normalize_1(x))) + time_embedding
    x = conv_layer_2(dropout(activate(normalize_2(x))))
    return x_in + x

def SpatialTransformer(x, cond):
    x_in = x
    x = normalize(x)
    x = proj_in(x)
    x = cross_attention(x, cond)
    x = proj_out(x)
    return x_in + x
    
def unet(x, time, cond):
    residual_channels = []
    for resblock, spatialtransformer in downscaling_layers:
        x = resblock(x, time)
        residual_channels.append(x)
        x = spatialtransformer(x, cond)
        
    x = middle_layer.resblock_1(x, time)
    x = middle_layer.spatialtransformer(x, time)
    x = middle_layer.resblock_2(x, time)
    
    for resblock, spatialtransformer in upscaling_layers:
        residual = residual_channels.pop()
        x = resblock(concatenate(x, residual), time)
        x = spatialtransformer(x, cond)
    
    return x

The detailed architecture may be found in.[19][20]

Training and inference

[edit]

The LDM is trained by using a Markov chain to gradually add noise to the training images. The model is then trained to reverse this process, starting with a noisy image and gradually removing the noise until it recovers the original image. More specifically, the training process can be described as follows:

  • Forward diffusion process: Given a real image , a sequence of latent variables are generated by gradually adding Gaussian noise to the image, according to a pre-determined "noise schedule".
  • Reverse diffusion process: Starting from a Gaussian noise sample , the model learns to predict the noise added at each step, in order to reverse the diffusion process and obtain a reconstruction of the original image .

The model is trained to minimize the difference between the predicted noise and the actual noise added at each step. This is typically done using a mean squared error (MSE) loss function.

Once the model is trained, it can be used to generate new images by simply running the reverse diffusion process starting from a random noise sample. The model gradually removes the noise from the sample, guided by the learned noise distribution, until it generates a final image.

See the diffusion model page for details.

See also

[edit]

References

[edit]
  1. ^ Rombach, Robin; Blattmann, Andreas; Lorenz, Dominik; Esser, Patrick; Ommer, Björn (2022). High-Resolution Image Synthesis With Latent Diffusion Models. The IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) 2022. pp. 10684–10695.
  2. ^ "Home". Computer Vision & Learning Group. Retrieved 2024-09-05.
  3. ^ a b "Stable Diffusion Repository on GitHub". CompVis - Machine Vision and Learning Research Group, LMU Munich. 17 September 2022. Archived from the original on January 18, 2023. Retrieved 17 September 2022.
  4. ^ a b c Alammar, Jay. "The Illustrated Stable Diffusion". jalammar.github.io. Archived from the original on November 1, 2022. Retrieved 2022-10-31.
  5. ^ Sohl-Dickstein, Jascha; Weiss, Eric; Maheswaranathan, Niru; Ganguli, Surya (2015-06-01). "Deep Unsupervised Learning using Nonequilibrium Thermodynamics" (PDF). Proceedings of the 32nd International Conference on Machine Learning. 37. PMLR: 2256–2265.
  6. ^ Sohl-Dickstein, Jascha (2024-09-01), Sohl-Dickstein/Diffusion-Probabilistic-Models, retrieved 2024-09-07
  7. ^ ermongroup/ncsn, ermongroup, 2019, retrieved 2024-09-07
  8. ^ Song, Yang; Ermon, Stefano (2019). "Generative Modeling by Estimating Gradients of the Data Distribution". Advances in Neural Information Processing Systems. 32. Curran Associates, Inc.
  9. ^ Ho, Jonathan; Jain, Ajay; Abbeel, Pieter (2020). "Denoising Diffusion Probabilistic Models". Advances in Neural Information Processing Systems. 33. Curran Associates, Inc.: 6840–6851.
  10. ^ Ho, Jonathan (Jun 20, 2020), hojonathanho/diffusion, retrieved 2024-09-07
  11. ^ Wang, Phil (2024-09-07), lucidrains/denoising-diffusion-pytorch, retrieved 2024-09-07
  12. ^ "The Annotated Diffusion Model". huggingface.co. Retrieved 2024-09-07.
  13. ^ "Update README.md · CompVis/stable-diffusion@17e64e3". GitHub. Retrieved 2024-09-07.
  14. ^ "Update README.md · CompVis/latent-diffusion@17e64e3". GitHub. Retrieved 2024-09-07.
  15. ^ "stable diffusion · CompVis/stable-diffusion@2ff270f". GitHub. Retrieved 2024-09-07.
  16. ^ "CompVis (CompVis)". huggingface.co. 2023-08-23. Retrieved 2024-03-06.
  17. ^ a b "runwayml/stable-diffusion-v1-5 · Hugging Face". huggingface.co. Archived from the original on September 21, 2023. Retrieved 2023-08-17.
  18. ^ "latent-diffusion/ldm/modules/attention.py at main · CompVis/latent-diffusion". GitHub. Retrieved 2024-09-09.
  19. ^ "U-Net for Stable Diffusion". U-Net for Stable Diffusion. Retrieved 2024-08-31.
  20. ^ "Transformer for Stable Diffusion U-Net". Transformer for Stable Diffusion U-Net. Retrieved 2024-09-07.

Further reading

[edit]