# Improving Consistency Models with Generator-Augmented Flows
Thibaut Issenhuth 1 Sangchul Lee 2 Ludovic Dos Santos 1 Jean-Yves Franceschi 1 Chansoo Kim 2 3 Alain Rakotomamonjy 1 4
# Abstract
Consistency models imitate the multi-step sampling of score-based diffusion in a single forward pass of a neural network. They can be learned in two ways: consistency distillation and consistency training. The former relies on the true velocity field of the corresponding differential equation, approximated by a pre-trained neural network. In contrast, the latter uses a single-sample Monte Carlo estimate of this velocity field. The related estimation error induces a discrepancy between consistency distillation and training that, we show, still holds in the continuous-time limit. To alleviate this issue, we propose a novel flow that transports noisy data towards their corresponding outputs derived from a consistency model. We prove that this flow reduces the previously identified discrepancy and the noise-data transport cost. Consequently, our method not only accelerates consistency training convergence but also enhances its overall performance. The code is available at: github.com/thibautissenhuth/consistency GC.
proach is consistency models (Song et al., 2023; Song and Dhariwal, 2024). Consistency models lead to high-quality one-step generators, that can be trained either by distillation of a pre-trained velocity field (consistency distillation), or as standalone generative models (consistency training) by approximating the velocity field through a one-sample Monte Carlo estimate.
The corresponding estimation error naturally induces a discrepancy between consistency distillation and training. While Song et al. (2023) hinted that it would resolve in the continuous-time limit, we show that this discrepancy persists in both the gradients and values of the loss functions. Interestingly, this discrepancy vanishes when the difference between the target velocity field and its Monte-Carlo approximation approaches zero. However, this is not the case with the independent coupling (IC) between data and noise used to construct the standard estimate. It is unclear how to improve this one-sample estimate without access to the true underlying diffusion model.
# 1. Introduction
A large family of diffusion (Ho et al., 2020), score-based (Song et al., 2021; Karras et al., 2022), and flow models (Liu et al., 2023; Lipman et al., 2023) have emerged as stateof-the-art generative models for image generation. Since they are costly to use at inference time – requiring several neural function evaluations –, many distillation techniques have been explored (Salimans and Ho, 2022; Meng et al., 2023; Sauer et al., 2023). One of the most remarkable ap-
The approach we adopt in this paper to alleviate this issue involves altering the velocity field – thereby changing the target flow – to reduce the variance of its one-sample estimator. One possible solution to this problem is to resort to optimal transport (OT) to learn on a deterministic coupling. OT has been succesfully adopted in diffusion (Li et al., 2024), consistency (Dou et al., 2024), and flow matching (Pooladian et al., 2023) models. However, due to the prohibitive cubic complexity of OT solvers (e.g. Hungarian matching algorithm), such methods need to be applied at the minibatch level. This incurs an OT approximation error (Fatras et al., 2021; Sommerfeld et al., 2019) and stochasticity of the data-noise coupling, thus not solving the consistency training issue.
In our approach, we propose to use the consistency model, assumed to be an approximation of the target diffusion flow, to construct additional trajectories. The consistency model serves as a proxy to reduce the expected deviation between the velocity field and its estimator. More precisely, from an intermediate point computed from an IC, we let the consistency model predict the corresponding endpoint, supposedly close to the data distribution. This predicted endpoint is coupled to the same original noise vector, defining a generatoraugmented coupling (GC). We show empirically that the resulting generator-augmented flow presents compelling properties for training consistency models, in particular a reduced deviation between the velocity field and its estimator, and decreased transport costs – as supported by theoretical and empirical evidence. This can be observed in Figure 1. From this, we derive practical algorithms to train consistency models with generator-augmented flows, leading to improved performance and faster convergence compared to standard and OT-based consistency models.

Figure 1. Comparison of the probability flow ODE (PF-ODE) and generator-augmented flows (GC): target data is a mixture of two Dirac delta functions, and GC is computed with a closed-form generator. In the background, we observe the density of probability paths. White arrows are ODE trajectories associated to the velocity field. Blue lines are sample paths from IC in (a) and from GC in (b). Trajectories start from random intermediate points $\star$ . On this example, GC sample paths appear more aligned to the velocity field.
Let us summarize our contributions below.
• We prove that in the continuous-time limit consistency training and consistency distillation loss function converge to different values and we provide a closed-form expression of this discrepancy.
• We propose a novel type of flows that we denote generator-augmented flows. It relies on generatoraugmented coupling (GC) that can be used to train a consistency model.
• We provide theoretical and empirical insights into the advantages of GC. We show that generator-augmented flows have smaller discrepancy to consistency distillation than IC consistency training, and that they reduce data-noise transport costs.
• We derive practical ways to train consistency models with GC. Our approach based on a joint learning strategy leads to faster convergence and improves the performance compared to the base model and OT-based approaches on image generation benchmarks.
Notation. We consider an empirical data distribution $p _ { \star }$ and a noise distribution $p _ { z }$ (e.g. Gaussian), both defined on $\mathbb { R } ^ { d }$ . We denote by $q$ a joint distribution of samples from $p _ { \star }$ and $p _ { z }$ . We equip $\mathbb { R } ^ { d }$ with the dot product $\langle \mathbf { x } , \mathbf { y } \rangle = \mathbf { x } ^ { \top } \mathbf { y }$ and write $\lVert \mathbf { x } \rVert = \langle \mathbf { x } , \mathbf { x } \rangle ^ { 1 / 2 }$ for the Euclidean norm of $\mathbf { x }$ . We use a distance function $\mathcal { D } \colon { \mathbb { R } ^ { d } } \times { \mathbb { R } ^ { d } } \to [ 0 , \infty )$ to measure the distance between two points from $\mathbb { R } ^ { d }$ . sg denotes the stop-gradient operator.
In consistency models, we consider diffusion processes of the form $\mathbf { x } _ { t } = \mathbf { x } _ { \star } + \sigma _ { t } \mathbf { z }$ , where $\mathbf { x } _ { \star } \sim p _ { \star }$ , $\mathbf { z } \sim p _ { z }$ , and $\sigma _ { t }$ is monotonically increasing for $t \in [ 0 , T ]$ , where $T \in \mathbb { R } _ { + }$ We denote the distribution of $\mathbf { x } _ { t }$ by $p ( \mathbf { x } _ { t } )$ , or simply $p _ { t }$ Conditional distributions or finite-dimensional joint distributions of $\mathbf { x } _ { t }$ ’s are denoted similarly. When considering a discrete formulation with $N$ intermediate timesteps, we denote the intermediate points as $\mathbf { x } _ { t _ { i } } = \mathbf { x } _ { \star } + \sigma _ { t _ { i } } \mathbf { z }$ , where $t _ { i }$ is strictly increasing for $i \in \{ 0 , \ldots , N \}$ , with $t _ { 0 } = 0$ and $t _ { N } = T$ . The values of $\sigma _ { 0 }$ and $\sigma _ { T }$ are chosen to be sufficiently small and large, respectively, so that $p _ { 0 } \approx p _ { \star }$ and $p _ { T } \approx \mathcal { N } ( 0 , \sigma _ { T } ^ { 2 } \mathbf { I } )$ .
# 2. Consistency Distillation Versus Training
In this section, we provide the required background on diffusion and consistency models (Sections 2.1 and 2.2), then discuss the discrepancy between consistency distillation and consistency training (Section 2.3) which we theoretically characterize in continuous-time.
# 2.1. Flow and Score-Based Diffusion Models
Score-based diffusion models (Ho et al., 2020; Song et al., 2021) can generate data from noise via a multi-step process consisting in numerically solving either a stochastic differential equation (SDE), or equivalently an ordinary differential equation (ODE). Although SDE solvers generally exhibit superior sampling quality, ODEs have desirable properties. Most notably, they define a deterministic mapping from noise to data. Recently, Liu et al. (2023) and Lipman et al. (2023) generalize diffusion to flow models, which are defined by the following probability flow ODE (PF-ODE):
$$
\mathrm { d } \mathbf { x } = \mathbf { v } _ { t } ( \mathbf { x } ) \mathrm { d } t ,
$$
where $\mathbf v _ { t } ( \mathbf x ) = \mathbb { E } [ \dot { \mathbf { x } } _ { t } | \mathbf x _ { t } = \mathbf x ]$ is the velocity field. Note that $\dot { \mathbf { x } } _ { t }$ is defined as the random variable $\begin{array} { r } { \dot { \mathbf { x } } _ { t } = \frac { \mathrm { d } ( \mathbf { x } _ { \star } + \sigma _ { t } \mathbf { z } ) } { \mathrm { d } t } = \dot { \sigma } _ { t } \mathbf { z } , } \end{array}$ and is not to be confused with the time-derivative of the ODE, $\mathbf { v } _ { t }$ .
In the context of consistency models (Song et al., 2023; Song and Dhariwal, 2024), the most common choice is $\mathbf { v } _ { t } ( \mathbf { x } ) \ = \ - \dot { \sigma } _ { t } \sigma _ { t } \nabla _ { \mathbf { x } } \log p _ { t } ( \mathbf { x } ) \mathrm { d } t$ , in particular the EDM formulation (Karras et al., 2022) where $\sigma _ { t } = t$ and thus $\mathbf { v } _ { t } ( \mathbf { x } ) \ = \ - t \nabla _ { \mathbf { x } } \log p _ { t } ( \mathbf { x } )$ . Here, $\nabla _ { \mathbf { x } } \log { p _ { t } }$ , a.k.a. the score function, can be approximated with a neural network ${ \bf s } _ { \phi } ( { \bf x } , t )$ (Vincent, 2011; Song and Ermon, 2019).
# 2.2. Consistency Models
Numerically solving an ODE is costly because it requires multiple expensive evaluations of the velocity function. To alleviate this issue, Song et al. (2023) propose training a consistency model $f _ { \theta }$ , which learns the output map of the PF-ODE, i.e. its flow, such that:
$$
f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) = \mathbf { x } _ { 0 } ,
$$
for all $( \mathbf { x } _ { t } , \sigma _ { t } ) \in \mathbb { R } ^ { d } \times [ \sigma _ { 0 } , \sigma _ { T } ]$ that belong to the trajectory of the PF-ODE ending at $\left( \mathbf { x } _ { 0 } , \sigma _ { 0 } \right)$ .
Equation (2) is equivalent to $( i )$ enforcing the boundary condition $f _ { \theta } ( \mathbf { x } _ { 0 } , \sigma _ { 0 } ) = \mathbf { x } _ { 0 }$ , and $( i i )$ ensuring that $f _ { \theta }$ has the same output for any two samples of a single PF-ODE trajectory – the consistency property. $( i )$ is naturally satisfied by the following model parametrization:
$$
\begin{array} { r } { \pmb { f } _ { \theta } ( \mathbf { x } _ { t _ { i } } , \sigma _ { t _ { i } } ) = c _ { \mathrm { s k i p } } ( \sigma _ { t _ { i } } ) \mathbf { x } _ { t _ { i } } + c _ { \mathrm { o u t } } ( \sigma _ { t _ { i } } ) \pmb { F } _ { \theta } ( \mathbf { x } _ { t _ { i } } , \sigma _ { t _ { i } } ) , } \end{array}
$$
where $\begin{array} { r } { c _ { \mathrm { s k i p } } ( \sigma ) = \frac { \sigma _ { d } ^ { 2 } } { \sigma _ { d } ^ { 2 } + ( \sigma - \sigma _ { 0 } ) ^ { 2 } } } \end{array}$ σ dσ2+(σ−σ0)2 , cout(σ) = σ√d·(σ−σ0)σ2+σ2 , $\sigma _ { d } ^ { 2 }$ the variance of data, and $F _ { \theta }$ is a neural network. This ensures $c _ { \mathrm { s k i p } } ( 0 ) = 1$ , $c _ { \mathrm { o u t } } ( 0 ) = 0$ . (ii) is achieved by minimizing the distance between the outputs of two same-trajectory consecutive samples using the consistency loss:
$$
\begin{array} { r l } & { \mathcal { L } _ { \mathrm { C D } } ( \theta ) = \mathbb { E } _ { q _ { \mathrm { I } } ( \mathbf { x } _ { \star } , \mathbf { z } ) , p ( \mathbf { x } _ { t _ { i + 1 } } \mid \mathbf { x } _ { \star } , \mathbf { z } ) } } \\ & { \quad \Big [ \lambda ( \sigma _ { t _ { i } } ) \mathcal { D } \Big ( \sec ( f _ { \theta } ( \mathbf { x } _ { t _ { i } } ^ { \Phi } , \sigma _ { t _ { i } } ) \Big ) , f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) \Big ) \Big ] , } \end{array}
$$
where $( \mathbf { x } _ { \star } , \mathbf { z } )$ is sampled from the independent coupling $q _ { \mathrm { I } } ( \mathbf { x } _ { \star } , \mathbf { z } ) = p _ { \star } ( \mathbf { x } _ { \star } ) p _ { z } ( \mathbf { z } )$ , $i$ is an index sampled uniformly at random from $\{ 0 , 1 , \ldots , N - 1 \}$ , $\mathbf { x } _ { t _ { i + 1 } } = \mathbf { x } _ { \star } + \sigma _ { t _ { i + 1 } } \mathbf { z }$ and $\mathbf { x } _ { t _ { i } } ^ { \Phi }$ is computed by discretizing the PF-ODE with the Euler scheme as follows:
$$
\mathbf { x } _ { t _ { i } } ^ { \Phi } = \Phi ( \mathbf { x } _ { t _ { i + 1 } } , t _ { i + 1 } ) = \mathbf { x } _ { t _ { i + 1 } } + ( t _ { i } - t _ { i + 1 } ) \mathbf { v } _ { t _ { i + 1 } } ( \mathbf { x } _ { t _ { i + 1 } } ) .
$$
This loss can be used to distill a score model into $f _ { \theta }$ .
In the case of consistency training, Song et al. (2023) circumvent the lack of a score function by noting that $\mathbf { v } _ { t _ { i + 1 } } ( \mathbf { x } ) = \mathbb { E } [ \dot { \mathbf { x } } _ { t _ { i + 1 } } | \mathbf { x } _ { t _ { i + 1 } } = \mathbf { x } ]$ . In light of this, its singlesample Monte Carlo estimate $\dot { \mathbf { x } } _ { t _ { i + 1 } }$ is used instead in Equation (5) to replace the intractable $\dot { \mathbf { x } } _ { t _ { i } } ^ { \Phi }$ by $\mathbf { x } _ { t _ { i } } = \mathbf { x } _ { \star } + \sigma _ { t _ { i } } \mathbf { z }$ in the consistency loss:
$$
\begin{array} { r l } & { \mathcal { L } _ { \mathrm { C T } } ( \theta ) = \mathbb { E } _ { q _ { \mathrm { I } } ( \mathbf { x } _ { \star } , \mathbf { z } ) , p ( \mathbf { x } _ { t _ { i } } , \mathbf { x } _ { t _ { i + 1 } } \mid \mathbf { x } _ { \star } , \mathbf { z } ) } } \\ & { \quad \Big [ \lambda ( \sigma _ { t _ { i } } ) \mathcal { D } \Big ( \mathrm { s g } \big ( f _ { \theta } ( \mathbf { x } _ { t _ { i } } , \sigma _ { t _ { i } } ) \big ) , f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) \Big ) \Big ] . } \end{array}
$$
# 2.3. Discrepancy Between Consistency Training and Distillation and Velocity Field Estimation
Naturally, replacing $\mathbf { v } _ { t }$ by its single-sample estimate $\dot { \bf x } _ { t }$ makes consistency training deviate from consistency distillation in discrete time. Still, Song et al. (2023, Theorems 2 and 6) suggest that this discrepancy disappears in continuous-time since $\begin{array} { r } { \mathcal { L } _ { \mathrm { C T } } ( \theta ) = \mathcal { L } _ { \mathrm { C D } } ( \theta ) + o ( 1 / N ) } \end{array}$ and the corresponding gradients are equal in some cases. This equality is then used in work of Lu and Song (2024), concurrent to ours, to train continuous-time consistency models at the cost of an elaborate architectural design. Without disproving these results, we find that scaling issues and lack of generality soften the claim of a closed gap between consistency training and distillation.
Indeed, we provide in the following theorem a thorough theoretical comparison of $\mathcal { L } _ { \mathrm { C T } }$ and $\mathcal { L } _ { \mathrm { C D } }$ . We first prove that they converge to different values in the continuous-time limit. The difference is captured by a regularization term that depends on the discrepancy between the velocity field and its estimate. Moreover, we show that the limits of the scaled gradients do not coincide in the general case, except when the (asymptotic) quadratic loss is used. The proof, and further discussion on why this discrepancy did not appear in Song et al. (2023), can be found in Appendix A.1.
Theorem 1 (Discrepancy between consistency distillation and consistency training objectives). Assume that the distance function is given by $\mathcal { D } ( \mathbf { x } , \mathbf { y } ) = \varphi ( \| \mathbf { x } - \mathbf { y } \| )$ for a continuous convex function $\varphi : [ 0 , \infty ) [ 0 , \infty )$ with $\varphi ( x ) \sim C x ^ { \alpha }$ as $x \to 0 ^ { + }$ for some $C > 0$ and $\alpha \geq 1$ , and that the timesteps are equally spaced, i.e., $\begin{array} { r } { t _ { i } ~ = ~ \frac { i T } { N } } \end{array}$ . Furthermore, assume that the Jacobian ∂fθ does not vanish identically. Then the following assertions hold:
$( i )$ The scaled consistency losses $N ^ { \alpha } { \mathcal { L } } _ { \mathrm { C D } } ( \theta )$ and $N ^ { \alpha } { \mathcal { L } } _ { \mathrm { C T } } ( \theta )$ converge as $N \infty$ . Moreover, the minimization objectives corresponding to these limiting scaled consistency losses are not equivalent, and their difference is given by:
$$
\operatorname* { l i m } _ { N \to \infty } N ^ { \alpha } \left[ { \mathcal { L } } _ { \mathrm { C T } } ( \theta ) - { \mathcal { L } } _ { \mathrm { C D } } ( \theta ) \right] = C T ^ { \alpha - 1 } { \mathcal { R } } ( \theta ) ,
$$
where ${ \mathcal { R } } ( \theta )$ is defined by
$$
\mathcal { R } ( \theta ) = \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } \left[ \left\| \partial _ { \mathrm { C T } } \pmb { f } _ { \theta } \right\| ^ { \alpha } - \left\| \partial _ { \mathrm { C D } } \pmb { f } _ { \theta } \right\| ^ { \alpha } \right] \mathrm { d } t
$$
and satisfies $\mathcal { R } ( \theta ) > 0$ , with
$$
\partial _ { \mathrm { C T } } \mathbf { \mathcal { f } } _ { \theta } = \frac { \partial \mathbf { f } _ { \theta } } { \partial \sigma } ( \mathbf { x } _ { t } , \sigma _ { t } ) \boldsymbol { \dot { \sigma } } _ { t } + \frac { \partial \mathbf { f } _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \dot { \mathbf { x } } _ { t } ,
$$
$$
\partial _ { \mathrm { C D } } \mathbf { f } _ { \theta } = \frac { \partial f _ { \theta } } { \partial \sigma } ( \mathbf { x } _ { t } , \sigma _ { t } ) \boldsymbol { \dot { \sigma } } _ { t } + \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) .
$$
In particular, if $\alpha = 2$ ,
$$
\mathcal { R } ( \theta ) = \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } \bigg [ \bigg \| \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \left( \dot { \mathbf { x } } _ { t } - \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) \right) \bigg \| ^ { 2 } \bigg ] \mathrm { d } t .
$$
(ii) The scaled gradient $N ^ { \alpha - 1 } \nabla _ { \theta } \mathcal { L } _ { \mathrm { C D } } ( \theta )$ and $N ^ { \alpha - 1 } \nabla _ { \theta } \mathcal { L } _ { \mathrm { C T } } ( \theta )$ converge as $N ~ ~ \infty$ . Moreover, i ${ } ^ { c } \alpha \neq 2$ , then their respective limits are not identical as functions of $\theta$ :
$$
\operatorname* { l i m } _ { N \to \infty } N ^ { \alpha - 1 } \nabla _ { \theta } \mathcal { L } _ { \mathrm { C T } } ( \theta ) \neq \operatorname* { l i m } _ { N \to \infty } N ^ { \alpha - 1 } \nabla _ { \theta } \mathcal { L } _ { \mathrm { C D } } ( \theta ) .
$$
This theorem reveals that the optimization problems of consistency training and distillation differ not only in discrete time but also in continuous-time. It even highlights a discrepancy between, firstly, the limiting gradients in continuous-time – although they are equal for $\alpha = 2 -$ and, secondly, the gradients of the limiting losses, which differ because of ${ \mathcal { R } } ( \theta )$ , even when $\alpha = 2$ .
This analysis shows the importance of employing probability paths whose sample path derivatives $\dot { \mathbf { x } } _ { t }$ are aligned with the velocity field ${ \bf v } _ { t } ( { \bf x } _ { t } )$ . In particular, if a diffusion process $\mathbf { x } _ { t }$ satisfies $\dot { \mathbf { x } } _ { t } = \mathbf { v } _ { t } ( \mathbf { x } _ { t } )$ , we have $\mathcal { R } ( \theta ) = 0$ and equal gradients for all $\alpha \geq 1$ . Hence, for such $\mathbf { x } _ { t }$ , consistency training and consistency distillation would be reconciled both in discrete time and in the continuous-time limit.
However, it is unclear how to directly improve the singlesample estimation $\dot { \bf x } _ { t }$ of ${ \bf v } _ { t } ( { \bf x } _ { t } )$ . In particular, increasing the number of samples per point $\mathbf { x } _ { t }$ to reduce its variance is not tractable, as it requires sampling from the inverse diffusion process $p ( \mathbf { x } _ { \star } | \mathbf { x } _ { t } )$ . Therefore, we adopt an alternative approach to alleviate the discrepancy identified in this section, which involves altering the velocity field – thereby changing the target flow – to reduce the variance of its one-sample estimator. This approach is reminiscent of recent work tackling the data-noise coupling that we discuss in the following section.
# 3. Reducing the Discrepancy with Data-Noise Coupling
Beyond independent coupling (IC). From Section 2.2, it appears that $\dot { \mathbf { x } } _ { t }$ is computed through an IC $: q _ { \mathrm { I } } = p _ { \star } ( \mathbf { x } _ { \star } ) p _ { z } ( \mathbf { z } )$ of data and noise, in a similar fashion to flow matching (Lipman et al., 2023; Kingma and Gao, 2024). Making correlated choices of data and noise beyond IC could then help align $\dot { \bf x } _ { t }$ and ${ \bf v } _ { t } ( { \bf x } _ { t } )$ , thereby resolving the discrepancy from the previous section.
The reliance on IC in consistency and flow models is increasingly recognized as a limiting factor. Recent advancements suggest that improved coupling mechanisms could enhance both training efficiency and the quality of generated samples in flow matching (Liu et al., 2023; Pooladian et al., 2023) and diffusion models (Li et al., 2024). By reducing the variance in gradient estimation, enhanced coupling can accelerate training. Additionally, improved coupling could decrease transport costs and straighten trajectories, yielding better-quality samples. In a different context, ReFlow (Liu et al., 2023) leverages couplings provided by the ODE solver in a flow framework, and demonstrates that it reduced transport costs. Moreover, Lee et al. (2023) propose to learn an encoder from data to noise, and use this encoder as a way to construct a coupling when training a flow model.
# Couplings based on optimal transport (OT) solvers.
OT is a particularly appealing solution for our alignment problem. Indeed, if we consider a quadratic cost and distributions with bounded supports, OT is a no-collision transport map (Nurbekyan et al., 2020), i.e. $\mathbf { x } _ { t }$ can be sampled by a unique pair of points $( \mathbf { x } _ { \star } , \mathbf { z } )$ . Thus $\dot { \mathbf { x } } _ { t } = \mathbf { v } _ { t } ( \mathbf { x } _ { t } )$ , implying $\mathcal { R } ( \theta ) = 0$ in Theorem 1. Several approaches have precisely targeted the reduction of transport cost in flow and consistency models.
Pooladian et al. (2023) have more directly explored OT coupling within the framework of flow matching models. They show that deterministic and non-crossing paths enabled by OT with infinite batch size lowers the variance of gradient estimators. Experimentally, they assess the efficacy of OT solvers, such as Hungarian matching and Sinkhorn algorithms, in coupling batches of noise and data points. Dou et al. (2024) have successfully adopted this approach in consistency models, while Li et al. (2024) applied OT to diffusion models. However, due to the prohibitive cubic complexity of OT solvers, OT has to be applied by minibatch for matching samples $( \mathbf { x } _ { \star } , \mathbf { z } )$ . Besides an OT approximation error, this incurs the loss of the no-collision property, making ${ \mathcal { R } } ( \theta )$ non-zero in real use-cases. Another line of works using OT tools with score-based models relies on the Schrodinger Bridge formulation (¨ De Bortoli et al., 2021; Shi et al., 2023; Korotin et al., 2024; Tong et al., 2024), which has mostly proven benefits on transfer tasks.
Our approach. In this paper, we use a consistency model as a proxy of the flow of a diffusion process to reduce transport costs. While not fully solving the alignment issue, we will show that our method present reduced transport costs and better alignment than dedicated OT-based methods.
# 4. Consistency Models with Generator-Augmented Flows
Here, we introduce our method, denoted as generatoraugmented flows, which relies on a generator-augmented coupling (GC). We capitalize on the true diffusion flow $\mathring { f }$ (i.e. an ideal consistency model) to map noisy points towards the PF-ODE solution. We present theoretical and empirical evidences that GC not only reduces the data-noise transport cost but also narrows the gap between consistency distillation and consistency training. We will discuss how to train GC consistency models jointly with $\mathring { f }$ in Section 5.
# 4.1. Generator-Augmented Coupling (GC): Definition and Training Loss
The solution proposed in this work involves harnessing the diffusion flow, computed from a consistency model, to create a novel form of coupling. The idea is to leverage the properties and accumulated knowledge within an ideal consistency model, $\mathring { f }$ , to construct pairs of points. To achieve this, we first sample an intermediate point, which is done as usual by sampling $\mathbf { x } _ { \star } \sim p _ { \star }$ and $\mathbf { z } \sim p _ { z }$ using the IC between the two distributions, and then predict the data point $\hat { \mathbf { x } } _ { t _ { i } }$ via the consistency model:
$$
\begin{array} { r } { ( \mathbf { x } _ { \star } , \mathbf { z } ) \sim q _ { \mathrm { I } } ; \quad \mathbf { x } _ { t _ { i } } = \mathbf { x } _ { \star } + \sigma _ { t _ { i } } \mathbf { z } ; \quad \hat { \mathbf { x } } _ { t _ { i } } = \mathrm { s g } ( \hat { f } ( \mathbf { x } _ { t _ { i } } , \sigma _ { t _ { i } } ) ) . } \end{array}
$$
Although $\hat { \mathbf { x } } _ { t _ { i } }$ depends on the timestep $t _ { i }$ , it is important to note that it (supposedly) follows the distribution $p _ { 0 }$ This $\hat { \mathbf { x } } _ { t _ { i } }$ is coupled with $\mathbf { z }$ , thereby defining our generatoraugmented coupling $( \mathrm { G C } ) q$ , which we use to construct the pair of points $\left( \tilde { \mathbf { x } } _ { t _ { i } } , \tilde { \mathbf { x } } _ { t _ { i + 1 } } \right)$ :
$$
\left( \hat { \bf x } _ { t _ { i } } , { \bf z } \right) \sim q ; \quad \tilde { \bf x } _ { t _ { i } } = \hat { \bf x } _ { t _ { i } } + \sigma _ { t _ { i } } { \bf z } ; \quad \tilde { \bf x } _ { t _ { i + 1 } } = \hat { \bf x } _ { t _ { i } } + \sigma _ { t _ { i + 1 } } { \bf z } .
$$
These intermediate points can serve to define a new consistency training loss:
$$
\begin{array} { r l } & { \mathcal { L } _ { \mathrm { G C } } ( \theta ) = \mathbb { E } _ { q ( \hat { \mathbf { x } } _ { t _ { i } } , \mathbf { z } ) , p ( \tilde { \mathbf { x } } _ { t _ { i } } , \tilde { \mathbf { x } } _ { t _ { i + 1 } } | \hat { \mathbf { x } } _ { t _ { i } } , \mathbf { z } ) } } \\ & { \quad \Big [ \lambda ( \sigma _ { t _ { i } } ) \mathcal { D } \Big ( \mathrm { s g } ( f _ { \theta } ( \tilde { \mathbf { x } } _ { t _ { i } } , \sigma _ { t _ { i } } ) ) , f _ { \theta } ( \tilde { \mathbf { x } } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) \Big ) \Big ] . } \end{array}
$$

