Pith. sign in

REVIEW 3 major objections 5 minor 68 references

Diff2Flow: Training Flow Matching Models via Diffusion Model Alignment

T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read This paper claims that a pre-trained diffusion model can be directly fine-tuned as a flow matching model by rescaling timesteps, aligning interpolants, and converting v-predictions into velocities, yielding faster convergence and better…

desk verdict Solid practical recipe for converting diffusion priors to flow matching, but the printed velocity conversion is algebraically wrong; the experiments suggest the code is right and the paper is wrong, so it needs a correction before acceptance. read the letter →

arxiv 2506.02221 v1 pith:4YSVEDLR submitted 2025-06-02 cs.CV cs.LG

classification cs.CVcs.LG
keywords diffusionmodelsflowmatchingfine-tuningLoRAparameter-efficientgenerativemodelingmonoculardepthestimationreflow
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper tries to establish that the knowledge in a pre-trained diffusion model can be transferred to a flow matching model without retraining from scratch, by aligning the two paradigms' timesteps, interpolants, and prediction targets. If true, this would make flow matching's faster inference and straighter sampling trajectories available to the large installed base of diffusion checkpoints, while keeping training budgets small enough for parameter-efficient fine-tuning. The paper shows results on text-to-image synthesis, resolution change, reflow-based fast sampling, and monocular depth estimation, where the aligned objective converges faster than naively applying the flow matching loss and often beats continued diffusion training. The central move is to treat the diffusion trajectory and the flow matching trajectory as two coordinate systems on the same generative path, connected by invertible maps.

What carries the argument

The load-bearing object is the pair of invertible trajectory maps $(f_t, f_x)$ together with the velocity conversion formula. The timestep map $f_t$ sends the discrete diffusion timestep to the continuous flow matching time via the ratio $\alpha/(\alpha+\sigma)$, and the interpolant map $f_x$ rescales the diffusion sample by $1/(\alpha+\sigma)$ so the boundary points (clean data and noise) coincide. The velocity conversion takes the diffusion model's $v$-prediction, which mixes noise and data, and re-expresses it as the flow-matching velocity field, so the network does not have to unlearn its output parameterization. This is what carries the argument: it removes the 'unlearning' cost that makes naive FM fine-tuning slow and that breaks down under parameter-efficient fine-tuning.

What would settle it

The decisive check is algebraic: substitute the v-parameterization into the diffusion interpolant (Eqs. (3) and (8)) and solve for the estimated noise and data, then form the velocity $\hat{x}_0 - \hat{x}_T$ and compare with Eq. (16). A direct substitution gives $\hat{x}_T = \sigma x_t + \alpha v_\theta$ (not $\alpha v_\theta - \sigma x_t$), so the implied velocity is $(\alpha-\sigma)x_t - (\alpha+\sigma)v_\theta$ rather than $(\alpha-\sigma)(x_t - v_\theta)$; checking the released code against the printed equation settles whether the objective is the one the paper describes.

Watch

Extended reading notes

Core claim

The central claim is that a v-parameterized diffusion model can be reused as a flow matching model by applying three coordinate changes: rescale the diffusion timestep by $f_t(\cdot)=\alpha/(\alpha+\sigma)$, rescale the noisy-sample interpolant by $f_x(\cdot)=x/(\alpha+\sigma)$, and convert the model's $v$-prediction into a velocity via the relation the paper derives as Eq. (16). With these changes, the standard flow matching loss $L_{\mathrm{FM}}$ is applied directly to the pre-trained diffusion network, with the inverse maps used during sampling to run Euler steps on the flow matching path. The paper reports that this alignment accelerates convergence relative to naive FM fine-tuning, that the advantage grows under LoRA-style parameter constraints, and that it extends to reflow training for low-step generation and to monocular depth estimation.

Load-bearing premise

The whole training target rests on Eq. (16), the formula that converts the diffusion model's v-prediction into a flow-matching velocity; if that conversion is algebraically wrong under the paper's own definitions, the fine-tuned model is trained to predict the wrong velocity.

Editorial extensions

