TL;DR
AnyFlow introduces the first any-step video diffusion distillation framework using two-time flow map formulation. It learns arbitrary time pair transitions through forward flow map training and on-policy distillation, achieving strong few-step performance while continuing to improve with more steps.

论文原始摘要

Few-step video generation has been significantly advanced by consistency distillation. However, the performance of consistency-distilled models often degrades as more sampling steps are allocated at test time, limiting their effectiveness for any-step video diffusion. This limitation arises because consistency distillation replaces the original probability-flow ODE trajectory with a consistency-sampling trajectory, weakening the desirable test-time scaling behavior of ODE sampling. To address this limitation, we introduce AnyFlow, the first any-step video diffusion distillation framework based on flow maps. Instead of distilling a model for only a few fixed sampling steps, AnyFlow optimizes the full ODE sampling trajectory. To this end, we shift the distillation target from endpoint consistency mapping $(z_{t}\rightarrow z_{0})$ to flow-map transition learning $(z_{t}\rightarrow z_{r})$ over arbitrary time intervals. We further propose Flow Map Backward Simulation, which decomposes a full Euler rollout into shortcut flow-map transitions, enabling efficient on-policy distillation that reduces test-time errors (i.e., discretization error in few-step sampling and exposure bias in causal generation). Extensive experiments across both bidirectional and causal architectures, at scales ranging from 1.3B to 14B parameters, demonstrate that AnyFlow achieves performance matches or surpasses consistency-based counterparts in the few-step regime, while scaling with sampling step budgets.

Paper Collector 中文速览

首个基于流图的任意步视频扩散蒸馏框架

方法概述

通过Flow Map Backward Simulation将完整Euler展开分解为快捷流图转换,实现高效在策略蒸馏,减少测试时离散化误差和暴露偏差

核心贡献

提出AnyFlow框架,将蒸馏目标从端点一致性映射改为任意时间间隔的流图转换学习,实现全ODE采样轨迹优化

原始来源与核验范围

核验仅覆盖论文正文中的主张、证据片段和参考文献关系。NGJOO 未独立运行作者代码、重做实验或验证真实部署效果;页面中的可复现性分数是文档完整度评估,不是复现实验结果。

55
已证实
3
证据不足
5
无法验证
N/A
可复现性
置信度
83%

核心问题

How can video diffusion models support flexible any-step generation that maintains strong few-step performance while continuing to improve with more sampling steps, overcoming the degradation problem of existing consistency-based distillation methods?

核心方法

AnyFlow employs a two-stage training pipeline: forward flow map training fine-tunes pretrained models to learn transitions between arbitrary time pairs f_θ(z_t, t, r) → z_r, followed by on-policy distillation using Distribution Matching Distillation with flow map backward simulation. The approach introduces interpolated timestep conditioning, guidance-fused training, and adaptive loss reweighting for stable video diffusion adaptation.

方法组件

论点验证

