A generative modeling framework that learns to map noise to data along continuous trajectories.
Continuous-Time Consistency Models (SCMs) are a class of generative models that extend discrete consistency models into the continuous-time domain. Where standard consistency models learn to map any point along a fixed set of discrete noise levels back to a clean data sample in a single step, SCMs parameterize this mapping over a continuous time variable, allowing the model to enforce self-consistency at every point along a diffusion trajectory rather than only at a finite number of checkpoints. This formulation draws on the theory of stochastic differential equations (SDEs), treating the forward noising process as a continuous flow and training the model to invert it with minimal error at any queried time.
The training objective for an SCM requires that the model's output remain consistent regardless of which time step along the trajectory is used as input — a property enforced through a continuous consistency loss. In practice, this means that for any two time points on the same diffusion path leading to the same clean data point, the model should produce identical or near-identical outputs. This is achieved by minimizing the discrepancy between model predictions at randomly sampled pairs of time steps, using techniques borrowed from score-based generative modeling and flow matching to keep gradients tractable across the continuous time index.
SCMs matter because they address a fundamental tension in generative modeling: the trade-off between sample quality and inference speed. Diffusion models produce high-quality samples but require hundreds of sequential denoising steps. Consistency models collapse this into one or a few steps, and the continuous-time extension makes this collapse more principled and flexible, enabling finer control over the quality-speed trade-off at inference time. Practitioners can query the model at any point along the trajectory, allowing adaptive sampling strategies.
This framework became relevant to the machine learning community around 2023, following the introduction of consistency models by Song et al. and subsequent work extending them to continuous time. SCMs represent an active frontier in efficient deep generative modeling, with applications in image synthesis, audio generation, and scientific simulation where fast, high-fidelity sampling is critical.