If this is right

  • Directly fine-tuning a pre-trained diffusion model with the flow matching loss, without the proposed alignment, converges more slowly; with the alignment, competitive results appear in as few as 2.5k iterations in the paper's text-to-image experiments.
  • The alignment removes the zero-terminal-SNR artifact: the model can generate true black and white regions instead of gray, which the paper attributes to the rectified trajectories.
  • Reflow training becomes applicable to a diffusion prior: after one rectification pass, Stable Diffusion generates images with as few as 2-4 sampling steps without consistency distillation, using only a small fraction of tunable parameters.
  • For monocular depth estimation, the same recipe matches or improves on prior generative depth predictors with fewer training iterations, and LoRA with roughly a quarter of the parameters remains competitive with full fine-tuning.
  • Parameter-efficient fine-tuning with LoRA works when the alignment is used, but fails when the diffusion model is trained with a raw flow matching objective, because the model must learn an entirely new output parameterization.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Editorial extension: because the maps are bidirectional and require no extra parameters, the same conversion could be applied at inference time as a training-free wrapper, turning any off-the-shelf v-prediction diffusion checkpoint into a flow-style sampler; the paper presents the maps as part of fine-tuning, not as a standalone sampling trick.
  • Editorial extension: the paper's observation that non-integer diffusion timesteps with linearly interpolated noise schedules still produce high-quality images suggests diffusion timestep embeddings are effectively continuous; if that holds broadly, continuous-time diffusion sampling and schedule interpolation could be pushed further than the discrete training grid.
  • Editorial extension: the derivation is written for v-parameterization but the paper states it extends to epsilon-parameterization; if the same reasoning carries over, nearly any diffusion backbone could be converted to flow matching, which would broaden the transfer beyond image generation to video, audio, and dense prediction.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper proposes Diff2Flow, a method to convert a pre-trained diffusion model into a flow matching model by (i) rescaling timesteps via the signal-to-noise ratio, (ii) rescaling interpolants, and (iii) converting the diffusion model's v-prediction into an FM velocity estimate. The method is applied to text-to-image fine-tuning at a different resolution, to trajectory rectification (reflow) enabling 2-step generation, and to monocular depth estimation with PEFT (LoRA). The experimental results show faster convergence than naive FM fine-tuning and better performance than diffusion fine-tuning, especially under LoRA constraints.

Significance. The general goal of reusing established Stable Diffusion checkpoints for flow matching is timely and practically important. The paper contains extensive experiments across three tasks, including a reflow variant and depth estimation, and the observation that alignment-aware fine-tuning helps under parameter constraints is interesting. However, the central algebraic derivation of the velocity conversion in Eq. (16) is incorrect, which invalidates the method as described. The paper does not provide code to disambiguate whether the experiments used the printed formula or a corrected variant. If the derivation is fixed and the code confirms the corrected formula, the approach could be a valuable contribution; as written, the core claim is not supported.

major comments (3)
  1. [§3.2.2, Eqs. (15)–(16)] The velocity conversion is algebraically incorrect. Solving Eq. (8) and Eq. (14) for the clean and noise estimates gives x̂0 = (α x − σ v)/(α² + σ²) and x̂T = (σ x + α v)/(α² + σ²); the printed second line of Eq. (15), x̂T = α v − σ x, is therefore wrong, and the FM velocity x̂0 − x̂T equals (α − σ)x − (α + σ)v (for α² + σ² = 1), not (α − σ)(x − v) as in Eq. (16). This error changes the training target in Algorithm 1 and the sampling update in Algorithm 2; at α = σ the printed target is identically zero, which cannot produce a valid flow. Please provide the corrected formula and clarify whether the experiments were run with the printed formula or a corrected one, and make the code available to disambiguate.
  2. [§3.2.2, Eqs. (15)–(16)] The derivation implicitly assumes the variance-preserving condition α² + σ² = 1, but the paper also claims applicability to variance-exploding schedules (line after Eq. (8)) where α = 1 and σ varies. For VE schedules the inversion must divide by α² + σ² = 1 + σ²; as written, the formulas (even with corrected signs) would be wrong. Please either restrict the method to VP schedules or provide the general expressions.
  3. [§4 and Appendix A] The paper reports extensive experimental results but provides no code or model weights, and the algebraic error in Eq. (16) makes it impossible for a reader to determine whether the reported gains are due to the claimed alignment or to a different (possibly corrected) implementation. Given that the central formula is load-bearing, the authors should release the training and inference code, or at least specify the exact velocity conversion used in each experiment.
minor comments (5)
  1. [Eq. (15)] The notation dxDM_0 and dxDM_T with hats is confusing; I recommend using \hat{x}_0 and \hat{x}_T to denote the estimated clean and noise samples.
  2. [Figure 2] The caption states that non-integer-shifted DDIM timesteps produce high-quality images, but does not mention which model and schedule were used; please add this information.
  3. [Table 3] The CLIP scores of Diff2Flow at 25 steps are lower than SDv1.5+DPM Solver; the text describes the results as 'competitive' but this gap deserves a discussion, especially since FID is better.
  4. [§4.1] The claim that Diff2Flow solves the zero-terminal SNR issue is supported only by qualitative examples in Fig. 4; please consider adding a quantitative metric (e.g., average luminance of generated white/black images) to substantiate the claim.
  5. [Abstract and §3.3] Minor typos: 'na¨ıve' should be 'naïve' (or 'naive') in the abstract and elsewhere; 'contrain' in §3.3 should be 'constrain'.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the alignment construction is definitional, the objective conversion is a derived (though possibly erroneous) algebraic step, and the empirical claims are tested against external benchmarks.