Figure 2. Comparison of $\tilde { \mathcal { R } } _ { \mathrm { I C } }$ , $\tilde { \mathcal { R } } _ { \mathrm { b a t c h - O T } }$ , and $\tilde { \mathcal { R } } _ { \mathrm { G C } }$ on CIFAR-10. GC exhibits lower values of this quantity for all $\sigma _ { t }$ .
Generator-augmented trajectories satisfy the boundary conditions of diffusion processes. We note the two following important properties of the distribution of $\tilde { \mathbf { x } } _ { t }$ :
$$
p ( \tilde { \mathbf { x } } _ { 0 } ) = p ( \mathbf { x } _ { 0 } ) \approx p _ { \star } , \quad p ( \tilde { \mathbf { x } } _ { T } ) \approx p ( \mathbf { x } _ { T } ) \approx p ( \sigma _ { T } \mathbf { z } ) .
$$
The first property is achieved thanks to the boundary condition of the consistency model $\cdot f .$ Section 2.1) , and the second property by construction of the diffusion process which ensures that the noise magnitude is significantly larger than $\hat { \mathbf { x } } _ { t _ { i } }$ for large $t$ . However, for the timesteps $t \in ( 0 , T )$ the marginal distributions $p ( \mathbf { x } _ { t } )$ and $p ( \tilde { \mathbf { x } } _ { t } )$ do not necessarily coincide.
# 4.2. Properties of Generator-Augmented Flows
Here, we present some properties of generator-augmented flows that motivate them for training consistency models.
# 4.2.1. REDUCING ${ \mathcal { R } } ( \theta )$ WITH GC
In Theorem 1, we proved that the continuous-time consistency training objective decomposes into the sum of the consistency distillation objective and a regularizer term: $\mathcal { L } _ { \mathrm { C T } } ( \theta ) = \mathcal { L } _ { \mathrm { C D } } ( \theta ) + \mathcal { R } ( \theta )$ . Here, we study a proxy term for ${ \mathcal { R } } ( \theta )$ that is easier to calculate:
$$
\tilde { \mathcal { R } } _ { t } = \mathbb { E } \left[ \left\| \dot { \mathbf { x } } _ { t } - \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) \right\| ^ { 2 } \right] .
$$
This quantity measures the expected distance between the true velocity field and its one-sample Monte Carlo estimate. We study $\breve { \mathcal { R } } _ { t , \mathrm { I C } }$ , $\tilde { \mathcal { R } } _ { \mathrm { b a t c h - O T } }$ , and $\tilde { \mathcal { R } } _ { t , \mathrm { G C } } ^ { \mathrm { ~ \scriptsize ~ \cdot ~ } }$ . They are the respective proxy regularizer term for each type of probability path. Note that $\tilde { \mathcal { R } } _ { t , \mathrm { G C } }$ depends on the endpoint predictor, a consistency model, which impacts both probability paths and velocity fields. Our goal is to compare those proxy regularizer terms, in order to demonstrate that GC does lead to a smaller discrepancy than IC. We further motivate the use of this proxy, in regards with Theorem 1, in Appendix A.4.

