latent diffusion models
**Latent diffusion models** is the **diffusion architectures that perform denoising in compressed latent space instead of directly in pixel space** - they reduce compute while retaining high-resolution generation capability.
**What Is Latent diffusion models?**
- **Definition**: A VAE encodes images into latents where a diffusion U-Net performs denoising.
- **Compression Benefit**: Lower spatial resolution in latent space cuts memory and compute demand.
- **Reconstruction Path**: A decoder maps denoised latents back into final pixel images.
- **Conditioning**: Text or other controls are injected through cross-attention in the latent U-Net.
**Why Latent diffusion models Matters**
- **Efficiency**: Makes high-quality text-to-image generation feasible on practical hardware budgets.
- **Scalability**: Supports larger models and higher output resolutions than pixel-space diffusion.
- **Ecosystem Impact**: Foundation of widely used open and commercial image generators.
- **Modularity**: Componentized design enables targeted upgrades to encoder, U-Net, or decoder.
- **Dependency**: Overall quality is bounded by VAE compression and reconstruction fidelity.
**How It Is Used in Practice**
- **Latent Scaling**: Use the correct latent normalization constants during train and inference.
- **Component Versioning**: Keep VAE and U-Net checkpoints compatible when swapping models.
- **Quality Audits**: Evaluate both latent denoising quality and decoder reconstruction artifacts.
Latent diffusion models is **the dominant architecture pattern for efficient text-to-image generation** - latent diffusion models combine scalability and quality when component interfaces are managed carefully.