full rationale

The paper's derivation chain is self-contained rather than circular. The timestep and interpolant alignments in Eqs. (10)-(13) are explicit constructions: fx and ft are chosen so that the diffusion interpolant (8) maps onto the flow-matching interpolant (9), which is a definitional bridge and not a prediction smuggled from the result. The velocity conversion in Eqs. (15)-(16) is derived from the v-parameterization (3)/(14) and the interpolant (8); while the algebra appears questionable (solving the 2x2 system yields (alpha-sigma)x - (alpha+sigma)v rather than (alpha-sigma)(x-v), and at alpha=sigma the printed target becomes identically zero), this is a potential correctness error, not an equivalence-by-construction or a fitted parameter renamed as a prediction. The reflow experiments use image-noise pairs generated from the pretrained model itself following the standard Reflow procedure of Liu et al. [32], and the depth and text-to-image evaluations are compared against external benchmark numbers, including numbers reproduced by Martin Garcia et al. [38]; no load-bearing claim reduces to a self-citation. The paper's self-citations to DepthFM [14] and prior flow-matching work are used as baselines or related context, not as the justification for the method's central objective. Accordingly, no circular step meeting the evidence bar is present.

Assumptions & free parameters 0 free parameters · 4 assumptions · 0 invented entities

The method introduces no new physical entities or fitted constants. The mapping functions ft and fx are derived from the noise schedule; the velocity target is intended to be a deterministic function of the v-prediction. The main assumptions are standard diffusion-model accuracy assumptions plus the paper-specific hypothesis that non-integer timesteps are valid.

assumptions (4)
  • domain assumption The pretrained diffusion model's v-prediction is an accurate conditional estimator of v = α ε − σ x0, so the estimates in Eq. (15) are valid.
    Standard assumption in diffusion finetuning; the paper relies on it in Section 3.2.2.
  • standard math The timestep mapping ft(t) = α/(α+σ) is monotonic and invertible for the VP and VE schedules used.
    Follows from monotonicity of noise schedules; stated in Section 3.2.1.
  • ad hoc to paper Continuous timesteps between the discrete training timesteps behave like the discrete ones, because the sinusoidal timestep embedding creates a continuous space.
    Hypothesized in Section 3.2.1 and supported only by the qualitative Fig. 2.
  • domain assumption The reflow training pairs generated by ODE sampling from the pretrained model are valid targets for straightening the trajectory.
    Standard reflow assumption, Section 3.1 and 4.2.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Diff2Flow: Training Flow Matching Models via Diffusion Model Alignment." pith.science (2026). https://pith.science/paper/4YSVEDLR

@misc{pith2026250602221,
  author       = {Pith},
  title        = {Pith review of: Diff2Flow: Training Flow Matching Models via Diffusion Model Alignment},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/4YSVEDLR}},
  note         = {Machine review of arXiv:2506.02221}
}
read the original abstract

Diffusion models have revolutionized generative tasks through high-fidelity outputs, yet flow matching (FM) offers faster inference and empirical performance gains. However, current foundation FM models are computationally prohibitive for finetuning, while diffusion models like Stable Diffusion benefit from efficient architectures and ecosystem support. This work addresses the critical challenge of efficiently transferring knowledge from pre-trained diffusion models to flow matching. We propose Diff2Flow, a novel framework that systematically bridges diffusion and FM paradigms by rescaling timesteps, aligning interpolants, and deriving FM-compatible velocity fields from diffusion predictions. This alignment enables direct and efficient FM finetuning of diffusion priors with no extra computation overhead. Our experiments demonstrate that Diff2Flow outperforms na\"ive FM and diffusion finetuning particularly under parameter-efficient constraints, while achieving superior or competitive performance across diverse downstream tasks compared to state-of-the-art methods. We will release our code at https://github.com/CompVis/diff2flow.

Figures

Figures reproduced from arXiv: 2506.02221 by the authors.