已证实 (75%) we propose AnyFlow, the first any-step video diffusion distillation framework based on a two-time flow map formulation
已证实 (85%) we develop an improved forward flow map training recipe to convert pretrained video diffusion models into flow map models, providing a strong initialization for any-step generation
已证实 (85%) we introduce on-policy flow map distillation to optimize reverse divergence on model rollouts to mitigate test-time errors
The paper describes the on-policy distillation stage with DMD-based training in detail (p_47-51), provides Algorithm 2, and shows experimental validation in Table 2 demonstrating performance improvements.
已证实 (80%) The core design is flow map backward simulation, which replaces expensive full-trajectory simulation with shortcut decomposition, enabling efficient training of intermediate transitions over different time ranges
已证实 (75%) because AnyFlow preserves the fine-grained flow field, the distilled model can be further adapted to downstream datasets through continued fine-tuning
已证实 (85%) AnyFlow matches or surpasses consistency-based counterparts even with few steps and continues to improve as the number of sampling steps increases
已证实 (80%) a single AnyFlow model jointly supports text-to-video, image-to-video, and video-to-video generation
The paper states in p_6 that a single AnyFlow model supports T2V, I2V, and V2V in the causal setting. VBench-I2V scores are reported. However, V2V is mentioned but not explicitly evaluated with metrics.
已证实 (90%) For text-to-video, AnyFlow-FAR reaches 84.05 at 4 NFEs and further improves to 84.41
Specific numerical results are reported in p_6: AnyFlow-FAR reaches 84.05 at 4 NFEs and improves to 84.41. These are concrete VBench scores that can be verified.
已证实 (90%) achieves an 87.87 VBench-I2V score at 4 NFEs, comparable to Wan2.1-I2V-14B using 50×2 NFEs (87.71)
Specific numerical comparison provided: 87.87 VBench-I2V score at 4 NFEs vs Wan2.1-I2V-14B at 50×2 NFEs (87.71). Clear quantitative evidence.
已证实 (90%) In the 14B bidirectional text-to-video setting, AnyFlow reaches 84.04 at 4 NFEs, outperforming rCM-14B (83.73 at 4 NFEs)
Specific numerical comparison: AnyFlow 84.04 at 4 NFEs vs rCM-14B 83.73 at 4 NFEs. Clear quantitative evidence for the 14B bidirectional T2V setting.
已证实 (95%) AnyFlow contains two complementary stages
This is a straightforward architectural description. The paper clearly describes the two-stage approach throughout Section 4, with detailed explanations in Sections 4.2.1 and 4.2.2.
已证实 (80%) Our method follows the same high-level pipeline but replaces consistency modeling with a flow map formulation, enabling stronger any-step performance
The design choice is clearly stated in p_10 and validated through experimental results in Table 2 showing AnyFlow's stronger any-step performance compared to consistency-based methods.
已证实 (80%) our method improves simulation efficiency from the flow-trajectory perspective by decomposing a full trajectory into shortcut transitions based on the composition property of flow maps
The paper provides detailed explanation of the decomposition strategy in p_49, describing how trajectories are decomposed into three segments with shortcut transitions based on composition property.
已证实 (85%) our approach naturally supports arbitrary step budgets and generalizes to both bidirectional and causal architectures
Experimental validation across both architectures (bidirectional and causal) and multiple NFE settings is provided in Table 2 and throughout Section 5. The paper demonstrates performance across 4, 8, 16, 32 NFEs.
已证实 (90%) AnyFlow shifts the distillation target from fixed-point endpoint mapping to flow map transition learning, i.e., fθ : (zt, t, r) ↦ → zr
This is a clear methodological description. The paper explicitly states this design choice in p_33 and provides the mathematical formulation.
已证实 (90%) Instead of only predicting z0, the model learns transitions between arbitrary time pairs
Clear methodological description stated in p_33. The mathematical formulation fθ(zt, t, r) ↦ zr is provided, showing transitions between arbitrary time pairs rather than just z0.
已证实 (80%) Forward flow map training alone (e.g., MeanFlow) is insufficient for strong test-time performance in video generation
已证实 (80%) it still suffers from test-time errors, especially discretization error in few-step sampling and exposure bias in causal generation
The paper identifies specific error types (discretization error, exposure bias) and provides evidence in Figure 3 and Table 2. The claim is specific about the types of errors and when they occur.
已证实 (95%) AnyFlow is trained in two complementary stages: forward flow map training (Sec. 4.2.1) and on-policy distillation (Sec. 4.2.2)
Clear architectural description with detailed explanations in Sections 4.2.1 and 4.2.2. This is a straightforward methodological claim.
已证实 (90%) In Stage 1, we fine-tune a pretrained video diffusion model on teacher-synthesized data to learn a stable transition operator fθ : (zt, t, r) ↦ → zr
Clear methodological description in p_35. The paper specifies the training data (teacher-synthesized) and the objective (learning stable transition operator).

... 共 63 个论点

可复现性评估

较低可复现性 (0%)

缺失的复现细节

局限与证据边界

本分析由 PDF 阅读助手 自动生成,仅供参考,不构成学术评审意见。验证结论和可复现性评估基于论文文本自动分析,可能存在偏差。原始论文请参阅 arXiv

分析时间:2026-05-16T01:22:21+00:00 · 数据来源:Paper Collector