Figure 3. Comparison of transport costs between IC, batch-OT, and GC on CIFAR-10.
In the following theorem, proved in Appendix A.2, we show that $\tilde { \mathcal { R } } _ { t }$ decays faster for GC than for IC.
Theorem 2. Assume that the data distribution contains more than a single point. Also, assume that the generatoraugmented coupling between the predicted data point $\hat { \mathbf { x } } _ { t }$ and noise z is computed via an ideal consistency model $f$ , i.e., the flow of the PF-ODE. Then, as $t \to \infty$ ,
$$
\tilde { \mathcal { R } } _ { t , \mathrm { G C } } \ll \tilde { \mathcal { R } } _ { t , \mathrm { I C } } .
$$
Empirical validation. Evaluating $\tilde { \mathcal { R } } _ { t }$ requires computing the difference between the sample path derivative $\dot { \mathbf { x } } _ { t }$ and the velocity field ${ \bf v } _ { t } ( { \bf x } _ { t } )$ . In the EDM setting, this difference can be approximated using a denoiser. Indeed, $\dot { \mathbf { x } } _ { t } ~ = ~ \mathbf { z }$ and $\begin{array} { r } { { \mathbf { v } } _ { t } ( { \mathbf { x } } _ { t } ) ~ = ~ \mathbb { E } [ \dot { \mathbf { x } } _ { t } | { \mathbf { x } } _ { t } ] ~ = ~ \mathbb { E } [ \mathbf { z } | { \mathbf { x } } _ { t } ] ~ = ~ \mathbb { E } [ \frac { { \mathbf { x } } _ { t } - { \mathbf { x } } _ { \star } } { t } | { \mathbf { x } } _ { t } ] ~ = ~ \mathbb { E } [ \frac { { \mathbf { x } } _ { t } - { \mathbf { x } } _ { \star } } { t } | { \mathbf { x } } _ { t } ] ~ = ~ \mathbb { E } [ \frac { { \mathbf { x } } _ { t } - { \mathbf { x } } _ { \star } } { t } | { \mathbf { x } } _ { t } ] ~ , } \end{array}$ $\begin{array} { r } { \frac { 1 } { t } \big ( \mathbf { x } _ { t } - D _ { \star } ( \mathbf { x } _ { t } , t ) \big ) } \end{array}$ with an optimal denoiser $D _ { \star }$ . The optimal denoiser can be approximated by a denoiser network $D _ { \phi }$ . Finally, we have: $\begin{array} { r } { \dot { { \mathbf x } } _ { t } - { \mathbf v } _ { t } ( { \mathbf x } _ { t } ) \approx { \mathbf z } - \frac { 1 } { t } \big ( { \mathbf x } _ { t } - D _ { \phi } ( { \mathbf x } _ { t } , t ) \big ) } \end{array}$ Since IC, batch-OT, and GC define different $p _ { t }$ ’s and $\mathbf { v } _ { t }$ ’s, we train a different denoiser $D _ { \phi }$ for each coupling. In Figure 2, we report the results from the comparison of the three proxy terms on CIFAR-10. We observe that $\tilde { \mathcal { R } } _ { t , \mathrm { G C } } < \mathrm { \tilde { \mathcal { R } } } _ { t , \mathrm { b a t c h - O T } } < \tilde { \mathcal { R } } _ { t , \mathrm { I C } }$ and that the gap increases with $t$ , corroborating our theoretical findings (Theorem 2).
# 4.2.2. REDUCING TRANSPORT COST WITH GC
Here, we investigate the average transport cost between the noise $\mathbf { z } ~ \sim ~ p _ { z }$ and the predicted data point $\hat { \textbf { x } } \sim p _ { \star }$ as a measure of the efficiency of the data-noise coupling. Recall that the diffusion process is given by $\mathbf { x } _ { t } = \mathbf { x } _ { \star } + \sigma _ { t } \mathbf { z }$ Then, knowing that the consistency model $\mathring { f }$ satisfying the boundary condition $\mathring { f } ( \mathbf { x } _ { 0 } , \sigma _ { 0 } ) = \dot { \mathbf { x } } _ { 0 }$ , we define the function
$c ( t )$
$$
c ( t ) = \mathbb { E } _ { q _ { \mathrm { I } } ( \mathbf { x } _ { \star } , \mathbf { z } ) } \left[ \left\| \mathring { \pmb { f } } ( \mathbf { x } _ { t } , \sigma _ { t } ) - \mathbf { z } \right\| ^ { 2 } \right] .
$$
$c ( 0 ) = \mathbb { E } _ { q _ { \mathrm { I } } ( \mathbf { x } _ { \star } , \mathbf { z } ) } [ | | \mathbf { x } _ { 0 } - \mathbf { z } | | ^ { 2 } ]$ and $c ( t )$ represent the transport costs of, respectively, IC and GC. We show below, with proofs in Appendix A.3, that $c ( t )$ is decreasing for $\sigma _ { t }$ close to zero and for large $\sigma _ { t }$ .
Lemma 1 (Transport cost of GC coupling). Assume that $\mathring { f }$ is a continuously differentiable function representing the ground-truth consistency model, i.e. the flow of the $P F .$ - ODE induced by the diffusion process $\mathbf { x } _ { t }$ . Define $\begin{array} { r l } { \mathbf { w } _ { t } } & { { } = } \end{array}$ $\begin{array} { r } { \mathbf { z } - \mathbb { E } [ \mathbf { z } | \mathbf { x } _ { t } ] = \frac { 1 } { \dot { \sigma } _ { t } } \big ( \dot { \mathbf { x } } _ { t } - \mathbb { E } [ \dot { \mathbf { x } } _ { t } \mid \mathbf { x } _ { t } ] \big ) } \end{array}$ . Then:
$$
c ^ { \prime } ( t ) = - 2 \dot { \sigma } _ { t } \mathbb { E } \left[ \left. \frac { \partial \hat { f } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \mathbf { w } _ { t } , \mathbf { w } _ { t } \right. \right] .
$$
Corollary 1 (Decreasing transport cost of GC coupling in $t \to 0 ^ { + }$ ). There exists a $t \mathrm { ~ * ~ } > 0$ such that for all $t \in$ $[ 0 , t _ { * } ]$ , the derivative of $c ( t )$ takes the form $c ^ { \prime } ( t ) = - 2 \dot { \sigma } _ { t } a _ { t }$ with $a _ { t } > 0$ . Hence for $\dot { \sigma } _ { t }$ positive, the cost is decreasing. In particular, in the EDM setting where $\sigma _ { t } ~ = ~ t , ~ c ( t )$ is decreasing for small $t$ .
The proof of this corollary proceeds by noting that for $t = 0$ , the consistency model $\mathring { f } ( { \bf x } , t )$ is an identity function, its Jacobian is an identity matrix, and thus $a _ { t } = \mathbb { E } [ \lVert \mathbf { w } _ { t } \rVert ^ { 2 } ]$ Using the continuity of Jacobian elements and invoking intermediate value theorem on $a _ { t }$ concludes the proof.
Corollary 2 (Decreasing transport cost of GC coupling in $t \approx t _ { \operatorname* { m a x } } ,$ ). Assume that the consistency model $\mathring { f } ( x , \sigma )$ is a scaling function $\begin{array} { r } { \mathring { \pmb { f } } ( \mathbf { x } , \sigma _ { t } ) ~ = ~ \frac { \sigma _ { 0 } } { \sigma _ { t } } \mathbf { x } . } \end{array}$ . Then, we have $\begin{array} { r } { c ^ { \prime } ( t ) = - \frac { 2 \dot { \sigma } _ { t } \sigma _ { 0 } } { \sigma _ { t } } \mathbb { E } [ \| \mathbf { w } _ { t } \| ^ { 2 } ] } \end{array}$ . In particular, $c ( t )$ is decreasing whenever $\sigma _ { t }$ is increasing.
We note that, while the assumption of the consistency model being a scaling function is strong, it nonetheless bears some degree of truth for $t \approx t _ { \mathrm { m a x } }$ , see Lemma 3 of Appendix A.
Experimental validation. As stressed in Section 3, a line of work has brought evidence that reducing the transport cost between noise and data distributions could fasten the training and help produce better samples. We compare the quadratic transport costs involved in IC, batch-OT (Pooladian et al., 2023; Dou et al., 2024), and GC (resp. $c ( 0 )$ , $c _ { \mathrm { O T } } ( 0 )$ , and $c ( t ) \dot { } ,$ ). Results are presented in Figure 3. Interestingly, GC reduces transport cost more than batch-OT on CIFAR-10 because batch-OT is tied to the batch data points $\mathbf { x } _ { t }$ whereas our computed $\hat { \mathbf { x } } _ { t }$ are not.

Figure 4. Performance of GC w.r.t. the performance of the predictor on CIFAR-10.
# 5. Training With Generator-Augmented Flows for Image Generation
In this section, we present a methodology to train consistency models with GC on unconditional image generation. To construct points drawn from GC trajectories $( \tilde { \mathbf { x } } _ { t _ { i } } )$ , our theory requires an optimal predictor $\mathring { f }$ on intermediate points drawn from IC $( \mathbf { x } _ { t _ { i } } )$ . Thus, this lets us two potential training strategies: (i) pre-train an IC generator, and leverage it to construct GC trajectories that train a GC model; (ii) a joint learning strategy: train a single consistency model from scratch with both types of trajectories. Note that in this second setting, the model is unique: ${ \dot { f } } = f _ { \theta }$ . The second option is more appealing, since it is a simple one-stage training. We demonstrate that the joint learning approach improves performance and accelerates convergence compared to standard consistency models.
Our experiments are done on the following datasets: CIFAR-10 (Krizhevsky, 2009), ImageNet (Deng et al., 2009), CelebA (Liu et al., 2015) and LSUN Church (Yu et al., 2015). For the evaluation metrics, we report the Frechet ´ Inception Distance (FID, Heusel et al. (2017)), Kernel Inception Distance (KID, Binkowski et al. ´ (2018)), and Inception Score (IS, Salimans et al. (2016)). Most of our experiments are based on the improved training techniques for consistency models from Song and Dhariwal (2024), denoted iCT-IC. Moreover, we present some results in the setting of Easy Consistency Tuning (ECT, Geng et al. (2024)). Details are provided in Appendix D. The code is shared in the supplementary material and will be open-sourced upon publication for reproducibility.
# 5.1. GC with Pre-Trained Endpoint Predictor
Our theoretical results assume having access to an ideal generator on IC trajectories, meaning that the generator approximates the diffusion flow output. To train a consistency model on GC, we can thus rely on a separate endpoint predictor pre-trained on IC (iCT-IC): $\mathring { \pmb { f } } \equiv \mathring { \pmb { g } } _ { \phi }$ (cf. Section 4.1). This network predicts the endpoint: $\hat { \mathbf { x } } _ { t _ { i } } = \mathbf { { g } } _ { \phi } ( \mathbf { { x } } _ { t _ { i } } , \sigma _ { t _ { i } } )$ During the training of the consistency model on GC, $\mathbf { \nabla } _ { \mathbf { \boldsymbol { g } } _ { \phi } }$ is kept frozen and considered a proxy of the true flow, as in our theoretical results. In Figure 4, we report the performance of consistency models on CIFAR-10 trained with GC using two different $g _ { \phi }$ : $( i )$ a $\mathbf { \nabla } _ { \mathbf { \boldsymbol { g } } _ { \phi } }$ fully trained as standard iCT-IC with $1 0 0 \mathrm { k }$ training steps; $( i i )$ a weak $\mathbf { \nabla } _ { \mathbf { \boldsymbol { g } } _ { \phi } }$ partially trained as iCT-IC with $2 0 \mathrm { k }$ training steps.

Figure 5. Consistency models trained with GC with joint learning converges faster and outperforms consistency models trained with IC or minibatch-OT on CIFAR-10.
Finding 1. Using a partially pre-trained and frozen endpoint predictor, trained on IC trajectories, allows to train a consistency model with GC and which converges faster. However, the performance of the GC model depends on the quality of the endpoint predictor on IC trajectories.
It is important to note that this setup is not practical, as it requires pre-training a standard consistency model. We aim for a training methodology that accelerates convergence and improves performance when training from scratch, without doubling the number of required training iterations.
# 5.2. GC from Scratch with Joint Learning
In this section, we propose to learn simultaneously a single model on IC and GC trajectories from the start of the training, i.e. ${ \mathring { f } } \equiv \operatorname { s g } ( f _ { \theta } )$ (cf. Section 4.1). Thereby, we combine the training of the ideal IC predictor with the training of GC model based on this predictor. We introduce a joint learning factor $\mu$ : at each training step, training pairs are drawn from GC with probability $\mu$ , while the remaining pairs are drawn from standard IC. The loss can be written on average as:
$$
\begin{array} { r } { \mathcal { L } _ { \mathrm { G C } - \mu } ( \theta ) = \mu \mathcal { L } _ { \mathrm { G C } } ( \theta ) + ( 1 - \mu ) \mathcal { L } _ { \mathrm { C T } } ( \theta ) } \end{array}
$$
Table 1. iCT-IC is the standard improved consistency model with independent coupling (Song and Dhariwal, 2024); iCT-OT is iCT with minibatch optimal transport coupling (Pooladian et al., 2023; Dou et al., 2024); iCT-GC $\mu = 0 . 5 )$ ) is our proposed GC with joint learning.
| Dataset | Model | FID ↓ | KID (×102) ↓ | IS ↑ |
| CIFAR-10 | iCT-IC | 7.42 ± 0.04 | 0.44 ± 0.03 | 8.76 ± 0.06 |
| iCT-OT | 6.75 ± 0.04 | 0.36 ± 0.04 | 8.86 ± 0.09 |
| iCT-GC (μ = 0.5) | 5.95 ± 0.05 | 0.26 ± 0.02 | 9.10 ± 0.05 |
| ImageNet (32 × 32) | iCT-IC | 14.89 ± 0.17 | 1.23 ± 0.05 | 9.46 ± 0.06 |
| iCT-OT | 14.13 ± 0.17 | 1.18 ± 0.05 | 9.62 ± 0.06 |
| iCT-GC (µ = 0.5) | 13.99 ± 0.28 | 1.13 ± 0.03 | 9.77 ± 0.07 |
| CelebA (64 × 64) | iCT-IC | 15.82 ± 0.13 | 1.31 ± 0.04 | 2.33 ± 0.00 |
| iCT-OT | 13.63 ± 0.13 | 1.09 ± 0.03 | 2.40 ± 0.01 |
| iCT-GC (µ = 0.5) | 11.74 ± 0.08 | 0.91 ± 0.04 | 2.45 ± 0.01 |
| LSUN Church (64 × 64) | iCT-IC | 10.58 ± 0.11 | 0.73 ± 0.03 | 1.99 ± 0.01 |
| iCT-OT | 9.71 ± 0.13 | 0.64 ± 0.03 | 2.00 ± 0.01 |
| iCT-GC (µ = 0.5) | 9.88 ± 0.07 | 0.66 ± 0.04 | 2.14 ± 0.01 |
We denote this joint learning procedure as GC $( \mu \ : = \ : \cdot )$ . Hence, GC ${ \mathcal { \boldsymbol { \mu } } } = 0$ ) corresponds to the standard IC procedure, while GC $\mu = 1 ,$ ) corresponds to training only with GC points.Note that GC $\mu = 1 ,$ ) is not expected to work, since our theoretical guarantees assume an optimal IC predictor. The detailed algorithm is presented in Algorithm 1 in Appendix. We apply this joint learning to four image datasets, and include comparisons to iCT with batch-OT (Dou et al., 2024) as an additional baseline. Results across multiple datasets and metrics are presented in Table 1, and visual examples are shown in Figure 8 in Appendix.
Finding 2. Joint learning of IC and GC trajectories consistently improves results compared to the base IC model and outperforms batch-OT in most cases.
As shown in Figure 5, we observe an interesting interpolation phenomenon between $\mu = 0$ and $\mu = 1$ . For $\mu = 0$ , we recover the steady FID improvement typical of IC training. As $\mu$ increases, the convergence of the generative model accelerates. For $0 . 3 \leq \mu \leq 0 . 7 .$ , on CIFAR-10, convergence speed and final FID are improved compared to IC and batch-OT models. For $\mu = 1$ , the FID score decreases faster than other configurations early in the training process, but it soons increases as training progresses further. It is explained by the poor performance of the predictions on IC yielding a deviation from the ideal IC predictor from Section 4. For the other datasets, we simply chose $\mu = 0 . 5$ and report those results. We provide further detail on the sensitivity of our results to the choice of $\mu$ in Appendices C.1 and D.
Table 2. Performance of IC and GC consistency models trained in the ECT setting (Geng et al., 2024). Short training: $4 k$ iterations. Long training: $1 0 0 k$ iterations.
| Model |
| FID ↓ CIFAR-10 (Short Training) |
| ECT-IC 7.37 ± 0.05 |
| ECT-GC (µ = 0.3) 6.41 ± 0.05 |
| CIFAR-10 (Long Training) |
| ECT-IC 4.11 ± 0.03 |
| ECT-GC (µ = 0.3) 3.74 ± 0.04 |
| FFHQ 64 × 64 (Short Training) |
| ECT-IC 13.29 ± 0.10 |
| ECT-GC (µ = 0.3) 11.73 ± 0.09 |
| FFHQ 64 × 64 (Long Training) |
| ECT-IC 9.68 ± 0.06 |
| ECT-GC (µ = 0.3) 8.51 ± 0.09 |
| ImageNet 64 × 64 Cond. (Short Training) |
| ECT-IC 10.82 ± 0.18 |
| ECT-GC (µ = 0.3) 10.31 ± 0.22 |
| ImageNet 64 × 64 Cond. (Long Training) ECT-IC |
| 5.84 ± 0.21 ECT-GC (µ = 0.3) 6.39 ± 0.20 |
# 5.3. GC in the ECT Setting
As an additional experiment, we explore the recent ECT setting (Geng et al., 2024) on CIFAR-10, where consistency models are fine-tuned from a pre-trained diffusion model. This approach enables training high-quality consistency models in one GPU-hour, though it requires an already trained diffusion model.
We compare IC and GC trajectories in this setting, with both short (approximately one GPU-hour) and long (100k steps, 1 GPU-day) training times. Using the referenced hyperparameters selected by Geng et al. (2024), we observe a consistent advantage for GC, with an optimal $\mu$ value of 0.3. These preliminary results, summarized in Table 2, align with our previous findings on the iCT setting, further supporting the effectiveness of GC.
# 6. Conclusion
In this paper, we identify a discrepancy between consistency training and consistency distillation. Building on this theoretical analysis, we introduce generator-augmented flows and show that they reduce a proxy term measuring this discrepancy. Additionally, generator-augmented flows decrease the data-to-noise transport cost, as demonstrated by theory and experiments. Finally, we derive practical algorithms for training consistency models using generatoraugmented flows and demonstrate improved empirical performance.
# Impact Statement
If used in large-scale generative models, notably in text-toimage models, this work may increase potential negative impacts of deep generative models such as deepfakes (Fallis, 2021).
Acknowledgements. This research was funded by grant Nos. 2023-00262155, 2024-00460980 and 2025-02304717 (IITP) funded by the Korea government (the Ministry of Science and ICT).
# References
Mikołaj Binkowski, Danica J Sutherland, Michael Arbel, ´ and Arthur Gretton. Demystifying MMD GANs. In International Conference on Learning Representations, 2018.
Xiangning Chen, Chen Liang, Da Huang, Esteban Real, Kaiyuan Wang, Hieu Pham, Xuanyi Dong, Thang Luong, Cho-Jui Hsieh, Yifeng Lu, and Quoc V Le. Symbolic discovery of optimization algorithms. In Advances in Neural Information Processing Systems, volume 36, pages 49205–49233. Curran Associates, Inc., 2023.
Valentin De Bortoli, James Thornton, Jeremy Heng, and Arnaud Doucet. Diffusion Schrodinger bridge with appli-¨ cations to score-based generative modeling. In Advances in Neural Information Processing Systems, volume 34, pages 17695–17709. Curran Associates, Inc., 2021.
Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. ImageNet: A large-scale hierarchical image database. In 2009 IEEE Conference on Computer Vision and Pattern Recognition, pages 248–255, 2009.
Hongkun Dou, Junzhe Lu, Jinyang Du, Chengwei Fu, Wen Yao, Xiao qian Chen, and Yue Deng. A unified framework for consistency generative modeling, 2024. URL https: //openreview.net/forum?id $=$ Qfqb8ueIdy.
Don Fallis. The epistemic threat of deepfakes. Philosophy & Technology, 34:623–643, 2021.
Kilian Fatras, Younes Zine, Szymon Majewski, Remi Fla- ´ mary, Remi Gribonval, and Nicolas Courty. Minibatch ´ optimal transport distances; analysis and applications. arXiv preprint arXiv:2101.01792, 2021.
Zhengyang Geng, Ashwini Pokle, William Luo, Justin Lin, and J Zico Kolter. Consistency models made easy. arXiv preprint arXiv:2406.14548, 2024.
Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter. Gans trained by a two time-scale update rule converge to a local nash equilibrium. In Advances in Neural Information Processing Systems, volume 30, pages 6629–6640. Curran Associates, Inc., 2017.
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models. In Advances in Neural Information Processing Systems, volume 33, pages 6840– 6851. Curran Associates, Inc., 2020.
Tero Karras, Miika Aittala, Timo Aila, and Samuli Laine. Elucidating the design space of diffusion-based generative models. In Sanmi Koyejo, Shakir Mohamed, Alekh Agarwal, Danielle Belgrave, Kyunghyun Cho, and Alice Oh, editors, Advances in Neural Information Processing Systems, volume 35, pages 26565–26577. Curran Associates, Inc., 2022.
Diederik Kingma and Ruiqi Gao. Understanding diffusion objectives as the elbo with simple data augmentation. Advances in Neural Information Processing Systems, 36, 2024.
Alexander Korotin, Nikita Gushchin, and Evgeny Burnaev. Light Schrodinger bridge. In ¨ International Conference on Learning Representations, 2024.
Alex Krizhevsky. Learning multiple layers of features from tiny images, 2009. URL https://www.cs.toronto.edu/˜kriz/ learning-features-2009-TR.pdf.
Sangyun Lee, Beomsu Kim, and Jong Chul Ye. Minimizing trajectory curvature of ODE-based generative models. In Andreas Krause, Emma Brunskill, Kyunghyun Cho, Barbara Engelhardt, Sivan Sabato, and Jonathan Scarlett, editors, Proceedings of the 40th International Conference on Machine Learning, volume 202 of Proceedings of Machine Learning Research, pages 18957–18973. PMLR, 23–29 Jul 2023.
Yiheng Li, Heyang Jiang, Akio Kodaira, Masayoshi Tomizuka, Kurt Keutzer, and Chenfeng Xu. Immiscible diffusion: Accelerating diffusion training with noise assignment. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024.
Yaron Lipman, Ricky T. Q. Chen, Heli Ben-Hamu, Maximilian Nickel, and Matthew Le. Flow matching for generative modeling. In International Conference on Learning Representations, 2023.
Xingchao Liu, Chengyue Gong, and qiang liu. Flow straight and fast: Learning to generate and transfer data with rectified flow. In International Conference on Learning Representations, 2023.
Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild. In IEEE International Conference on Computer Vision (ICCV), 2015.
Cheng Lu and Yang Song. Simplifying, stabilizing and scaling continuous-time consistency models. arXiv preprint arXiv:2410.11081, 2024.
Chenlin Meng, Robin Rombach, Ruiqi Gao, Diederik Kingma, Stefano Ermon, Jonathan Ho, and Tim Salimans. On distillation of guided diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023.
Levon Nurbekyan, Alexander Iannantuono, and Adam M Oberman. No-collision transportation maps. Journal of Scientific Computing, 82(2):45, 2020.
Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, Alban Desmaison, Andreas Kopf, Edward Yang, Zachary DeVito, ¨ Martin Raison, Alykhan Tejani, Sasank Chilamkurthy, Benoit Steiner, Lu Fang, Junjie Bai, and Soumith Chintala. PyTorch: An imperative style, high-performance deep learning library. In Advances in Neural Information Processing Systems, volume 32, pages 8026–8037. Curran Associates, Inc., 2019.
Aram-Alexandre Pooladian, Heli Ben-Hamu, Carles Domingo-Enrich, Brandon Amos, Yaron Lipman, and Ricky T. Q. Chen. Multisample flow matching: Straightening flows with minibatch couplings. In Proceedings of the 40th International Conference on Machine Learning, volume 202 of Proceedings of Machine Learning Research, pages 28100–28127. PMLR, July 2023.
Tim Salimans and Jonathan Ho. Progressive distillation for fast sampling of diffusion models. In International Conference on Learning Representations, 2022.
Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, Xi Chen, and Xi Chen. Improved techniques for training GANs. In Advances in Neural Information Processing Systems, volume 29, pages 2234– 2242. Curran Associates, Inc., 2016.
Axel Sauer, Dominik Lorenz, Andreas Blattmann, and Robin Rombach. Adversarial diffusion distillation. arXiv preprint arXiv:2311.17042, 2023.
Yuyang Shi, Valentin De Bortoli, Andrew Campbell, and Arnaud Doucet. Diffusion Schrodinger bridge matching. ¨ In Advances in Neural Information Processing Systems, volume 36, pages 62183–62223. Curran Associates, Inc., 2023.
Nicki Skafte Detlefsen, Jiri Borovec, Justus Schock, Ananya Harsh, Teddy Koker, Luca Di Liello, Daniel Stancl, Changsheng Quan, Maxim Grechkin, and William Falcon. TorchMetrics – measuring reproducibility in Py-Torch, February 2022. URL https://github.com/ Lightning-AI/torchmetrics.
Max Sommerfeld, Jorn Schrieber, Yoav Zemel, and Axel ¨ Munk. Optimal transport: Fast probabilistic approximation with exact solvers. Journal of Machine Learning Research, 20(105):1–23, 2019.
Yang Song and Prafulla Dhariwal. Improved techniques for training consistency models. In International Conference on Learning Representations, 2024.
Yang Song and Stefano Ermon. Generative modeling by estimating gradients of the data distribution. In Advances in Neural Information Processing Systems, volume 32, pages 11918–11930. Curran Associates, Inc., 2019.
Yang Song, Jascha Sohl-Dickstein, Diederik P. Kingma, Abhishek Kumar, Stefano Ermon, and Ben Poole. Scorebased generative modeling through stochastic differential equations. In International Conference on Learning Representations, 2021.
Yang Song, Prafulla Dhariwal, Mark Chen, and Ilya Sutskever. Consistency models. In Proceedings of the 40th International Conference on Machine Learning, volume 202 of Proceedings of Machine Learning Research, pages 32211–32252. PMLR, July 2023.
Alexander Y. Tong, Nikolay Malkin, Kilian Fatras, Lazar Atanackovic, Yanlei Zhang, Guillaume Huguet, Guy Wolf, and Yoshua Bengio. Simulation-free schrodinger ¨ bridges via score and flow matching. In International Conference on Artificial Intelligence and Statistics, pages 1279–1287. PMLR, 2024.
Pascal Vincent. A connection between score matching and denoising autoencoders. Neural computation, 23 (7), 2011.
Fisher Yu, Ari Seff, Yinda Zhang, Shuran Song, Thomas Funkhouser, and Jianxiong Xiao. LSUN: Construction of a large-scale image dataset using deep learning with humans in the loop. arXiv preprint arXiv:1506.03365, 2015.
# A. Proofs
# A.1. Continuous-Time Consistency Objectives
Theorem 1 (Discrepancy between consistency distillation and consistency training objectives). Assume that the distance function is given by $\mathcal { D } ( \mathbf { x } , \mathbf { y } ) = \varphi ( \| \mathbf { x } - \mathbf { y } \| )$ for a continuous convex function $\varphi : [ 0 , \infty ) \to [ 0 , \infty )$ with $\varphi ( x ) \sim C x ^ { \alpha }$ as $x \to 0 ^ { + }$ for some $C > 0$ and $\alpha \geq 1$ , and that the timesteps are equally spaced, i.e., $\begin{array} { r } { t _ { i } = \frac { i T } { N } } \end{array}$ . Furthermore, assume that the Jacobian $\frac { \partial { f _ { \theta } } } { \partial { \bf x } }$ does not vanish identically. Then the following assertions hold:
(i) The scaled consistency losses $N ^ { \alpha } { \mathcal { L } } _ { \mathrm { C D } } ( \theta )$ and $N ^ { \alpha } { \mathcal { L } } _ { \mathrm { C T } } ( \theta )$ converge as $N \to \infty$ . Moreover, the minimization objectives corresponding to these limiting scaled consistency losses are not equivalent, and their difference is given by:
$$
\operatorname* { l i m } _ { N \to \infty } N ^ { \alpha } \left[ { \mathcal { L } } _ { \mathrm { C T } } ( \theta ) - { \mathcal { L } } _ { \mathrm { C D } } ( \theta ) \right] = C T ^ { \alpha - 1 } { \mathcal { R } } ( \theta ) ,
$$
where ${ \mathcal { R } } ( \theta )$ is defined by
$$
\mathcal { R } ( \theta ) = \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } \left[ \left\| \partial _ { \mathrm { C T } } \pmb { f } _ { \theta } \right\| ^ { \alpha } - \left\| \partial _ { \mathrm { C D } } \pmb { f } _ { \theta } \right\| ^ { \alpha } \right] \mathrm { d } t
$$
and satisfies $\mathcal { R } ( \theta ) > 0$ , with
$$
\partial _ { \mathrm { C T } } \mathbf { \mathcal { f } } _ { \theta } = \frac { \partial \mathbf { f } _ { \theta } } { \partial \sigma } ( \mathbf { x } _ { t } , \sigma _ { t } ) \boldsymbol { \dot { \sigma } } _ { t } + \frac { \partial \mathbf { f } _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \dot { \mathbf { x } } _ { t } ,
$$
$$
\partial _ { \mathrm { C D } } \mathbf { f } _ { \theta } = \frac { \partial f _ { \theta } } { \partial \sigma } ( \mathbf { x } _ { t } , \sigma _ { t } ) \boldsymbol { \dot { \sigma } } _ { t } + \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) .
$$
In particular, if $\alpha = 2$ ,
$$
\mathcal { R } ( \theta ) = \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } \left[ \left\| \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \left( \dot { \mathbf { x } } _ { t } - \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) \right) \right\| ^ { 2 } \right] \mathrm { d } t .
$$
(ii) The scaled gradient $N ^ { \alpha - 1 } \nabla _ { \theta } \mathcal { L } _ { \mathrm { C D } } ( \theta )$ and $N ^ { \alpha - 1 } \nabla _ { \theta } \mathcal { L } _ { \mathrm { C T } } ( \theta )$ converge as $N \infty$ . Moreover, if $\alpha \neq 2$ , then their respective limits are not identical as functions of $\theta$ :
$$
\operatorname* { l i m } _ { N \to \infty } N ^ { \alpha - 1 } \nabla _ { \theta } \mathcal { L } _ { \mathrm { C T } } ( \theta ) \neq \operatorname* { l i m } _ { N \to \infty } N ^ { \alpha - 1 } \nabla _ { \theta } \mathcal { L } _ { \mathrm { C D } } ( \theta ) .
$$
Proof. (i) Note that $\partial _ { \mathrm { C D } } f _ { \theta }$ and $\partial _ { \mathrm { C T } } f _ { \theta }$ satisfy:
$$
\partial _ { \mathrm { C T } } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) = \frac { \partial } { \partial t } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) , \partial _ { \mathrm { C D } } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) = \mathbb { E } \left[ \frac { \partial } { \partial t } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) \bigg \vert \mathbf { x } _ { t } \right] .
$$
Here, the second equality follows by noting that $\mathbf { v } _ { t } ( \mathbf { x } _ { t } ) = \mathbb { E } [ \dot { \mathbf { x } } _ { t } | \mathbf { x } _ { t } ]$ and all the other terms in the expansion of $\begin{array} { r } { \frac { \partial } { \partial t } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) } \end{array}$ are completely determined once the value of $\mathbf { x } _ { t }$ is known.
Now, we use Taylor’s theorem to expand the difference between $f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } )$ and $f _ { \theta } ( \mathbf { x } _ { t _ { i } } ^ { \Phi } , \sigma _ { t _ { i } } )$ in the consistency distillation loss, Equation (4). Together with the definition of $\mathbf { x } _ { t _ { i } } ^ { \Phi }$ , Equation (5), this yields:
$$
\begin{array} { r l } & { f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) - f _ { \theta } ( \mathbf { x } _ { t _ { i } } ^ { \Phi } , \sigma _ { t _ { i } } ) } \\ & { \ = \frac { \partial f _ { \theta } } { \partial \sigma } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) \cdot ( \sigma _ { t _ { i + 1 } } - \sigma _ { t _ { i } } ) + \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) \cdot ( \mathbf { x } _ { t _ { i + 1 } } - \mathbf { x } _ { t _ { i } } ^ { \Phi } ) + o ( t _ { i + 1 } - t _ { i } ) } \\ & { \ = \partial _ { \mathrm { C D } } f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) \cdot ( t _ { i + 1 } - t _ { i } ) + o ( t _ { i + 1 } - t _ { i } ) . } \end{array}
$$
Similarly, by expanding the difference between $f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } )$ and $f _ { \theta } ( \mathbf { x } _ { t _ { i } } , \sigma _ { t _ { i } } )$ in Equation (6),
$$
\begin{array} { r l } & { f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) - f _ { \theta } ( \mathbf { x } _ { t _ { i } } , \sigma _ { t _ { i } } ) } \\ & { \ = \frac { \partial f _ { \theta } } { \partial \sigma } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) \cdot ( \sigma _ { t _ { i + 1 } } - \sigma _ { t _ { i } } ) + \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) \cdot ( \mathbf { x } _ { t _ { i + 1 } } - \mathbf { x } _ { t _ { i } } ) + o ( t _ { i + 1 } - t _ { i } ) } \\ & { \ = \partial _ { \mathrm { C T } } f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) \cdot ( t _ { i + 1 } - t _ { i } ) + o ( t _ { i + 1 } - t _ { i } ) . } \end{array}
$$
Therefore, for each $\bullet \in \{ \mathrm { C D } , \mathrm { C T } \}$ ,
$$
\begin{array} { l } { { \displaystyle N ^ { \alpha } { \mathcal { L } } _ { \bullet } ( \theta ) = N ^ { \alpha } \cdot \frac { 1 } { N } \sum _ { i = 0 } ^ { N - 1 } \lambda ( \sigma _ { t _ { i } } ) \mathbb { E } [ C \partial _ { \bullet } f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) ^ { \alpha } ( 1 + o ( 1 ) ) ] \cdot ( t _ { i + 1 } - t _ { i } ) ^ { \alpha } } } \\ { ~ } \\ { { \displaystyle = C T ^ { \alpha - 1 } \sum _ { i = 0 } ^ { N - 1 } \lambda ( \sigma _ { t _ { i } } ) \mathbb { E } [ \partial _ { \bullet } f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) ^ { \alpha } ( 1 + o ( 1 ) ) ] \cdot ( t _ { i + 1 } - t _ { i } ) } } \\ { { \displaystyle ~ C T ^ { \alpha - 1 } \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } [ \partial _ { \bullet } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) ^ { \alpha } ] \mathrm { d } t } } \end{array}
$$
in the continuous-time limit as $N \to \infty$ .
For simplicity of notation, we write
$$
\mathcal { L } _ { \bullet } ^ { \infty } ( \theta ) = \operatorname* { l i m } _ { N \infty } N ^ { \alpha } \mathcal { L } _ { \bullet } ( \theta )
$$
for each $\bullet \in \{ \mathrm { C D } , \mathrm { C T } \}$ . Then, from the formula for the limiting losses $\mathcal { L } _ { \bullet } ^ { \infty } ( \theta )$ , Equation (35), we immediately obtain
$$
\mathcal { L } _ { \mathrm { C T } } ^ { \infty } ( \theta ) - \mathcal { L } _ { \mathrm { C D } } ^ { \infty } ( \theta ) = C T ^ { \alpha - 1 } \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } \left[ \left\| \partial _ { \mathrm { C T } } \pmb { f } _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) \right\| ^ { \alpha } - \left\| \partial _ { \mathrm { C D } } \pmb { f } _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) \right\| ^ { \alpha } \right] \mathrm { d } t .
$$
Now, we specialize in the case $\alpha = 2$ and invoke the general observation that, for any random vectors $\mathbf { x }$ and $\mathbf { y }$ , the following identity holds:
$$
\begin{array} { r } { \mathbb { E } \left[ \| \mathbf { x } \| ^ { 2 } - \| \mathbb { E } [ \mathbf { x } | \mathbf { y } ] \| ^ { 2 } \right] = \mathbb { E } \left[ \| \mathbf { x } - \mathbb { E } [ \mathbf { x } | \mathbf { y } ] \| ^ { 2 } \right] . } \end{array}
$$
This can be easily proved by expanding the squared Euclidean norm as the inner product and applying the law of iterated expectations. Plugging in $\begin{array} { r } { \dot { \mathbf { x } } \frac { \partial } { \partial t } \pmb { f } _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) } \end{array}$ and $\mathbf { y } \mathbf { x } _ { t }$ , and noting that $\partial _ { \mathrm { C D } } { f } _ { \boldsymbol { \theta } } ( \mathbf { x } _ { t } , \sigma _ { t } ) = \mathbb { E } \left[ \partial _ { \mathrm { C T } } { f } _ { \boldsymbol { \theta } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \ | \ \mathbf { x } _ { t } \right]$ by Equation (28), it follows that
$$
\begin{array} { r } { \mathcal { L } _ { \mathrm { C T } } ^ { \infty } ( \theta ) - \mathcal { L } _ { \mathrm { C D } } ^ { \infty } ( \theta ) = C T \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } \left[ \left\| \partial _ { \mathrm { C T } } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) - \partial _ { \mathrm { C D } } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) \right\| ^ { 2 } \right] \mathrm { d } t } \\ { = C T \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } \left[ \left\| \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \left( \dot { \mathbf { x } } _ { t } - \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) \right) \right\| ^ { 2 } \right] \mathrm { d } t . } \end{array}
$$
Next, we establish the positivity of ${ \mathcal { R } } ( \theta )$ . To this end, note that $\| \cdot \| ^ { \alpha }$ is a convex function for $\alpha \geq 1$ . By invoking the conditional Jensen’s inequality, we find that the expectation inside the limiting scaled consistency training losses, Equation (35) satisfy:
$$
\begin{array} { r l r } & { } & { \mathbb { E } \bigg [ \Big \| \partial _ { \mathrm { C T } } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) \Big \| ^ { \alpha } \bigg ] = \mathbb { E } \bigg [ \bigg \| \frac { \partial } { \partial t } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) \bigg \| ^ { \alpha } \bigg ] = \mathbb { E } \bigg [ \mathbb { \mathbb { E } } \bigg [ \bigg \| \frac { \partial } { \partial t } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) \bigg \| ^ { \alpha } \bigg | \mathbf { x } _ { t } \bigg ] \bigg ] } \\ & { } & { \geq \mathbb { E } \bigg [ \bigg \| \mathbb { E } \bigg [ \frac { \partial } { \partial t } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) \bigg | \mathbf { x } _ { t } \bigg ] \bigg \| ^ { \alpha } \bigg ] = \mathbb { E } \Big [ \big \| \partial _ { \mathrm { C D } } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) \big \| ^ { \alpha } \Big ] . } \end{array}
$$
Integrating both sides with respect to $\lambda ( \sigma _ { t } )$ dt, we obtain the desired inequality. The Jensen’s inequality also tells that the equality holds precisely when $\begin{array} { r } { \frac { \partial } { \partial t } { \bf f } _ { \boldsymbol { \theta } } ( { \bf x } _ { t } , \sigma _ { t } ) = \mathbb { E } [ \frac { \partial } { \partial t } { \bf f } _ { \boldsymbol { \theta } } ( { \bf x } _ { t } , \sigma _ { t } ) | { \bf x } _ { t } ] } \end{array}$ holds, or equivalently, $\begin{array} { r } { \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \boldsymbol { \sigma } _ { t } ) \cdot ( \dot { \mathbf { x } _ { t } } - \mathbb { E } [ \dot { \mathbf { x } } _ { t } \vert \mathbf { x } _ { t } ] ) = 0 } \end{array}$ However, given the value of , the quantity $\dot { \mathbf { x } } _ { t }$ can assume an arbitrary value in because the conditional density of $\dot { \mathbf { x } } _ { t } = \dot { \sigma } _ { t } \mathbf { z }$ given s the a $\mathbf { x } _ { t }$ is strictly positive everywhere. Consequently, the equality condition implies mption of the theorem, the strict inequality between the two limiting losses must $\begin{array} { r } { \frac { \partial { f _ { \theta } } } { \partial { \bf x } } = 0 } \end{array}$ . Since this
Finally, recall that the continuous-time consistency distillation loss, ${ \mathcal { L } } _ { \mathrm { C D } } ^ { \infty } ( \theta )$ , is given by
$$
\mathcal { L } _ { \mathrm { C D } } ^ { \infty } ( \theta ) = C T ^ { \alpha - 1 } \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } \left[ \left\| \frac { \partial f _ { \theta } } { \partial \sigma } ( \mathbf { x } _ { t } , \sigma _ { t } ) \dot { \sigma } _ { t } + \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) \right\| ^ { \alpha } \right] \mathrm { d } t .
$$
Similarly, the continuous-time consistency training loss, ${ \mathcal { L } } _ { \mathrm { C T } } ^ { \infty } ( \theta )$ , is given by
$$
\mathcal { L } _ { \mathrm { C T } } ^ { \infty } ( \theta ) = C T ^ { \alpha - 1 } \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } \left[ \left\| \frac { \partial f _ { \theta } } { \partial \sigma } ( \mathbf { x } _ { t } , \sigma _ { t } ) \dot { \sigma } _ { t } + \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \dot { \mathbf { x } } _ { t } \right\| ^ { \alpha } \right] \mathrm { d } t .
$$
Since $\mathbf { v } _ { t } ( \mathbf { x } _ { t } ) = \mathbb { E } [ \dot { \mathbf { x } } _ { t } | \mathbf { x } _ { t } ]$ and $\mathbb { E } [ \| \dot { \mathbf { x } } _ { t } - \mathbb { E } [ \dot { \mathbf { x } } _ { t } ] \| ^ { 2 } ] > \mathbb { E } [ \| \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) - \mathbb { E } [ \dot { \mathbf { x } } _ { t } ] \| ^ { 2 } ]$ , it follows that ${ \mathcal { L } } _ { \mathrm { C T } } ^ { \infty } ( \theta )$ penalizes the Jacobian $\frac { \partial { f _ { \theta } } } { \partial { \bf x } }$ more strongly than ${ \mathcal { L } } _ { \mathrm { C D } } ^ { \infty } ( \theta )$ does. Therefore, the two limiting consistency losses do not define equivalent objectives.
(ii) Using the convexity of $\varphi$ , we can show that $\varphi ^ { \prime } ( x ) \sim C \alpha x ^ { \alpha - 1 }$ as $x \to 0 ^ { + }$ . Combining this with the vector calculus formula $\begin{array} { r } { \nabla _ { \mathbf { y } } \| \mathbf { y } \| = \frac { \mathbf { y } } { \| \mathbf { y } \| } } \end{array}$ , we get $\nabla _ { \mathbf { y } } \varphi ( \| \mathbf { y } \| ) \approx C \alpha \| \mathbf { y } \| ^ { \alpha - 2 } \mathbf { y }$ for small y. From this, we can estimate the gradient of the distance between $\mathrm { s g } \big ( f _ { \theta } ( \mathbf { x } _ { t _ { i } } ^ { \Phi } , \sigma _ { t _ { i } } ) \big )$ and $f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } )$ with respect to the model parameter $\theta$ as:
$$
\begin{array} { r l } & { \nabla _ { \theta } \mathcal { D } \big ( \mathrm { s g } \big ( \mathbf { \Delta } f _ { \theta } ( \mathbf { x } _ { t _ { i } } ^ { \Phi } , \sigma _ { t _ { i } } ) \big ) , f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) \big ) } \\ & { = ( 1 + o ( 1 ) ) C \alpha \left[ \| \partial _ { \mathrm { C D } } \mathbf { \Delta } f _ { \theta } \| ^ { \alpha - 2 } ( \partial _ { \mathrm { C D } } \mathbf { \Delta } f _ { \theta } ) ^ { \top } \frac { \partial f _ { \theta } } { \partial \theta } \right] \cdot ( t _ { i + 1 } - t _ { i } ) ^ { \alpha - 1 } } \end{array}
$$
Here, the expression of the distance betw $\begin{array} { r l } { \| \partial _ { \mathrm { C D } } { f } _ { \boldsymbol { \theta } } \| ^ { \alpha - 2 } ( \partial _ { \mathrm { C D } } { f } _ { \boldsymbol { \theta } } ) ^ { \top } \frac { \partial { f } _ { \boldsymbol { \theta } } } { \partial \boldsymbol { \theta } } } & { { } } \end{array}$ quare bracket is evaluated at is estimated as: $\left( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } \right)$ . Similarly, the gradient $f _ { \theta } ( \mathbf { x } _ { t _ { i } } , \sigma _ { t _ { i } } )$ $f _ { \theta } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } )$
$$
\begin{array} { l } { \displaystyle \nabla _ { \theta } \mathcal { D } \big ( \mathrm { s g } \big ( { f _ { \theta } } ( \mathbf { x } _ { t _ { i } } , \sigma _ { t _ { i } } ) \big ) , { f _ { \theta } } ( \mathbf { x } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } ) \big ) } \\ { \displaystyle = ( 1 + o ( 1 ) ) C \alpha \left[ \| \partial _ { \mathrm { C T } } { f _ { \theta } } \| ^ { \alpha - 2 } ( \partial _ { \mathrm { C T } } { f _ { \theta } } ) ^ { \top } \frac { \partial { f _ { \theta } } } { \partial \theta } \right] \cdot ( t _ { i + 1 } - t _ { i } ) ^ { \alpha - 1 } } \end{array}
$$
Combining these two estimates, we can now compute the limit of the scaled gradient $N ^ { \alpha - 1 } \nabla _ { \theta } \mathcal { L } _ { \bullet } ( \theta )$ for each $\bullet \in \{ \mathrm { C D } , \mathrm { C T } \}$ as:
$$
\begin{array} { l } { { \displaystyle N ^ { \alpha - 1 } \nabla _ { \theta } \mathcal { L } _ { \bullet } ( \theta ) } } \\ { { \displaystyle = C \alpha T ^ { \alpha - 2 } \sum _ { i = 0 } ^ { N - 1 } \lambda ( \sigma _ { t _ { i } } ) \mathbb { E } \bigg [ ( 1 + o ( 1 ) ) [ \| \partial _ { \bullet } f _ { \theta } \| ^ { \alpha - 2 } ( \partial _ { \bullet } f _ { \theta } ) ^ { \top } \frac { \partial f _ { \theta } } { \partial \theta } ] \bigg ] \cdot ( t _ { i + 1 } - t _ { i } ) } } \\ { { \displaystyle C \alpha T ^ { \alpha - 2 } \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } \bigg [ \| \partial _ { \bullet } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) \| ^ { \alpha - 2 } ( \partial _ { \bullet } f _ { \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) ) ^ { \top } \frac { \partial f _ { \theta } } { \partial \theta } ( \mathbf { x } _ { t } , \sigma _ { t } ) \bigg ] \mathrm { d } t } } \end{array}
$$
as $N \to \infty$ . Finally, if $\alpha \neq 2$ , then the term $\| \partial _ { \bullet } \mathbf { \mathscr { f } } _ { \boldsymbol { \theta } } \| ^ { \alpha - 2 } \partial _ { \bullet } \mathbf { \mathscr { f } } _ { \boldsymbol { \theta } } ^ { \top }$ is a nonlinear transformation of $\partial _ { \bullet } f _ { \theta }$ . This nonlinearity tells that, in general,
$$
\mathbb { E } \left[ \left. \partial _ { \mathrm { C T } } \pmb { f } _ { \theta } \right. ^ { \alpha - 2 } \left( \partial _ { \mathrm { C T } } \pmb { f } _ { \theta } \right) ^ { \top } \middle | \mathbf { x } _ { t } \right] \neq \left. \partial _ { \mathrm { C D } } \pmb { f } _ { \theta } \right. ^ { \alpha - 2 } \left( \partial _ { \mathrm { C D } } \pmb { f } _ { \theta } \right) ^ { \top } .
$$
herefore, the scaled gradient limits are not identical as functions of $\theta$ , and in particular, their zero sets do not coincide.
Differences with Song et al. (2023)’s results. The previous theorem states a discrepancy between CT and CD objectives. However, Song et al. (2023) provide equivalence results between consistency training and consistency distillation. The differences come from the following reasons.
• In Song et al. (2023, Theorem 2), it is stated that $L _ { \mathrm { C T } } = L _ { \mathrm { C D } } + o ( \Delta T )$ . However, in this theorem, the $o ( \Delta T )$ is actually too large compared to the other term, and consequently the result is uninformative. Indeed it has two the two following problems: (i) if the distance function decays faster than the norm does, i.e., ${ \mathcal { D } } ( x , y ) = o ( \| x - y \| )$ , then the $o ( \Delta T )$ term is actually too large compared to the magnitude of the two losses as $N \to \infty$ ; (ii) The $C ^ { 2 }$ -regularity assumption on the distance function $\mathcal { D }$ is too restrictive, excluding many cases such as the distance function given by a norm. For example, such a breakdown happens when $\mathcal { D } ( x , y )$ is a metric induced by the norm, i.e., ${ \mathcal { D } } ( x , y ) = \| x - y \|$ . In this case, its partial derivatives, such as $\begin{array} { r } { \partial _ { 2 } \mathcal { D } ( x , y ) = \frac { \partial } { \partial y } \mathcal { D } ( x , y ) } \end{array}$ appearing in the proof, are undefined along $\mathbf { X } = \mathbf { y }$ • In Song et al. (2023, Theorem 6), the theorem about limiting gradient equality is stated with a general distance function $\mathcal { D }$ . However, the requirements on the Hessian of the distance function restrict the theorem’s validity where the distance function is an (asymptotic) quadratic loss. Indeed, in their proof, it turns out that the Hessian can define a non-zero value only when $\mathcal { D }$ is an (asymptotic) quadratic loss. This coincides with our results in the case $\alpha = 2$ .
# A.2. Proxy of the Regularizer
In this subsection, we establish a theoretical result about the decay rate of the proxy of the regularizer. As preparation for the main result and for future use, we introduce a simple lemma that decomposes the forward flow generated by a vector field into the sum of a scaling term and a correction term that is well-behaved.
Lemma 2. Assume that $\phi$ is the forward flow generated by the vector field $\mathbf { v } _ { t }$ , meaning that it solves the characteristic equation:
$$
\frac { \partial } { \partial t } \phi ( \mathbf { x } , \sigma _ { t } ) = \mathbf { v } _ { t } ( \phi ( \mathbf { x } , \sigma _ { t } ) ) , \qquad \phi ( \mathbf { x } , \sigma _ { 0 } ) = \mathbf { x } .
$$
Also, assume that $\mathbf { v } _ { t }$ is defined as
$$
\mathbf { v } _ { t } ( \mathbf { x } ) = \frac { \dot { \sigma } _ { t } } { \sigma _ { t } } ( \mathbf { x } - D ( \mathbf { x } , \sigma _ { t } ) )
$$
for some function $_ { D }$ , which we call $a$ “denoiser”. Then $\phi$ satisfies the following integral equation:
$$
\mathbf { x } = \frac { \sigma _ { 0 } } { \sigma _ { t } } \phi ( \mathbf { x } , \sigma _ { t } ) + \sigma _ { 0 } \int _ { 0 } ^ { t } \frac { \dot { \sigma } _ { s } } { \sigma _ { s } ^ { 2 } } D ( \phi ( \mathbf { x } , \sigma _ { s } ) , \sigma _ { s } ) \ \mathrm { d } s .
$$
Proof. We first compute the derivative of $\phi / \sigma _ { t }$ :
$$
\begin{array} { l } { \displaystyle { \frac { \partial } { \partial t } \left( \frac { \phi ( \mathbf { x } , \sigma _ { t } ) } { \sigma _ { t } } \right) = - \frac { \dot { \sigma } _ { t } } { \sigma _ { t } ^ { 2 } } \phi ( \mathbf { x } , \sigma _ { t } ) + \frac { 1 } { \sigma _ { t } } \cdot \frac { \dot { \sigma } _ { t } } { \sigma _ { t } } ( \phi ( \mathbf { x } , \sigma _ { t } ) - D ( \phi ( \mathbf { x } , \sigma _ { t } ) , \sigma _ { t } ) ) } } \\ { \displaystyle { \qquad = - \frac { \dot { \sigma _ { t } } } { \sigma _ { t } ^ { 2 } } D ( \phi ( \mathbf { x } , \sigma _ { t } ) , \sigma _ { t } ) . } } \end{array}
$$
Integrating both sides with respect to $t$ , it follows that
$$
\frac { \phi ( \mathbf { x } , \sigma _ { t } ) } { \sigma _ { t } } - \frac { \phi ( \mathbf { x } , \sigma _ { 0 } ) } { \sigma _ { 0 } } = - \int _ { 0 } ^ { t } \frac { \dot { \sigma _ { s } } } { \sigma _ { s } ^ { 2 } } D ( \phi ( \mathbf { x } , \sigma _ { s } ) , \sigma _ { s } ) \ \mathrm { d } s .
$$
Rearranging and applying the initial condition $\phi ( \mathbf { x } , \sigma _ { 0 } ) = \mathbf { x }$ , we obtain the desired equation.
As an immediate consequence of this lemma, we obtain the following result about the asymptotic structure of a trained consistency model:
Lemma 3. Assume that $\mathring { f }$ is the consistency model generated by a bounded denoiser $_ D$ , in the sense that $\mathring { f }$ solves the transport equation
$$
\frac { \partial \hat { f } } { \partial \sigma } ( \mathbf { x } , \sigma _ { t } ) \dot { \sigma } _ { t } + \frac { \partial \hat { f } } { \partial \mathbf { x } } ( \mathbf { x } , \sigma _ { t } ) \cdot \mathbf { v } _ { t } ( \mathbf { x } ) = 0
$$
for a vector field $\overset { \circ } { \mathbf { v } } _ { t }$ defined as in Equation (51) with the denoiser $_ D$ . Then
$$
\mathring { f } ( \mathbf { x } , \sigma _ { t } ) = \frac { \sigma _ { 0 } } { \sigma _ { t } } \mathbf { x } + \mathcal { O } ( 1 )
$$
uniformly in $\mathbf { x }$ and $\sigma _ { t }$ . The implicit bound of the error term can be chosen to be the bound of $_ { D }$ .
Proof. Let $\phi$ be the forward flow generated by $\mathring { \mathbf { v } } _ { t }$ as in Lemma 2. This $\phi$ is precisely the inverse of the consistency model $\mathring { f }$ , in the sense that $\phi ( { \mathring { f } } ( \mathbf { x } , \sigma ) , \sigma ) { \mathrm { = } } \mathbf { x }$ holds. Then, replacing $\mathbf { x }$ in the equation of Lemma 2 with $\mathring { f } ( \mathbf { x } , \sigma _ { t } )$ , we get
$$
\hat { \pmb f } ( \mathbf x , \sigma _ { t } ) = \frac { \sigma _ { 0 } } { \sigma _ { t } } \mathbf x + \sigma _ { 0 } \int _ { 0 } ^ { t } \frac { \dot { \sigma } _ { s } } { \sigma _ { s } ^ { 2 } } { \cal D } ( \phi ( \hat { f } ( \mathbf x , \sigma _ { t } ) , \sigma _ { s } ) , \sigma _ { s } ) \ \mathrm d s .
$$
Now let $R$ be such that $\| D ( \mathbf { x } , \sigma ) \| \leq R$ for any $\mathbf { x } \in \mathbb { R } ^ { d }$ and noise level $\sigma$ . Then, the integral term in Equation (58) is bounded as:
$$
\left\| \sigma _ { 0 } \int _ { 0 } ^ { t } \frac { \dot { \sigma } _ { s } } { \sigma _ { s } ^ { 2 } } D ( \phi ( \dot { f } ( \mathbf { x } , \sigma _ { t } ) , \sigma _ { s } ) , \sigma _ { s } ) \mathrm { d } s \right\| \leq \sigma _ { 0 } \int _ { 0 } ^ { t } \frac { \dot { \sigma } _ { s } } { \sigma _ { s } ^ { 2 } } R \mathrm { d } s = \sigma _ { 0 } R \left( \frac { 1 } { \sigma _ { 0 } } - \frac { 1 } { \sigma _ { t } } \right) \leq R .
$$
This proves the desired claim.
Now we turn to the main result, which analyzes the asymptotic behavior of $\tilde { \mathcal { R } } _ { t , \mathrm { I C } }$ and $\mathcal { \tilde { R } } _ { t , \mathrm { G C } }$ , as $t \to \infty$ :
Theorem 2. Assume that the data distribution contains more than a single point. Also, assume that the generator-augmented coupling between the predicted data point $\hat { \mathbf { x } } _ { t }$ and noise $\mathbf { z }$ is computed via an ideal consistency model $\ddot { f }$ , i.e., the flow of the PF-ODE. Then, as $t \to \infty$ ,
$$
\tilde { \mathcal { R } } _ { t , \mathrm { G C } } \ll \tilde { \mathcal { R } } _ { t , \mathrm { I C } } .
$$
Proof. We first investigate the asymptotic behavior of $\tilde { \mathcal { R } } _ { t , \mathrm { I C } }$ in the limit of $t \to \infty$ . Recall that the diffusion process $\mathbf { x } _ { t }$ is given by $\mathbf { x } _ { t } = \mathbf { x } _ { \star } + \sigma _ { t } \mathbf { z }$ for $( \mathbf { x } _ { \star } , \mathbf { z } ) \sim q _ { \mathrm { I } }$ , and note that
$$
\dot { { \bf x } } _ { t } - { \bf v } _ { t } ( { \bf x } _ { t } ) = \dot { \sigma } _ { t } { \bf z } - \mathbb { E } [ \dot { \sigma } _ { t } { \bf z } | { \bf x } _ { t } ] = - \frac { \dot { \sigma } _ { t } } { \sigma _ { t } } ( { \bf x } _ { \star } - D ( { \bf x } _ { t } , \sigma _ { t } ) ) ,
$$
where $D ( \mathbf { x } _ { t } , \sigma _ { t } ) = \mathbb { E } [ \mathbf { x } _ { \star } | \mathbf { x } _ { t } ]$ is the denoiser. Plugging this into the definition of $\tilde { \mathcal { R } } _ { t , \mathrm { I C } }$ , we get
$$
\tilde { \mathcal { R } } _ { t , \mathrm { I C } } = \left( \frac { \dot { \sigma } _ { t } } { \sigma _ { t } } \right) ^ { 2 } \mathbb { E } \left[ \left\| \mathbf { x } _ { \star } - D ( \mathbf { x } _ { t } , \sigma _ { t } ) \right\| ^ { 2 } \right] .
$$
Now, we claim that $D ( \mathbf { x } _ { t } , \sigma _ { t } ) = \mathbb { E } [ \mathbf { x } _ { \star } | \mathbf { x } _ { t } ] \mathbb { E } [ \mathbf { x } _ { \star } ]$ as $t \to \infty$ . Intuitively, this is because $\mathbf { x } _ { t } \approx \sigma _ { t } \mathbf { z }$ for large $t$ , and $\sigma _ { t } \mathbf { z }$ is independent of $\mathbf { x } _ { \star }$ . More formally, note that the conditional distribution of $\mathbf { x } _ { t }$ given $\mathbf { x } _ { \star }$ is $p ( \mathbf x _ { t } | \mathbf x _ { \star } ) = \mathcal N ( \mathbf x _ { t } ; \mathbf x _ { \star } , \sigma _ { t } ^ { 2 } \mathbf I )$ . By Bayes’ theorem, the conditional distribution of $\mathbf { x } _ { \star }$ given $\mathbf { x } _ { t }$ is
$$
p ( \mathbf { x } _ { \star } | \mathbf { x } _ { t } ) = \frac { p ( \mathbf { x } _ { t } | \mathbf { x } _ { \star } ) p ( \mathbf { x } _ { \star } ) } { \int _ { \mathbb { R } ^ { d } } p ( \mathbf { x } _ { t } | \mathbf { x } _ { \star } ^ { \prime } ) p ( \mathbf { x } _ { \star } ^ { \prime } ) \ \mathrm { d } \mathbf { x } _ { \star } ^ { \prime } } = \frac { \exp \left( - \frac { 1 } { 2 \sigma _ { t } ^ { 2 } } \left| \mathbf { x } _ { t } - \mathbf { x } _ { \star } \right| ^ { 2 } \right) p ( \mathbf { x } _ { \star } ) } { \int _ { \mathbb { R } ^ { d } } \exp \left( - \frac { 1 } { 2 \sigma _ { t } ^ { 2 } } \left| \mathbf { x } _ { t } - \mathbf { x } _ { \star } ^ { \prime } \right| ^ { 2 } \right) p ( \mathbf { x } _ { \star } ^ { \prime } ) \ \mathrm { d } \mathbf { x } _ { \star } ^ { \prime } } .
$$
As $t \infty$ , we have $\sigma _ { t } \infty$ , so the exponential terms converge to 1. Consequently, $p ( \mathbf { x } _ { \star } | \mathbf { x } _ { t } ) p ( \mathbf { x } _ { \star } )$ and hence $\mathbb { E } [ \mathbf { x } _ { \star } | \mathbf { x } _ { t } ] \mathbb { E } [ \mathbf { x } _ { \star } ]$ as claimed. Thus,
$$
\tilde { \mathcal { R } } _ { t , \mathrm { I C } } \sim \left( \frac { \dot { \sigma } _ { t } } { \sigma _ { t } } \right) ^ { 2 } \mathbb { E } \left[ \left\| \mathbf { x } _ { \star } - \mathbb { E } [ \mathbf { x } _ { \star } ] \right\| ^ { 2 } \right] .
$$
Since the data distribution $p _ { \star }$ is assumed to have more than one point, the variance $\mathbb { E } [ \| \mathbf { x } _ { \star } - \mathbb { E } [ \mathbf { x } _ { \star } ] \| ^ { 2 } ]$ is strictly positive.
Therefore, $\tilde { \mathcal { R } } _ { t , \mathrm { I C } }$ decays at a rate asymptotically proportional to $\big ( \frac { \dot { \sigma } _ { t } } { \sigma _ { t } } \big ) ^ { 2 }$ .
Next, we investigate the asymptotic behavior of $\tilde { \mathcal { R } } _ { t , \mathrm { G C } }$ . Recall the consistency training loss for GC, Equation (15). Under the assumptions in Theorem 1, the scaled loss $N ^ { \alpha } { \mathcal { L } } _ { \mathrm { G C } } ( \theta )$ converges to
$$
\mathcal { L } _ { \mathrm { G C } } ^ { \infty } ( \theta ) = C T ^ { \alpha - 1 } \int _ { 0 } ^ { T } \lambda ( \sigma _ { t } ) \mathbb { E } \left[ \left\| \frac { \partial f _ { \theta } } { \partial \sigma } ( \tilde { \mathbf { x } } _ { t } , \sigma _ { t } ) \dot { \sigma } _ { t } + \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \tilde { \mathbf { x } } _ { t } , \sigma _ { t } ) \cdot \dot { \sigma } _ { t } \mathbf { z } \right\| ^ { \alpha } \right] \mathrm { d } t .
$$
Here, $\tilde { \mathbf { x } } _ { t } = \hat { \mathbf { x } } _ { t } + \sigma _ { t } \mathbf { z }$ and $\hat { \mathbf { x } } _ { t } = \mathring { f } ( \mathbf { x } _ { t } , \sigma _ { t } )$ , where $\mathring { f }$ is the ideal consistency model for the flow associated with the diffusion process $\mathbf { x } _ { t }$ . The proof of this claim is similar to that of Theorem 1, so we only highlight the necessary changes. Most importantly, the velocity term is not $\dot { \tilde { \mathbf { x } } } _ { t }$ but $\dot { \sigma } _ { t } \mathbf { z }$ . This is due to how the discrete-time samples are constructed. Indeed, from Equation (14), we find that $\tilde { \mathbf { x } } _ { t _ { i + 1 } } - \tilde { \mathbf { x } } _ { t _ { i } } = ( \sigma _ { t _ { i + 1 } } - \sigma _ { t _ { i } } ) \mathbf { z }$ , which manifests as the velocity term $\dot { \sigma } _ { t } \mathbf { z }$ in Equation (65). Consequently, the associated (average) velocity field $\tilde { \mathbf { v } } _ { t }$ is given by
$$
\tilde { { \bf v } } _ { t } ( \tilde { { \bf x } } _ { t } ) = \mathbb { E } [ \dot { \sigma } _ { t } { \bf z } | \tilde { { \bf x } } _ { t } ] = \frac { \dot { \sigma } _ { t } } { \sigma _ { t } } ( \tilde { { \bf x } } _ { t } - \mathbb { E } [ \hat { { \bf x } } _ { t } | \tilde { { \bf x } } _ { t } ] ) .
$$
Therefore, $\tilde { \mathcal { R } } _ { t , \mathrm { G C } }$ reduces to
$$
\mathcal { \tilde { R } } _ { t , \mathrm { G C } } = \left( \frac { \dot { \sigma } _ { t } } { \sigma _ { t } } \right) ^ { 2 } \mathbb { E } \left[ \left\| \hat { { \mathbf { x } } } _ { t } - \mathbb { E } [ \hat { { \mathbf { x } } } _ { t } \vert \tilde { { \mathbf { x } } } _ { t } ] \right\| ^ { 2 } \right] .
$$
Now, unlike in the IC case, we claim that $\mathbb { E } [ \hat { \mathbf { x } } _ { t } | \tilde { \mathbf { x } } _ { t } ] \approx \hat { \mathbf { x } } _ { t }$ as $t \to \infty$ . Heuristically, this is because both $\hat { \mathbf { x } } _ { t }$ and $\tilde { \mathbf { x } } _ { t }$ are almost deterministic functions of $\mathbf { z }$ ; hence, the conditioning has negligible effect in the limit.
More precisely, let $\phi$ be the forward flow generated by the PF-ODE vector field $\mathbf { v } _ { t }$ . As in the proof of Lemma 2, integrating both sides of Equation (54) from $t$ to $u$ yields
$$
\frac { \phi ( \mathbf { x } , \sigma _ { u } ) } { \sigma _ { u } } = \frac { \phi ( \mathbf { x } , \sigma _ { t } ) } { \sigma _ { t } } - \int _ { t } ^ { u } \frac { \dot { \sigma _ { s } } } { \sigma _ { s } ^ { 2 } } D ( \phi ( \mathbf { x } , \sigma _ { s } ) , \sigma _ { s } ) ~ \mathrm { d } s .
$$
Letting $u \to \infty$ , we claim that the right-hand side converges. Indeed, the empirical data distribution $p _ { \star }$ has compact support, meaning all the data points are confined in a bounded region of $\mathbb { R } ^ { d }$ . Since the values of $_ { D }$ are weighted averages of the data points, it follows that $_ { D }$ is also bounded. Then the integrand $\begin{array} { r } { \frac { \dot { \sigma _ { s } } } { \sigma _ { s } ^ { 2 } } D ( \phi ( \mathbf { x } , \sigma _ { s } ) , \sigma _ { s } ) } \end{array}$ is absolutely integrable on $[ t , \infty )$ , hence the convergence follows. Moreover, the limit does not depend on $t$ . Denote this limit by $\rho ( \mathbf { x } )$ :
$$
\rho ( \mathbf x ) = \frac { \phi ( \mathbf x , \sigma _ { t } ) } { \sigma _ { t } } - \int _ { t } ^ { \infty } \frac { \dot { \sigma _ { s } } } { \sigma _ { s } ^ { 2 } } D ( \phi ( \mathbf x , \sigma _ { s } ) , \sigma _ { s } ) ~ \mathrm d s .
$$
As shown in the previous part, we know that $D ( \mathbf { x } , t ) = c + o ( 1 )$ as $t \to \infty$ with $c = \mathbb { E } [ x _ { \star } ]$ . Then, multiplying both sides of Equation (69) by $\sigma _ { t }$ and rearranging, we have, for large $t$ ,
$$
\begin{array} { l } { \displaystyle \phi ( \mathbf { x } , \sigma _ { t } ) = \sigma _ { t } \pmb { \rho } ( \mathbf { x } ) + \sigma _ { t } \displaystyle \int _ { t } ^ { \infty } \frac { \dot { \sigma _ { s } } } { \sigma _ { s } ^ { 2 } } \pmb { D } ( \phi ( \mathbf { x } , \sigma _ { s } ) , \sigma _ { s } ) \ \mathrm { d } s } \\ { \displaystyle = \sigma _ { t } \pmb { \rho } ( \mathbf { x } ) + ( c + o ( 1 ) ) \sigma _ { t } \displaystyle \int _ { t } ^ { \infty } \frac { \dot { \sigma _ { s } } } { \sigma _ { s } ^ { 2 } } \ \mathrm { d } s } \\ { \displaystyle = \sigma _ { t } \pmb { \rho } ( \mathbf { x } ) + c + o ( 1 ) . } \end{array}
$$
Since $\phi$ is a bijection, the above relation tells that $\rho ( \mathbf { x } )$ is also a bijection. Next, we replace $\mathbf { x } \gets \hat { \mathbf { x } } _ { t }$ in the equation defining $\rho ( \mathbf { x } )$ , Equation (69), to obtain:
$$
\rho ( \hat { \mathbf { x } } _ { t } ) = \mathbf { z } + \frac { \mathbf { x } _ { \star } } { \sigma _ { t } } - \int _ { t } ^ { \infty } \frac { \dot { \sigma _ { s } } } { \sigma _ { s } ^ { 2 } } D ( \phi ( \hat { \mathbf { x } } _ { t } , \sigma _ { s } ) , \sigma _ { s } ) ~ \mathrm { d } s .
$$
Since $\rho$ is invertible, applying $\rho ^ { - 1 }$ to both sides yields
$$
\begin{array} { r l } & { \hat { \mathbf { x } } _ { t } = \rho ^ { - 1 } \left( \mathbf { z } + \frac { \mathbf { x } _ { \star } } { \sigma _ { t } } - \displaystyle \int _ { t } ^ { \infty } \frac { \dot { \sigma _ { s } } } { \sigma _ { s } ^ { 2 } } D ( \phi ( \hat { \mathbf { x } } _ { t } , \sigma _ { s } ) , \sigma _ { s } ) \ \mathrm { d } s \right) } \\ & { \quad = \rho ^ { - 1 } \left( \displaystyle \frac { \tilde { \mathbf { x } } _ { t } } { \sigma _ { t } } + \frac { \mathbf { x } _ { \star } - \hat { \mathbf { x } } _ { t } } { \sigma _ { t } } - \displaystyle \int _ { t } ^ { \infty } \frac { \dot { \sigma _ { s } } } { \sigma _ { s } ^ { 2 } } D ( \phi ( \hat { \mathbf { x } } _ { t } , \sigma _ { s } ) , \sigma _ { s } ) \ \mathrm { d } s \right) } \end{array}
$$
Since all of $\mathbf { x } _ { \star } , \hat { \mathbf { x } } _ { t }$ , and $_ { D }$ are bounded by the largest norm of the data point, they are all finite. Hence, the last line shows that $\begin{array} { r } { \hat { \mathbf { x } } _ { t } = \rho ^ { - 1 } \big ( \frac { \tilde { \mathbf { x } } _ { t } } { \sigma _ { t } } + \mathcal { O } ( \frac { 1 } { \sigma _ { t } } ) \big ) } \end{array}$ , demonstrating that $\hat { \mathbf { x } } _ { t }$ is almost a deterministic function of $\tilde { \mathbf { x } } _ { t }$ . Therefore, $\mathbb { E } [ \hat { \mathbf { x } } _ { t } | \tilde { \mathbf { x } } _ { t } ] \approx \hat { \mathbf { x } } _ { t }$ as required. Consequently, $\mathcal { \tilde { R } } _ { t , \mathrm { G C } }$ satisfies
$$
\tilde { \mathcal { R } } _ { t , \mathrm { G C } } \ll \left( \frac { \dot { \sigma } _ { t } } { \sigma _ { t } } \right) ^ { 2 } .
$$
This proves that $\tilde { \mathcal { R } } _ { t , \mathrm { G C } } \ll \tilde { \mathcal { R } } _ { t , \mathrm { I C } }$ as required.
# A.3. Transport Cost
As a base for the two corollaries presented in the paper, we will first derive a useful representation of the derivative of the transport cost.
The main purpose of the lemma is to provide a more tractable representation of $c ^ { \prime } ( t )$ , the time derivative of the expected transport cost. We expect $c ( t )$ to decrease with $t$ because the predicted data point $\mathring { f } ( \mathbf { x } _ { t } , \sigma _ { t } )$ becomes more dependent on the noise $\mathbf { z }$ as $t$ increases. However, directly analyzing $\bar { f } ( \mathbf { x } _ { t } , \sigma _ { t } ) - \mathbf { z }$ is challenging because the dependence of $\mathring { f } ( \mathbf { x } _ { t } , \sigma _ { t } )$ on $\mathbf { z }$ is not explicit. Therefore, the lemma aims to:
• identify a quantity that better captures the dependence between $\mathbf { z }$ and $\mathbf { x } _ { t }$ ;
• relate $c ( t )$ to this quantity.
The proof proceeds by deriving a key property of the ground-truth consistency map $\mathring { f }$ : it satisfies the transport equation,
$$
\frac { \partial \hat { f } } { \partial \sigma } ( \mathbf { x } , \sigma _ { t } ) \dot { \sigma } _ { t } + \frac { \partial \hat { f } } { \partial \mathbf { x } } ( \mathbf { x } , \sigma _ { t } ) \cdot \mathbf { v } _ { t } ( \mathbf { x } ) = 0 .
$$
This equation is equivalent to saying that the conditional expectation of the time derivative of $\mathring { f } ( \mathbf { x } _ { t } , \sigma _ { t } )$ given $\mathbf { x } _ { t }$ is zero:
$$
\mathbb { E } \left[ \frac { \partial } { \partial t } \mathring { f } ( \mathbf { x } _ { t } , \sigma _ { t } ) \Bigg | \mathbf { x } _ { t } \right] = 0 .
$$
By leveraging this property, we can simplify $c ^ { \prime } ( t )$ into an expression involving $\mathbf { w } _ { t } = \mathbf { z } - \mathbb { E } [ \mathbf { z } \mid \mathbf { x } _ { t } ]$ , the residual between the true noise $\mathbf { z }$ and its prediction given $\mathbf { x } _ { t }$ . This residual captures the uncertainty in predicting $\mathbf { z }$ based on $\mathbf { x } _ { t }$ , allowing us to relate $c ^ { \prime } ( t )$ directly to the prediction accuracy of $\mathring { f }$ .
Lemma 1 (Transport cost of GC coupling). Assume that $\mathring { f }$ is a continuously differentiable function representing the ground-truth consistency model, i.e. the flow of the PF-ODE induced by the diffusion process $\mathbf { x } _ { t }$ . Define $\begin{array} { r } { { \bf w } _ { t } = { \bf z } - \mathbb { E } [ { \bf z } | { \bf x } _ { t } ] = { \bf \Xi } } \end{array}$ $\begin{array} { r } { \frac { 1 } { \dot { \sigma } _ { t } } \big ( \dot { \mathbf { x } } _ { t } - \mathbb { E } [ \dot { \mathbf { x } } _ { t } \mid \mathbf { x } _ { t } ] \big ) } \end{array}$ . Then:
$$
c ^ { \prime } ( t ) = - 2 \dot { \sigma } _ { t } \mathbb { E } \left[ \left. \frac { \partial \hat { f } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \mathbf { w } _ { t } , \mathbf { w } _ { t } \right. \right] .
$$
Proof. Note that the inverse flow $\mathring { \mathbf { f } } ^ { - 1 } ( \mathbf { y } , \sigma _ { t } )$ transports the initial point $\mathbf { y }$ at time $t = 0$ along the vector field $\mathbf { v } _ { t }$ up to time $t$ . Consequently, $\mathring { f } ^ { - 1 }$ is a flow with the corresponding vector field $\mathbf { v } _ { t }$ :
$$
\frac { \partial } { \partial t } [ \mathring { \mathbf { f } } ^ { - 1 } ( \mathbf { y } , \sigma _ { t } ) ] = \mathbf { v } _ { t } ( \mathring { \mathbf { f } } ^ { - 1 } ( \mathbf { y } , \sigma _ { t } ) ) .
$$
By differentiating both sides of the identity $\mathbf { y } = \mathring { f } ( \mathring { f } ^ { - 1 } ( \mathbf { y } , \sigma _ { t } ) , \sigma _ { t } )$ with respect to $t$ and applying the above observation, we get:
$$
\begin{array} { l } { { 0 = \displaystyle \frac { \partial } { \partial t } \left[ \bar { f } ( \bar { f } ^ { - 1 } ( { \bf y } , \sigma _ { t } ) , \sigma _ { t } ) \right] } } \\ { { \displaystyle = \frac { \partial \bar { f } } { \partial \sigma } ( \bar { f } ^ { - 1 } ( { \bf y } , \sigma _ { t } ) , \sigma _ { t } ) \dot { \sigma } _ { t } + \frac { \partial \bar { f } } { \partial { \bf x } } ( \bar { f } ^ { - 1 } ( { \bf y } , \sigma _ { t } ) , \sigma _ { t } ) \cdot \frac { \partial } { \partial t } [ \bar { f } ^ { - 1 } ( { \bf y } , \sigma _ { t } ) ] } } \\ { { \displaystyle = \frac { \partial \bar { f } } { \partial \sigma } ( { \bf x } , \sigma _ { t } ) \dot { \sigma } _ { t } + \frac { \partial \bar { f } } { \partial { \bf x } } ( { \bf x } , \sigma _ { t } ) \cdot { \bf v } _ { t } ( { \bf x } ) } , } \end{array}
$$
where the substitution $\mathbf { x } = \mathring { \mathbf { f } } ^ { - 1 } ( \mathbf { y } , \sigma _ { t } )$ is used in the last step. Consequently,
$$
\begin{array} { r l } & { c ^ { \prime } ( t ) = 2 \mathbb { E } \left[ \left. \frac { \partial \hat { \boldsymbol { \mu } } } { \partial t } [ \dot { f } ( \mathbf { x } _ { t } , \sigma _ { t } ) ] , \dot { f } ( \mathbf { x } _ { t } , \sigma _ { t } ) - \mathbf { z } \right. \right] } \\ & { \quad \quad = 2 \mathbb { E } \left[ \left. \frac { \partial \hat { \boldsymbol { f } } } { \partial \sigma } ( \mathbf { x } _ { t } , \sigma _ { t } ) \dot { \sigma } _ { t } + \frac { \partial \hat { \boldsymbol { f } } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \dot { \mathbf { x } } _ { t } , \dot { f } ( \mathbf { x } _ { t } , \sigma _ { t } ) - \mathbf { z } \right. \right] } \\ & { \quad \quad = 2 \mathbb { E } \left[ \left. \frac { \partial \hat { \boldsymbol { f } } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot ( \dot { \mathbf { x } } _ { t } - \mathbf { v } _ { t } ( \mathbf { x } ) ) , \dot { f } ( \mathbf { x } _ { t } , \sigma _ { t } ) - \mathbf { z } \right. \right] } \\ & { \quad \quad = 2 \dot { \sigma } _ { t } \mathbb { E } \left[ \left. \frac { \partial \hat { \boldsymbol { f } } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot ( \mathbf { z } - \mathbb { E } [ \mathbf { z } | \mathbf { x } _ { t } ] ) , \dot { f } ( \mathbf { x } _ { t } , \sigma _ { t } ) - \mathbf { z } \right. \right] , } \end{array}
$$
where we used the relations $\mathbf { x } _ { t } = \mathbf { x } _ { \star } + \sigma _ { t } \mathbf { z }$ and $\mathbf { v } _ { t } ( \mathbf { x } ) = \mathbb { E } [ \dot { \mathbf { x } } _ { t } | \mathbf { x } _ { t } ]$ . Now, let $\mathbf { w } _ { t } = \mathbf { z } - \mathbb { E } [ \mathbf { z } \mid \mathbf { x } _ { t } ]$ . Then $\mathbb { E } [ { \mathbf w } _ { t } \ | \ { \mathbf x } _ { t } ] = 0$ , hence by an application of the law of iterated expectations, $\mathbb { E } [ \langle \mathbf { w } _ { t } , g ( \mathbf { x } _ { t } ) \rangle ] = 0$ for essentially any function $g : \mathbb { R } ^ { d } \mathbb { R } ^ { d }$ . Using this, we can further simplify the last line as:
$$
c ^ { \prime } ( t ) = - 2 \dot { \sigma } _ { t } \mathbb { E } \left[ \left. \frac { \partial \hat { f } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \mathbf { w } _ { t } , \mathbf { z } \right. \right] = - 2 \dot { \sigma } _ { t } \mathbb { E } \left[ \left. \frac { \partial \hat { f } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \cdot \mathbf { w } _ { t } , \mathbf { w } _ { t } \right. \right] ,
$$
proving the desired equality.
An immediate consequence of this lemma is that $c ( t )$ decreases for small $t$ :
Corollary 1 (Decreasing transport cost of GC coupling in $t \to 0 ^ { + }$ ). There exists a $t _ { * } > 0$ such that for all $t \in [ 0 , t _ { * } ]$ , the derivative of $c ( t )$ takes the form $c ^ { \prime } ( t ) = - 2 \dot { \sigma } _ { t } a _ { t }$ with $a _ { t } > 0$ . Hence for $\dot { \sigma } _ { t }$ positive, the cost is decreasing. In particular, in the EDM setting where $\sigma _ { t } = t$ , $c ( t )$ is decreasing for small $t$ .
Proof. The proof of this corollary proceeds by noting that for $t = 0$ , the consistency model $\mathring { \mathbf { f } } ( \mathbf { x } , t )$ is an identity function, its Jacobian is an identity matrix leading to $a _ { t } = \mathbb { E } [ \| \mathbf { w } _ { t } \| ^ { 2 } ] > 0$ and by assumption, all the elements of the Jacobian are continuous. By continuity of $a _ { t } , t _ { * }$ exists and invoking intermediate value theorem on $a _ { t }$ concludes the proof. □
The next result is the statement about the asymptotic behavior of the transport cost $c ( t )$ in the large- $\cdot t$ regime.
Corollary 2 (Decreasing transport cost of GC coupling in $t \approx t _ { \mathrm { m a x } }$ ). Assume that the consistency model $\mathring { f } ( x , \sigma )$ is a scaling function increasing. $\begin{array} { r } { \mathring { \pmb { f } } ( \mathbf { x } , \sigma _ { t } ) = \frac { \sigma _ { 0 } } { \sigma _ { t } } \mathbf { x } } \end{array}$ . Then, we have $\begin{array} { r } { c ^ { \prime } ( t ) = - \frac { 2 \dot { \sigma } _ { t } \sigma _ { 0 } } { \sigma _ { t } } \mathbb { E } [ \| \mathbf { w } _ { t } \| ^ { 2 } ] } \end{array}$ . In particular, $c ( t )$ is decreasing whenever $\sigma _ { t }$ is
Proof. Under the assumption, we have $\begin{array} { r } { \frac { \partial \hat { f } } { \partial \mathbf { x } } = \frac { \sigma _ { 0 } } { \sigma _ { t } } \mathbf { I } } \end{array}$ . Thus, by Lemma 1,
$$
c ^ { \prime } ( t ) = - 2 \dot { \sigma } _ { t } \mathbb { E } \left[ \left. \frac { \sigma _ { 0 } } { \sigma _ { t } } \mathbf { I w } _ { t } , \mathbf { w } _ { t } \right. \right] = - \frac { 2 \dot { \sigma } _ { t } \sigma _ { 0 } } { \sigma _ { t } } \mathbb { E } [ \| \mathbf { w } _ { t } \| ^ { 2 } ] .
$$
This proves that $c ^ { \prime } ( t ) < 0$ whenever $\dot { \sigma } _ { t } > 0$ .
Toy example. Let us consider a one-dimensional toy example where $\mathbf { x } _ { \star } \sim \mathcal { N } ( 0 , \sigma _ { \star } ^ { 2 } )$ with $\sigma _ { \star } \geq 0$ and $\mathbf { z } \sim \mathcal { N } ( 0 , 1 )$ are independent. Also, we assume $p _ { t } = \mathcal N ( 0 , \sigma _ { \star } ^ { 2 } + \sigma _ { t } ^ { 2 } )$ , so the vector field for the diffusion process ding target diffusion flow and the transport $\sigma _ { 0 } = 0$ for the sake of simplicity. In this case, the marginal law of $\mathbf { x } _ { t }$ is calculated as st function are: $\begin{array} { r } { \mathbf { v } _ { t } ( \mathbf { x } ) = - \dot { \sigma } _ { t } \sigma _ { t } \nabla _ { \mathbf { x } } \log p _ { t } ( \mathbf { x } ) = \frac { \dot { \sigma } _ { t } \sigma _ { t } } { \sigma _ { \star } ^ { 2 } + \sigma _ { t } ^ { 2 } } \mathbf { x } } \end{array}$ $\mathbf { x } _ { t }$ is also Gaussian with
$$
\hat { \pmb f } ( \mathbf { x } , \sigma _ { t } ) = \frac { \sigma _ { \star } } { \sqrt { \sigma _ { \star } ^ { 2 } + \sigma _ { t } ^ { 2 } } } \mathbf { x } \quad \mathrm { a n d } \quad c ( t ) = \sigma _ { \star } ^ { 2 } + 1 - \frac { 2 \sigma _ { \star } \sigma _ { t } } { \sqrt { \sigma _ { \star } ^ { 2 } + \sigma _ { t } ^ { 2 } } } .
$$
We note that decreasing in $\mathring { f } ( \mathbf { x } , \sigma _ { t } )$ s indeed a scaling function which is asymptotically proportional to . $\frac { \mathbf { x } } { \sigma _ { t } }$ for large $t$ , and $c ( t )$ is $t$ $t > 0$
Experimental validation. We validation the transport cost decrease in Figure 6, on a toy dataset composed of two 2D-Diracs, and on CIFAR-10. Interestingly, we observe that when computing OT transport plans between batches instead of on the full data, GC allows to reduce transport cost more than batch-OT.
# A.4. Proxy Term
In this part, we clarify the connection between the proxy term and the in the case of the quadratic loss $( \alpha = 2$ ). Indeed, we can bound the regularization term with the proxy term thanks to the Jacobian’s maximum singular value $s _ { \operatorname* { m a x } } \big ( \frac { \partial f _ { \theta } } { \partial x } \big )$ , which is bounded as typical networks are Lipschitz:
$$
\left\| \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \left( \dot { \mathbf { x } } _ { t } - \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) \right) \right\| ^ { 2 } \leq \left\| \frac { \partial f _ { \theta } } { \partial x } \right\| ^ { 2 } \| \dot { x } _ { t } - \mathbf { v } _ { t } ( x _ { t } ) \| ^ { 2 } \leq s _ { \operatorname* { m a x } } ^ { 2 } ( \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ) \| \dot { \mathbf { x } } _ { t } - \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) \| ^ { 2 }
$$

Transport Cost on One-Dimensional 2-Diracs

Figure 6. Comparison of transport costs between IC, batch-OT, and GC on two 2D-Diracs (left) and CIFAR-10 (right).
Algorithm 1 Training of consistency models with generator-augmented trajectories
Input: Randomly initialized consistency model $f _ { \theta }$ , number of timesteps $N$ , noise schedule $\sigma _ { t _ { i } }$ , loss weighting $\overline { { \lambda ( \cdot ) } }$ learning rate $\eta$ , distance function $\mathcal { D }$ , noise distribution $p _ { z }$ , joint learning parameter $\mu$ .
Output: Trained consistency model $f _ { \theta }$
while not converged do $\begin{array} { r l } & { \mathbf { x } _ { \star } \sim p _ { \star } , \ \mathbf { z } \sim p _ { z } } \\ & { i \sim \mathrm { m u l t i n o m i a l } ( p ( \sigma _ { t _ { 0 } } ) , \dots , p ( \sigma _ { t _ { N } } ) ) } \\ & { m \sim \mathrm { b i n o m i a l } ( \mu , \mathbf { s i z e } { = } \mathrm { b a t c h } _ { \mathrm { - } } \mathrm { s i z e } ) } \\ & { \mathbf { x } _ { t _ { i } } \mathbf { x } _ { \star } + \sigma _ { t _ { i } } \mathbf { z } } \\ & { \hat { \mathbf { x } } _ { t _ { i } } \mathbf { s g } \big ( f _ { \theta } \big ( \mathbf { x } _ { t _ { i } } , \sigma _ { t _ { i } } \big ) \big ) } \\ & { \hat { \mathbf { x } } _ { t _ { i } } m \cdot \hat { \mathbf { x } } _ { t _ { i } } + ( 1 - m ) \cdot \mathbf { x } _ { \star } } \\ & { \tilde { \mathbf { x } } _ { t _ { i } } \hat { \mathbf { x } } _ { t _ { i } } + \sigma _ { t _ { i } } \mathbf { z } , \ \tilde { \mathbf { x } } _ { t _ { i + 1 } } \hat { \mathbf { x } } _ { t _ { i } } + \sigma _ { t _ { i + 1 } } \mathbf { z } } \\ & { \mathcal { L } ( \theta ) = \lambda \big ( \sigma _ { t _ { i } } ) \mathcal { D } \big ( \mathbf { s g } \big ( f _ { \theta } \big ( \tilde { \mathbf { x } } _ { t _ { i } } , \sigma _ { t _ { i } } \big ) \big ) , f _ { \theta } \big ( \tilde { \mathbf { x } } _ { t _ { i + 1 } } , \sigma _ { t _ { i + 1 } } \big ) \big ) } \\ & { \theta \theta \eta \nabla _ { \theta } \mathcal { L } ( \theta ) } \end{array}$ batch of real data and noise vectors {sampling timesteps} {mask of dimension (batch size) with each $m _ { j } \sim$ binomial $( \mu ) \}$ {IC intermediate points $\}$ {endpoint prediction from the model} {mixing IC and GC trajectories} {GC intermediate points} {consistency loss} {update model’s weights}
end while
We could also use some assumptions on $f$ , e.g. the fact that it is close to a scaling function for large $t$ (see Corrolary 2). If $\begin{array} { r } { \pmb { f } ( \mathbf { x } , \sigma _ { t } ) = \frac { \sigma _ { 0 } } { \sigma _ { t } } \mathbf { x } } \end{array}$ , then we would have:
$$
\left\| \frac { \partial f _ { \theta } } { \partial \mathbf { x } } ( \mathbf { x } _ { t } , \sigma _ { t } ) \left( \dot { \mathbf { x } } _ { t } - \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) \right) \right\| ^ { 2 } = ( \frac { \sigma _ { 0 } } { \sigma _ { t } } ) ^ { 2 } \| \dot { \mathbf { x } } _ { t } - \mathbf { v } _ { t } ( \mathbf { x } _ { t } ) \| ^ { 2 } .
$$
# B. Algorithm
We present the detailed algorithm for GC ( $\mathbf { \nabla } \mu = \cdot \mathbf { \nabla } )$ in Algorithm 1.
# C. Additional Results
# C.1. Ablation Studies
Understanding why $\mathbf { G C } ( \mu = 1 )$ ) fails. This experiment involves training a consistency model with $\mathbf { G C } ( \mu = 1 )$ ). As shown in Figure 7(a), we observe that these models converge quickly but reach saturation early in the training process. When applying the timestep scheduling method with an increasing number of timesteps from Song and Dhariwal (2024), the FID of the models worsens. Using a fixed number of timesteps prevents divergence of the FID, but it still plateaus at a higher FID than iCT-IC.
In Figure 7(b), we plot the FID per timestep for three model / trajectory pairs: $\mathbf { G C } ( \mu = 1 )$ -model on IC trajectories, $\mathrm { G C } ( \mu = 1 )$ -model on GC trajectories, and IC-model on IC trajectories. Notably, we observe a distribution shift between IC and GC trajectories: the FID of the GC-model on IC trajectories degrades at the intermediate timesteps of the diffusion process. This highlights why deviating from the theory and training a model exclusively on GC trajectories is insufficient: to build $\mathbf { x } _ { t _ { i } }$ in Equation (13), the model is inferred on IC but trained on GC trajectories. If IC and GC differ too much, the model cannot improve on IC.

Figure 7. Analysis of consistency models trained only with GC on CIFAR-10. (a) When trained with only GC trajectories, consistency models does not reach the performance of the base model (iCT-IC). In (b), we show that is linked to a distribution shift problem: GC models are weak on IC trajectoires, thus are sub-optimal for predicting $\hat { \mathbf { x } } _ { t _ { i } }$ required in their own training (Equation (13)).

(b) FID of trained IC vs GC along trajectories.
Table 3. Analysis of performance with regards to some hyper-parameters of iCT-GC $\mu = 0 . 5 )$ on CIFAR-10.
| Model | FID |
| iCT-IC | 7.42 ± 0.04 |
| iCT-GC (µ = 0.5) iso-time | 6.38 ± 0.03 |
| iCT-GC (µ = 0.5) | 5.95 ± 0.05 |
| iCT-GC(µ = 0.5) + dropout | 7.77 ± 0.04 |
| iCT-GC (µ = 0.5) - EMA | 6.73 ± 0.05 |
Iso wall-clock training time. As illustrated above, consistency models trained with GC converge faster than IC. However, each training step is more time-consuming, as it necessitates a forward evaluation of the consistency model without gradient computation. Regarding wall-clock training time, the computational overhead of iCT-GC is approximately $20 \%$ of the iCT-IC. In top part of Table 3, we report under “iCT-GC $\mu = 0 . 5$ ) iso-time” the results of iCT-GC $\mu = 0 . 5$ ) trained with the same wall-clock duration as iCT-IC. Even when considering wall-clock training time, iCT-GC ( $\mu = 0 . 5 )$ ) is still superior to iCT-IC.
Hyper-parameters. We evaluate the influence of two important hyper-parameters. First, the dropout in the learned model. Second, whether to use or not the EMA to compute GC endpoints $\hat { \bf x }$ . The results are presented in the bottom part of Table 3. Interestingly, the results on dropout are opposite to those found by Song and Dhariwal (2024), since using dropout lowers the performance of iCT-GC $\langle \mu = 0 . 5$ ).
Analysis of $\mu$ on ImageNet. We present further results of the joint learning procedure with varying $\mu \left( \left\{ 0 . 3 , 0 . 5 , 0 . 7 , 1 . \right\} \right)$ on ImageNet-32 in Figure 9. For $\mu = \{ 0 . 3 , 0 . 5 \}$ , iCT-GC outperforms the base model iCT-IC.
# C.2. Visual Results
We include in Figure 8 examples of generated images for considered baselines.