Figure 1
Figure 1. We introduce a novel finetuning technique to traverse [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Although non-integer-shifted DDIM timesteps are nei [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Qualitative results for our finetuned Text-to-Image mod [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (11 more)
Figure 4
Figure 4. Figure 4: Our finetuning objective, both with and without PEFT [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]
Figure 5
Figure 5. Figure 5: Text-to-Image FID on the COCO 2017 [29] validation dataset. Light curves indicate results without Classifier-free Guidance [18]. a) We show that both FM and Diff2Flow converge to the same performance, given sufficient training and model capacity (full fine-tuning). How…
Figure 6
Figure 6. Figure 6: SD1.5 [46] + Diff2Flow-Reflow, 4-step inference results. Results [PITH_FULL_IMAGE:figures/full_fig_p007_6.png]
Figure 7
Figure 7. Figure 7: Zero-shot qualitative results on real-world imagery. Our methods produce depth predictions with perceptually higher fidelity and [PITH_FULL_IMAGE:figures/full_fig_p008_7.png]
Figure 8
Figure 8. Figure 8: Results on NYUv2 depth benchmark [40] with 4 ensemble members. a) With full fine-tuning we find that FM adapts to the I2D task very quickly, but adding the objective change leads to even quicker convergence and better results. In contrast, the diffusion-based counterpa…
Figure 9
Figure 9. Figure 9: Diff2Flow enables fast monocular depth estimation with high fidelity. [PITH_FULL_IMAGE:figures/full_fig_p012_9.png]
Figure 10
Figure 10. Figure 10: 4-step inference results of our Diff2Flow-reflow model, using Stable Diffusion 1.5 as the prior diffusion model [PITH_FULL_IMAGE:figures/full_fig_p013_10.png]
Figure 11
Figure 11. Figure 11: 2-step inference results of our Diff2Flow-reflow model, using Stable Diffusion 1.5 as the prior diffusion model [PITH_FULL_IMAGE:figures/full_fig_p014_11.png]
Figure 12
Figure 12. Figure 12: More qualitative results for monocular depth prediction compared to the state-of-the-art models (Part 1). [PITH_FULL_IMAGE:figures/full_fig_p015_12.png]
Figure 12
Figure 12. Figure 12: More qualitative results for monocular depth prediction compared to the state-of-the-art models (Part 2). [PITH_FULL_IMAGE:figures/full_fig_p016_12.png]
Figure 13
Figure 13. Figure 13: Qualitative results for monocular depth prediction. [PITH_FULL_IMAGE:figures/full_fig_p017_13.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

68 extracted references · 38 canonical work pages

  1. [1]

    Stochastic interpolants: A unifying framework for flows and diffusions

    Michael S Albergo, Nicholas M Boffi, and Eric Vanden- Eijnden. Stochastic interpolants: A unifying framework for flows and diffusions. arXiv preprint arXiv:2303.08797,

  2. [2]

    Lora learns less and forgets less

    Dan Biderman, Jacob Portes, Jose Javier Gonzalez Ortiz, Mansheej Paul, Philip Greengard, Connor Jennings, Daniel King, Sam Havens, Vitaliy Chiley, Jonathan Frankle, et al. Lora learns less and forgets less. Transactions on Machine Learning Research, 2024. 2, 5

  3. [3]

    Align your latents: High-resolution video synthesis with la- tent diffusion models

    Andreas Blattmann, Robin Rombach, Huan Ling, Tim Dock- horn, Seung Wook Kim, Sanja Fidler, and Karsten Kreis. Align your latents: High-resolution video synthesis with la- tent diffusion models. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 22563–22575, 2023. 2

  4. [4]

    Vir- tual kitti 2, 2020

    Yohann Cabon, Naila Murray, and Martin Humenberger. Vir- tual kitti 2, 2020. 12

  5. [5]

    Chang, Manolis Savva, Maciej Hal- ber, Thomas Funkhouser, and Matthias Nießner

    Angela Dai, Angel X. Chang, Manolis Savva, Maciej Hal- ber, Thomas Funkhouser, and Matthias Nießner. ScanNet: Richly-annotated 3d reconstructions of indoor scenes. In CVPR, 2017. 7, 12

  6. [6]

    Emu: Enhanc- ing image generation models using photogenic needles in a haystack

    Xiaoliang Dai, Ji Hou, Chih-Yao Ma, Sam Tsai, Jialiang Wang, Rui Wang, Peizhao Zhang, Simon Vandenhende, Xi- aofang Wang, Abhimanyu Dubey, et al. Emu: Enhanc- ing image generation models using photogenic needles in a haystack. arXiv preprint arXiv:2309.15807, 2023. 2

  7. [7]

    Generative models: What do they know? do they know things? let’s find out! arXiv preprint arXiv:2311.17137, 2023

    Xiaodan Du, Nicholas Kolkin, Greg Shakhnarovich, and Anand Bhattad. Generative models: What do they know? do they know things? let’s find out! arXiv preprint arXiv:2311.17137, 2023. 1, 2

  8. [8]

    Scaling recti- fied flow transformers for high-resolution image synthesis

    Patrick Esser, Sumith Kulal, Andreas Blattmann, Rahim Entezari, Jonas M ¨uller, Harry Saini, Yam Levi, Dominik Lorenz, Axel Sauer, Frederic Boesel, et al. Scaling recti- fied flow transformers for high-resolution image synthesis. In Forty-first International Conference on Machine Learn- ing, 2024. 1, 2, 3, 6

Show all 68 references
  1. [9]

    Geowiz- ard: Unleashing the diffusion priors for 3d geometry estima- tion from a single image

    Xiao Fu, Wei Yin, Mu Hu, Kaixuan Wang, Yuexin Ma, Ping Tan, Shaojie Shen, Dahua Lin, and Xiaoxiao Long. Geowiz- ard: Unleashing the diffusion priors for 3d geometry estima- tion from a single image. In ECCV, 2024. 2, 6, 7

  2. [10]

    Diffusion mod- els and representation learning: A survey

    Michael Fuest, Pingchuan Ma, Ming Gui, Johannes Schus- terbauer, Vincent Tao Hu, and Bjorn Ommer. Diffusion mod- els and representation learning: A survey. arXiv preprint arXiv:2407.00783, 2024. 2

  3. [11]

    Distillation of diffusion features for semantic correspondence

    Frank Fundel, Johannes Schusterbauer, Vincent Tao Hu, and Bj¨orn Ommer. Distillation of diffusion features for semantic correspondence. WACV, 2025. 1, 2

  4. [12]

    Concept sliders: Lora adap- tors for precise control in diffusion models

    Rohit Gandikota, Joanna Materzynska, Tingrui Zhou, Anto- nio Torralba, and David Bau. Concept sliders: Lora adap- tors for precise control in diffusion models. arXiv preprint arXiv:2311.12092, 2023. 2

  5. [13]

    Vision meets robotics: The kitti dataset

    Andreas Geiger, Philip Lenz, Christoph Stiller, and Raquel Urtasun. Vision meets robotics: The kitti dataset. The Inter- national Journal of Robotics Research , 32(11):1231–1237,

  6. [14]

    Depthfm: Fast monocular depth estimation with flow matching

    Ming Gui, Johannes Schusterbauer, Ulrich Prestel, Pingchuan Ma, Dmytro Kotovenko, Olga Grebenkova, Stefan Andreas Baumann, Vincent Tao Hu, and Bj ¨orn Om- mer. Depthfm: Fast monocular depth estimation with flow matching. In AAAI Conference on Artificial Intelligence . Associat...

  7. [15]

    Animatediff: Animate your personalized text-to- image diffusion models without specific tuning

    Yuwei Guo, Ceyuan Yang, Anyi Rao, Zhengyang Liang, Yaohui Wang, Yu Qiao, Maneesh Agrawala, Dahua Lin, and Bo Dai. Animatediff: Animate your personalized text-to- image diffusion models without specific tuning. Interna- tional Conference on Learning Representations, 2024. 2

  8. [16]

    Lotus: Diffusion-based visual foundation model for high-quality dense prediction

    Jing He, Haodong Li, Wei Yin, Yixun Liang, Leheng Li, Kaiqiang Zhou, Hongbo Liu, Bingbing Liu, and Ying- Cong Chen. Lotus: Diffusion-based visual foundation model for high-quality dense prediction. arXiv preprint arXiv:2409.18124, 2024. 2, 7

  9. [17]

    Scalecrafter: Tuning-free higher- resolution visual generation with diffusion models

    Yingqing He, Shaoshu Yang, Haoxin Chen, Xiaodong Cun, Menghan Xia, Yong Zhang, Xintao Wang, Ran He, Qifeng Chen, and Ying Shan. Scalecrafter: Tuning-free higher- resolution visual generation with diffusion models. In The Twelfth International Conference on Learning Representa-...

  10. [18]

    Classifier-free diffusion guidance

    Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance. In NeurIPS 2021 Workshop on Deep Generative Models and Downstream Applications, 2021. 7

  11. [19]

    Denoising dif- fusion probabilistic models

    Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising dif- fusion probabilistic models. Advances in neural information processing systems, 33:6840–6851, 2020. 1, 2, 3, 4

  12. [20]

    Video dif- fusion models

    Jonathan Ho, Tim Salimans, Alexey Gritsenko, William Chan, Mohammad Norouzi, and David J Fleet. Video dif- fusion models. Advances in Neural Information Processing Systems, 35:8633–8646, 2022. 2

  13. [21]

    LoRA: Low-rank adaptation of large language models

    Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen- Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. LoRA: Low-rank adaptation of large language models. InIn- ternational Conference on Learning Representations , 2022. 2, 5

  14. [22]

    Metric3d v2: A versatile monocular geomet- ric foundation model for zero-shot metric depth and surface 9 normal estimation

    Mu Hu, Wei Yin, Chi Zhang, Zhipeng Cai, Xiaoxiao Long, Hao Chen, Kaixuan Wang, Gang Yu, Chunhua Shen, and Shaojie Shen. Metric3d v2: A versatile monocular geomet- ric foundation model for zero-shot metric depth and surface 9 normal estimation. arXiv preprint arXiv:2404.15506, 2024. 7

  15. [23]

    Elucidating the design space of diffusion-based generative models

    Tero Karras, Miika Aittala, Timo Aila, and Samuli Laine. Elucidating the design space of diffusion-based generative models. Advances in neural information processing systems, 35:26565–26577, 2022. 2

  16. [24]

    Repurpos- ing diffusion-based image generators for monocular depth estimation

    Bingxin Ke, Anton Obukhov, Shengyu Huang, Nando Met- zger, Rodrigo Caye Daudt, and Konrad Schindler. Repurpos- ing diffusion-based image generators for monocular depth estimation. In CVPR, 2024. 1, 2, 6, 7, 8, 12, 13, 15, 16

  17. [25]

    Understanding diffu- sion objectives as the elbo with simple data augmentation

    Diederik Kingma and Ruiqi Gao. Understanding diffu- sion objectives as the elbo with simple data augmentation. Advances in Neural Information Processing Systems , 36: 65484–65516, 2023. 1

  18. [26]

    Black Forest Labs. Flux. https://github.com/ black-forest-labs/flux, 2024. 1

  19. [27]

    Improving the training of rectified flows

    Sangyun Lee, Zinan Lin, and Giulia Fanti. Improving the training of rectified flows. Advances in Neural Information Processing Systems, 37:63082–63109, 2024. 2

  20. [28]

    Common diffusion noise schedules and sample steps are flawed

    Shanchuan Lin, Bingchen Liu, Jiashi Li, and Xiao Yang. Common diffusion noise schedules and sample steps are flawed. In Proceedings of the IEEE/CVF winter conference on applications of computer vision, pages 5404–5411, 2024. 2, 6

  21. [29]

    Microsoft coco: Common objects in context

    Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Doll´ar, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In Computer Vision–ECCV 2014: 13th European Conference, Zurich, Switzerland, September 6-12, 2014, Proceeding...

  22. [30]

    Flow matching for generative mod- eling

    Yaron Lipman, Ricky TQ Chen, Heli Ben-Hamu, Maximil- ian Nickel, and Matt Le. Flow matching for generative mod- eling. arXiv preprint arXiv:2210.02747, 2022. 1, 2, 3, 4

  23. [31]

    Au- dioldm: Text-to-audio generation with latent diffusion mod- els

    Haohe Liu, Zehua Chen, Yi Yuan, Xinhao Mei, Xubo Liu, Danilo Mandic, Wenwu Wang, and Mark D Plumbley. Au- dioldm: Text-to-audio generation with latent diffusion mod- els. In International Conference on Machine Learning, pages 21450–21474. PMLR, 2023. 2

  24. [32]

    Flow straight and fast: Learning to generate and transfer data with rectified flow

    Xingchao Liu, Chengyue Gong, and Qiang Liu. Flow straight and fast: Learning to generate and transfer data with rectified flow. arXiv preprint arXiv:2209.03003, 2022. 1, 2, 3, 4, 6, 7, 12

  25. [33]

    Instaflow: One step is enough for high-quality diffusion- based text-to-image generation

    Xingchao Liu, Xiwen Zhang, Jianzhu Ma, Jian Peng, et al. Instaflow: One step is enough for high-quality diffusion- based text-to-image generation. In The Twelfth International Conference on Learning Representations, 2023. 3

  26. [34]

    Dpm-solver: A fast ode solver for diffusion probabilistic model sampling in around 10 steps

    Cheng Lu, Yuhao Zhou, Fan Bao, Jianfei Chen, Chongxuan Li, and Jun Zhu. Dpm-solver: A fast ode solver for diffusion probabilistic model sampling in around 10 steps. Advances in Neural Information Processing Systems , 35:5775–5787,

  27. [35]

    Diffusion hyperfeatures: searching through time and space for semantic correspondence

    Grace Luo, Lisa Dunlap, Dong Huk Park, Aleksander Holyn- ski, and Trevor Darrell. Diffusion hyperfeatures: searching through time and space for semantic correspondence. InPro- ceedings of the 37th International Conference on Neural In- formation Processing Systems, pages 47500...

  28. [36]

    Lcm-lora: A universal stable-diffusion acceleration module

    Simian Luo, Yiqin Tan, Suraj Patil, Daniel Gu, Patrick von Platen, Apolin´ario Passos, Longbo Huang, Jian Li, and Hang Zhao. Lcm-lora: A universal stable-diffusion acceleration module. arXiv preprint arXiv:2311.05556, 2023. 2, 5

  29. [37]

    Sit: Explor- ing flow and diffusion-based generative models with scalable interpolant transformers

    Nanye Ma, Mark Goldstein, Michael S Albergo, Nicholas M Boffi, Eric Vanden-Eijnden, and Saining Xie. Sit: Explor- ing flow and diffusion-based generative models with scalable interpolant transformers. arXiv preprint arXiv:2401.08740,

  30. [38]

    Fine-tuning image-conditional diffusion models is easier than you think

    Gonzalo Martin Garcia, Karim Abou Zeid, Christian Schmidt, Daan de Geus, Alexander Hermans, and Bastian Leibe. Fine-tuning image-conditional diffusion models is easier than you think. In Proceedings of the IEEE/CVF Win- ter Conference on Applications of Computer Vision (WACV),

  31. [39]

    On distillation of guided diffusion models

    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 Pat- tern Recognition, pages 14297–14306, 2023. 2

  32. [40]

    Indoor segmentation and support inference from rgbd images

    Pushmeet Kohli Nathan Silberman, Derek Hoiem and Rob Fergus. Indoor segmentation and support inference from rgbd images. In ECCV, 2012. 7, 8, 12

  33. [41]

    Glide: Towards photorealis- tic image generation and editing with text-guided diffusion models

    Alexander Quinn Nichol, Prafulla Dhariwal, Aditya Ramesh, Pranav Shyam, Pamela Mishkin, Bob Mcgrew, Ilya Sutskever, and Mark Chen. Glide: Towards photorealis- tic image generation and editing with text-guided diffusion models. In International Conference on Machine Learning, p...

  34. [42]

    Scalable diffusion models with transformers

    William Peebles and Saining Xie. Scalable diffusion models with transformers. In Proceedings of the IEEE/CVF Inter- national Conference on Computer Vision, pages 4195–4205,

  35. [43]

    Sdxl: Improving latent diffusion models for high-resolution image synthesis

    Dustin Podell, Zion English, Kyle Lacey, Andreas Blattmann, Tim Dockhorn, Jonas M ¨uller, Joe Penna, and Robin Rombach. Sdxl: Improving latent diffusion models for high-resolution image synthesis. In The Twelfth Inter- national Conference on Learning Representations, 2024. 1, 2

  36. [44]

    Hierarchical text-conditional image gen- eration with clip latents

    Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, and Mark Chen. Hierarchical text-conditional image gen- eration with clip latents. arXiv preprint arXiv:2204.06125,

  37. [45]

    Susskind

    Mike Roberts, Jason Ramapuram, Anurag Ranjan, Atulit Kumar, Miguel Angel Bautista, Nathan Paczan, Russ Webb, and Joshua M. Susskind. Hypersim: A photorealistic syn- thetic dataset for holistic indoor scene understanding. In International Conference on Computer Vision (ICCV) 2021,

  38. [46]

    High-resolution image synthesis with latent diffusion models

    Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj ¨orn Ommer. High-resolution image synthesis with latent diffusion models. In 2022 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 10674–10685. IEEE, 2022. 1, 2, 3, 6, 7

  39. [47]

    Low-rank adaptation for fast text- to-image diffusion fine-tuning

    Simo Ryu. Low-rank adaptation for fast text- to-image diffusion fine-tuning. 2022. URL https://github.com/cloneofsimo/lora, 2022. 2, 5

  40. [48]

    Photorealistic text-to-image diffusion models with deep language understanding

    Chitwan Saharia, William Chan, Saurabh Saxena, Lala Lit, Jay Whang, Emily Denton, Seyed Kamyar Seyed 10 Ghasemipour, Burcu Karagol Ayan, S Sara Mahdavi, Raphael Gontijo-Lopes, et al. Photorealistic text-to-image diffusion models with deep language understanding. In Pro- ceedin...

  41. [49]

    Progressive distillation for fast sampling of diffusion models

    Tim Salimans and Jonathan Ho. Progressive distillation for fast sampling of diffusion models. In International Confer- ence on Learning Representations, 2022. 2, 3

  42. [50]

    Adversarial diffusion distillation

    Axel Sauer, Dominik Lorenz, Andreas Blattmann, and Robin Rombach. Adversarial diffusion distillation. In European Conference on Computer Vision , pages 87–103. Springer,

  43. [51]

    Monocular depth estimation using diffusion models

    Saurabh Saxena, Abhishek Kar, Mohammad Norouzi, and David J Fleet. Monocular depth estimation using diffusion models. arXiv preprint arXiv:2302.14816, 2023. 2

  44. [52]

    A multi-view stereo benchmark with high- resolution images and multi-camera videos

    Thomas Schops, Johannes L Schonberger, Silvano Galliani, Torsten Sattler, Konrad Schindler, Marc Pollefeys, and An- dreas Geiger. A multi-view stereo benchmark with high- resolution images and multi-camera videos. In CVPR, pages 3260–3269, 2017. 7, 12

  45. [53]

    Laion-5b: An open large-scale dataset for training next generation image-text models

    Christoph Schuhmann, Romain Beaumont, Richard Vencu, Cade Gordon, Ross Wightman, Mehdi Cherti, Theo Coombes, Aarush Katta, Clayton Mullis, Mitchell Worts- man, et al. Laion-5b: An open large-scale dataset for training next generation image-text models. Advances in Neural In- f...

  46. [54]

    Boosting latent diffusion with flow match- ing

    Johannes Schusterbauer, Ming Gui, Pingchuan Ma, Nick Stracke, Stefan Andreas Baumann, Vincent Tao Hu, and Bj¨orn Ommer. Boosting latent diffusion with flow match- ing. In ECCV, pages 338–355, 2024. 2

  47. [55]

    Bespoke solvers for genera- tive flow models

    Neta Shaul, Juan Perez, Ricky TQ Chen, Ali Thabet, Albert Pumarola, and Yaron Lipman. Bespoke solvers for genera- tive flow models. arXiv preprint arXiv:2310.19075 , 2023. 4

  48. [56]

    Denois- ing diffusion implicit models

    Jiaming Song, Chenlin Meng, and Stefano Ermon. Denois- ing diffusion implicit models. In International Conference on Learning Representations, 2021. 2, 3

  49. [57]

    Score-based generative modeling through stochastic differential equa- tions

    Yang Song, Jascha Sohl-Dickstein, Diederik P Kingma, Ab- hishek Kumar, Stefano Ermon, and Ben Poole. Score-based generative modeling through stochastic differential equa- tions. arXiv preprint arXiv:2011.13456, 2020. 1, 2, 3, 4

  50. [58]

    Consistency models

    Yang Song, Prafulla Dhariwal, Mark Chen, and Ilya Sutskever. Consistency models. In International Conference on Machine Learning, pages 32211–32252. PMLR, 2023. 2

  51. [59]

    Ctrloralter: Con- ditional loradapter for efficient 0-shot control & altering of t2i models

    Nick Stracke, Stefan Andreas Baumann, Joshua M Susskind, Miguel Angel Bautista, and Bj¨orn Ommer. Ctrloralter: Con- ditional loradapter for efficient 0-shot control & altering of t2i models. arXiv preprint arXiv:2405.07913, 2024. 2

  52. [60]

    Emergent correspondence from im- age diffusion

    Luming Tang, Menglin Jia, Qianqian Wang, Cheng Phoo, and Bharath Hariharan. Emergent correspondence from im- age diffusion. Advances in neural information processing systems, 2023. 1, 2

  53. [61]

    Improving and generalizing flow-based gen- erative models with minibatch optimal transport

    Alexander Tong, Kilian Fatras, Nikolay Malkin, Guillaume Huguet, Yanlei Zhang, Jarrid Rector-Brooks, Guy Wolf, and Yoshua Bengio. Improving and generalizing flow-based gen- erative models with minibatch optimal transport. Transac- tions on Machine Learning Research, pages 1–34...

  54. [62]

    Dai, Andrea F

    Igor Vasiljevic, Nick Kolkin, Shanyi Zhang, Ruotian Luo, Haochen Wang, Falcon Z. Dai, Andrea F. Daniele, Moham- madreza Mostajabi, Steven Basart, Matthew R. Walter, and Gregory Shakhnarovich. DIODE: A Dense Indoor and Out- door DEpth Dataset. CoRR, 2019. 7, 12

  55. [63]

    Open-vocabulary panop- tic segmentation with text-to-image diffusion models

    Jiarui Xu, Sifei Liu, Arash Vahdat, Wonmin Byeon, Xiao- long Wang, and Shalini De Mello. Open-vocabulary panop- tic segmentation with text-to-image diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 2955–2966, 2023. 1

  56. [64]

    Perflow: Piecewise rectified flow as universal plug-and-play accelerator, 2024

    Hanshu Yan, Xingchao Liu, Jiachun Pan, Jun Hao Liew, Qiang Liu, and Jiashi Feng. Perflow: Piecewise rectified flow as universal plug-and-play accelerator, 2024. 3, 5, 7

  57. [65]

    Depth anything: Unleashing the power of large-scale unlabeled data

    Lihe Yang, Bingyi Kang, Zilong Huang, Xiaogang Xu, Jiashi Feng, and Hengshuang Zhao. Depth anything: Unleashing the power of large-scale unlabeled data. In CVPR, 2024. 7, 8, 15, 16

  58. [66]

    Depth any- thing v2

    Lihe Yang, Bingyi Kang, Zilong Huang, Zhen Zhao, Xiao- gang Xu, Jiashi Feng, and Hengshuang Zhao. Depth any- thing v2. arXiv:2406.09414, 2024. 7, 8, 15, 16

  59. [67]

    Ip- adapter: Text compatible image prompt adapter for text-to- image diffusion models

    Hu Ye, Jun Zhang, Sibo Liu, Xiao Han, and Wei Yang. Ip- adapter: Text compatible image prompt adapter for text-to- image diffusion models. arXiv preprint arXiv:2308.06721,

  60. [68]

    LoRA base

    Wei Yin, Chi Zhang, Hao Chen, Zhipeng Cai, Gang Yu, Kaixuan Wang, Xiaozhi Chen, and Chunhua Shen. Metric3d: Towards zero-shot metric 3d prediction from a single image. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 9043–9053, 2023. 7 11 Diff2...

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.