Papers
Topics
Authors
Recent
Search
2000 character limit reached

Latent Consistency Models (LCMs) Overview

Updated 19 December 2025
  • Latent Consistency Models are generative frameworks that directly map noisy latent codes to clean data by leveraging consistency in a pretrained autoencoder’s latent space.
  • They use consistency distillation to compress multi-step sampling into one or a few steps, achieving an order-of-magnitude speedup in synthesis across various modalities.
  • Enhanced training techniques, such as Cauchy loss, phase-wise parameterizations, and multimodal extensions, improve stability and output quality in LCMs.

A Latent Consistency Model (LCM) is a generative modeling framework that compresses the time-consuming iterative sampling process of latent diffusion models (LDMs) into a direct, few-step mapping from noise to data, operating entirely in the latent space of a pretrained autoencoder. LCMs leverage the consistency model formalism—originally developed for pixel-space generative models—to deliver high-fidelity conditional (and unconditional) synthesis, enabling acceleration by an order of magnitude or more across image, audio, video, shape, and motion domains. Training is achieved by distilling the probability-flow ODE driving the LDM into a direct mapping, and recent research has developed robust training procedures, trajectory-consistent formulations, phase-wise generalizations, and multimodal extensions.

1. Theoretical Foundations and Mathematical Formulation

An LCM operates by learning a parametric map fθ(zt,t)f_{\theta}(z_t, t) that predicts the clean latent z0z_0 from any noisy latent ztz_t at time t[0,T]t \in [0, T], where ztz_t lies on the forward SDE or Markov chain trajectory defined by the underlying LDM:

dzt=μ(t)ztdt+ν(t)dWt,q(ztz0)=N(αtz0,σt2I)dz_t = \mu(t) z_t \, dt + \nu(t) \, dW_t, \quad q(z_t|z_0) = \mathcal N(\alpha_t z_0, \sigma_t^2 I)

The reverse generative process may be expressed as a probability-flow ODE (PF-ODE):

dztdt=μ(t)zt12ν(t)2zlogpt(zt)\frac{dz_t}{dt} = \mu(t) z_t - \frac{1}{2} \nu(t)^2 \nabla_{z} \log p_t(z_t)

LCMs are defined by the self-consistency property:

fθ(zt,t)=fθ(zt,t),t,tf_{\theta}(z_t, t) = f_{\theta}(z_{t'}, t'), \quad \forall t, t'

In other words, fθf_{\theta} collapses any point along the ODE trajectory to the same z0z_0.

A common parameterization exploits the structure of the teacher diffusion model’s denoiser z0z_00:

z0z_01

The training objective is most frequently a consistency distillation loss, e.g.

z0z_02

where z0z_03 is typically generated from the teacher via an ODE solver (DDIM, DPM-Solver, etc.).

2. Consistency Distillation and Algorithmic Pipelines

Consistency distillation compresses the multi-step sampling of diffusion into a one- or few-step neural map. Given a pretrained teacher LDM, the distillation loop is as follows (Luo et al., 2023):

  • Sample z0z_04 from training data and encoding,
  • Generate noisy latent z0z_05,
  • Use the teacher ODE solver to compute z0z_06,
  • Minimize z0z_07,
  • Update z0z_08; update the EMA copy z0z_09.

Sampling with an ztz_t0-step LCM is:

  1. Sample ztz_t1,
  2. Apply ztz_t2 for ztz_t3,
  3. For ztz_t4, optionally reapply noise: ztz_t5.

For pure one-step generation, ztz_t6 directly.

Pseudocode for the core procedure appears across audio (Liu et al., 2024), video (Wang et al., 2023), motion (Dai et al., 2024), and 3D shape (Du et al., 2024) applications; see Table 1.

Domain Input LCM Operation Output
Image ztz_t7 ztz_t8 VAE decoder
Audio ztz_t9 t[0,T]t \in [0, T]0 VAE decoder, vocoder
Video t[0,T]t \in [0, T]1 (latent) 4-step t[0,T]t \in [0, T]2 Video decoder
Shape t[0,T]t \in [0, T]3, coarser t[0,T]t \in [0, T]4 t[0,T]t \in [0, T]5 VAE decoder (points)
Motion t[0,T]t \in [0, T]6 t[0,T]t \in [0, T]7 Motion VAE decoder

3. Training Stability and Robustness Enhancements

Stability and sample quality in latent space require robust training. Key techniques include:

  • Cauchy loss for impulsive outliers: Latent distributions contain large values, producing unstable gradients under standard Pseudo-Huber or L2 losses. Replacing the loss by a Cauchy form,

t[0,T]t \in [0, T]8

effectively limits the influence of large-magnitude errors (Dao et al., 3 Feb 2025).

  • Early-time diffusion regression: For small noise, regression toward the data-implied ground truth (t[0,T]t \in [0, T]9) provides an anchor and reduces variance accumulation.
  • Minibatch optimal transport coupling: Noise-data pairings are matched by an OT problem, decreasing gradient variance in minibatch updates.
  • Normalization strategies: Non-scaling LayerNorm (fixing ztz_t0) prevents internal feature amplification by latent outliers.
  • Phase-wise or trajectory-consistent parameterizations: Trajectory Consistency Distillation (TCD) (Zheng et al., 2024) generalizes the consistency objective to arbitrary ztz_t1 mappings, with error analysis showing improved distillation and discretization scaling; Phased Consistency Models (PCMs) (Wang et al., 2024) split the reverse trajectory into phases, enabling error localization and improved multi-step refinement.

4. Extensions: Trajectory, Multi-Scale, and Plug & Play Inference

Trajectory Consistency Functions (TCF) (Zheng et al., 2024) leverage semi-linear analysis of the PF-ODE in log-SNR coordinates, enabling explicit exponential integrator solutions:

ztz_t2

TCF parameterizes ztz_t3 for arbitrary ztz_t4 pairs, improving error bounds and providing mid-point and higher-order expansions.

Strategic Stochastic Sampling introduces a tunable trade-off between noise injection and determinism, balancing sample fidelity against discretization and estimation error accumulation.

Multi-scale and multimodal LCMs adapt the paradigm to domains beyond images. In 3D, hierarchical multi-scale latent variables are fused by spatial attention and integration modules, and one-step LCMs achieve 100x speedup on ShapeNet (Du et al., 2024). AudioLCM (Liu et al., 2024) employs 1D-convolutional VAEs with transformer backbones, integrating text conditioning via CLAP embeddings. VideoLCM (Wang et al., 2023) adapts LCMs to video-latent spaces for four-step synthesis.

In inverse problem settings, the LATINO framework (Spagnoletti et al., 16 Mar 2025) leverages LCMs as priors within plug-and-play Langevin samplers, using prompt-optimized conditioning via continuous CLIP embeddings.

5. Empirical Evaluation and Application Domains

LCMs consistently accelerate sampling by one to two orders of magnitude. Key empirical results include:

  • Text-to-image: On LAION-5B, 2–4-step LCMs achieve FID ≈ 11–13, CLIP Scores >25, and match or outperform DDIM/DPM-Solver with 20–50 steps (Luo et al., 2023).
  • Video: Four-step VideoLCMs yield smooth, high-fidelity outputs, reducing sampling time from 60 s (DDIM, 50 steps) to 10 s per batch (Wang et al., 2023).
  • Audio: AudioLCM requires only 2 network calls, achieving FAD 1.67 and MOS 77.39, 333× faster than real-time (Liu et al., 2024).
  • Inverse problems: LATINO-PRO achieves FID ≈ 18 and PSNR ≈ 27 dB for super-res ×16 on AFHQ512, over 20× fewer network evaluations than prior methods (Spagnoletti et al., 16 Mar 2025).
  • 3D shape/painting: Multi-scale latent LCMs outperform standard diffusion in both fidelity and speed for 3D point clouds (Du et al., 2024); Consistency² achieves FID 22.74 vs. 28.93 for Text2Tex while running 7.5× faster (Wang et al., 2024).
  • Motion: MotionLCM delivers real-time, controllable motion generation, with FID=0.368 (2 steps) on HumanML3D and 1100× speed-up over previous approaches (Dai et al., 2024).

6. Limitations, Flaws, and Generalizations

Analyses of LCMs have revealed several intrinsic challenges:

  • Inconsistency under varying step counts: LCM outputs may vary qualitatively with the sampling step schedule, compromising multi-step refinement (Wang et al., 2024).
  • CFG brittleness: LCMs distilled with strong classifier-free guidance can become unstable under large guidance scales; negative prompts lose efficacy, and exposure bias appears.
  • Low-step quality drop: With 1–2 steps, LCMs trained with naïve L2/Huber loss produce blur or artifacts; higher-order objectives and adversarial losses can partly address this.
  • Mode coverage: One-step LCMs occasionally lag diffusion baselines in recall, suggesting some loss of diversity (Dao et al., 3 Feb 2025).

Generalizations and remedies:

  • Phased Consistency Models (PCM): By dividing the ODE trajectory into ztz_t5 local phases and enforcing intra-phase consistency, PCMs achieve superior multi-step trade-off, error localization, and guidance flexibility (Wang et al., 2024).
  • Trajectory Consistency Distillation (TCD): Semi-linear ODE analysis and exponential-integrator schemes reduce discretization and parameterization error (Zheng et al., 2024).
  • Improved robust loss strategies and normalization: Outlier-robust losses, adaptive scaling, and non-scaling normalization are essential for stability in unbounded latent representations (Dao et al., 3 Feb 2025).

7. Outlook and Future Directions

Ongoing research aims to further enhance LCMs by:

The LCM paradigm provides a modular, architecture-agnostic approach for accelerating and scaling diffusion-based generative models, with new generalizations and stabilization strategies continuing to emerge across applications.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Latent Consistency Models (LCMs).