Figure 8. Uncurated samples from consistency models trained on CelebA $6 4 \times 6 4$ for fixed noise vectors. Note that models trained with generator-augmented trajectories tend to generate sharper images.

Figure 9. Results of varying $\mu$ for iCT-GC on ImageNet-32.
# D. Experimental Details
The code is based on the PyTorch library (Paszke et al., 2019).
Scheduling functions and hyperparameters from Song and Dhariwal (2024). The training of consistency models heavily rely on several scheduling functions. First, there is a noise schedule $\{ \sigma _ { i } \} _ { i = 0 } ^ { N }$ which is chosen as in Karras et al. (2022). Precisely, $\begin{array} { r } { \sigma _ { i } = \left( \sigma _ { 0 } ^ { \frac { 1 } { \rho } } + \frac { i } { N } ( \sigma _ { \mathrm { N } } ^ { \frac { 1 } { \rho } } - \sigma _ { 0 } ^ { \frac { 1 } { \rho } } ) \right) ^ { \rho } } \end{array}$ with $\rho = 7$ . Second, there is a weighting function that affects the training loss, chosen as $\begin{array} { r } { \lambda ( \sigma _ { i } ) = \frac { 1 } { \sigma _ { i + 1 } - \sigma _ { i } } } \end{array}$ . Combined with the choice of noise schedule, it emphasizes to be consistent on timesteps with low noise. Then, Song et al. (2023) propose to progressively increase the number of timesteps $N$ during training. Song and Dhariwal (2024) argue that a good choice of dicretization schedule is an exponential one: $N ( k ) = \operatorname* { m i n } ( s _ { 0 } 2 ^ { \lfloor \frac { k } { K ^ { \prime } } \rfloor } , s _ { 1 } ) + 1$ where $\begin{array} { r } { K ^ { \prime } = \lfloor \frac K { \log _ { 2 } \left[ s _ { 1 } / s _ { 0 } \right] + 1 } \rfloor } \end{array}$ , $K$ is the total number of training steps, $k$ is the current training step, $s _ { 0 }$ (respectively $s _ { 1 }$ the initial (respectively final) number of timesteps. Finally, Song and Dhariwal (2024) propose a discrete probability distribution on the timesteps which mimics the continuous probability distribution recommended in the continuous training of score-based models by Karras et al. (2022).Song and Dhariwal (2024) recommend using: $\begin{array} { r } { p ( \sigma _ { i } ) \propto \mathrm { e r f } ( \frac { \log ( \sigma _ { i + 1 } ) - P _ { \mathrm { m e a n } } } { \sqrt { 2 } P _ { \mathrm { s t d } } } ) - \mathrm { e r f } ( \frac { \log ( \sigma _ { i } ) - P _ { \mathrm { m e a n } } } { \sqrt { 2 } P _ { \mathrm { s t d } } } ) } \end{array}$ . In practice, $s _ { 0 } = 1 0$ $s _ { 1 } = 1 2 8 0$ $\rho = 7$ $P _ { \mathrm { m e a n } } = - 1 . 1$ $P _ { \mathrm { s t d } } = 2 . 0$
We use the lion optimizer (Chen et al., 2023) implemented from https://github.com/lucidrains/lion-pytorch.
Selection of hyper-parameter $\mu$ . We have selected $\mu$ based on the results from Figure 5, which presents a grid search for $\mu$ on CIFAR-10. Given the bell-shaped relationship observed between $\mu$ and FID, we opted to retain the best performing value identified on CIFAR-10, $\mu = 0 . 5$ , for all subsequent experiments (Table 1), including those on other datasets, without further tuning. Importantly, even without an exhaustive hyperparameter search, our method consistently outperforms baseline approaches. This choice is validated by the ablation study presented in Appendix C.1 showing similar trend for another dataset, showing that the hyper-parameter $\mu$ is easy to tune.
In the ECT setting, we found that $\mu < 0 . 5$ leads to improved performance, while $\mu > 0 . 5$ can degrade final performance.
Overall, we recommend setting $\mu$ to small values (around 0.3) since it leads to improved performance in all our experiments.
Details on neural networks architectures. We use the ${ \mathrm { N C S N } } { + + }$ architecture (Song et al., 2021) and follow the implementation from https://github.com/NVlabs/edm.
Evaluation metrics. We report the FID, KID and IS. For the three different metrics, we rely on the implementation from TorchMetrics (Skafte Detlefsen et al., 2022). For the three different metrics, we use the standard practice (e.g. (Song and Dhariwal, 2024)) of FID which is to compare sets of 50 000 generated versus training images. Confidence intervals reported in Table 1 are averaged on five runs by sampling new sets of training images, and new sets of generated images from the same model.
Datasets. CIFAR-10 is a dataset introduced in Krizhevsky (2009). ImageNet (Deng et al., 2009), CelebA (Liu et al., 2015), and LSUN Church (Yu et al., 2015) are used respectively at $3 2 \times 3 2$ , $6 4 \times 6 4$ and $6 4 \times 6 4$ resolutions. We preprocess these images by resizing smaller side to the desired value, center cropping, and linearly scaling pixel values to $[ - 1 , 1 ]$ .
Details on computational ressources As mentioned in the paper, the image dataset experiments have been conducted on NVIDIA A100 40GB GPUs.
Table 4. Hyperparameters for CIFAR-10. Arrays indicate quantities per resolution of the UNet model. $\{ \}$ indicate an hyper-parameter search performed for each type of model (iCT, iCT-OT, iCT-GC $( \mu = 0 . 5 )$ ).
| Hyperparameter | Value |
| batch size | 512 |
| image resolution | 32 |
| training steps | 100 000 |
| learning rate | {0.0001, 0.00003} |
| optimizer | lion |
| S0 | 10 |
| S1 | 1280 |
| ρ | 7 |
| σ0 | 0.002 |
| σ1 | 80 |
| network architecture | SongUNet (from (Karras et al., 2022) implementation) |
| model channels | 128 |
| dropout | {0., 0.3} |
| num blocks | 3 |
| embedding type | positional |
| channel multiplicative factor | [1, 2, 2] |
| attn resolutions | Ø |
Table 5. Hyperparameters for CelebA and LSUN Church. Arrays indicate quantities per resolution of the UNet model. $\{ \}$ indicate an hyper-parameter search performed for each type of model (iCT, iCT-OT, iCT-GC $( \mu = 0 . 5 )$ ).
| Hyperparameter | Value |
| batch size | 128 |
| image resolution | 64 |
| training steps | 150 000 |
| learning rate | 0.00008 |
| optimizer | lion |
| S0 | 10 |
| S1 | 1280 |
| ρ | 7 |
| σ0 | 0.002 |
| σ1 | 80 |
| network architecture | SongUNet |
| model channels | (from (Karras et al., 2022) implementation) 128 |
| dropout | {0., [0., 0., 0.2, 0.2]} |
| num blocks | [3, 3, 4, 5] |
| embedding type | positional |
| channel multiplicative factor | [1, 2, 2, 2] |
| attn resolutions | Ø |
Table 6. Hyperparameters for ImageNet-1k. Arrays indicate quantities per resolution of the UNet model. $\{ \}$ indicate an hyper-parameter search performed for each type of model (iCT, iCT-OT, iCT-GC $( \mu = 0 . 5 )$ ).
| Hyperparameter | Value |
| batch size | 512 |
| image resolution | 32 |
| training steps | 150 000 |
| learning rate | 0.00008 |
| optimizer | lion |
| S0 | 10 |
| S1 | 1280 |
| ρ | 7 |
| σ0 | 0.002 |
| σ1 | 80 |
| network architecture | SongUNet (from (Karras et al., 2022) implementation) |
| model channels | 128 |
| dropout | {0., [0., 0., 0.2, 0.2]} |
| num blocks | [3, 5, 7] |
| embedding type | positional |
| channel mult | [1, 1, 2] |
| attn resolutions | [16] |