REVIEW 3 major objections 6 minor 6 cited by
VMoBA: Mixture-of-Block Attention for Video Diffusion Models
T0 review · 3 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read VMoBA claims that replacing full attention with video-specific mixture-of-block attention speeds video-diffusion training by up to 1.48x while matching or beating generation quality.
desk verdict A real MoBA-for-video adaptation with measured training speedups, but the unexamined token-dropping in global selection and a thin quality lead should be chased before believing the headline claims. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is block-sparse attention built on block means: the key sequence is partitioned into non-overlapping blocks, each block is represented by its mean key vector, queries score these block means, and only the blocks with the highest query-key block similarities contribute their actual key-value pairs to the attention output. The three carrying mechanisms are the cyclical 1D-2D-3D layer-wise partition, which preserves spatio-temporal locality; global block selection, which pools scores across all queries in a head; and threshold-based selection, which fixes the number of blocks by cumulative normalized similarity. Together they reduce the complexity from quadratic to roughly $O(sd(s/s_b + k_{\text{avg}}s_b))$.
What would settle it
If a video attention map contains a block whose mean scores low but whose individual keys include some of the most-attended tokens in the sequence, VMoBA will drop those keys; one could measure this in a pretrained video diffusion model by comparing VMoBA's selected blocks with the token-level top-k of full attention, or by replacing each block mean with the maximum-scoring key inside the block and checking whether generation quality shifts.
Extended reading notes
Core claim
The central claim is that full self-attention in video diffusion transformers can be replaced during training by a block-sparse attention that exploits three properties observed in a pretrained video diffusion transformer: attention is local along one, two, or three dimensions depending on the layer; queries differ in how much total key similarity they carry; and heads differ in how concentrated their similarity distributions are. VMoBA responds with a layer-wise 1D-2D-3D block partition, global selection of the highest-scoring query-key blocks across an entire head, and a threshold that stops block accumulation once cumulative normalized similarity passes a hyperparameter. On spatially and temporally extended fine-tuning of the Wan 2.1 base model, the paper reports comparable or better VBench quality than full attention while cutting FLOPs by up to 2.92x and training time by up to 1.48x.
Load-bearing premise
The block-selection step assumes the mean of a key block is a good stand-in for every key inside it, so that ranking blocks by query-to-block-mean similarity preserves the query-key interactions full attention would keep.
Editorial extensions
If this is right
- Training video diffusion models on longer sequences becomes materially cheaper: up to 2.92x fewer FLOPs and up to 1.48x less wall-clock training time with comparable or better quality.
- The method transfers to training-free inference on high-resolution videos, achieving up to 2.40x FLOPs and 1.35x latency speedup over full attention.
- The threshold hyperparameter directly trades compute for fidelity, so the same architecture can be tuned for speed or for closer approximation to full attention.
- Pretraining-from-scratch experiments show validation loss close to full attention at longer sequence lengths, suggesting the sparse mechanism can serve as a training-time replacement rather than only a fine-tuning shortcut.
Reading between the lines
- Beyond the paper: the block-mean selection rule implies VMoBA's advantage should grow with sequence length and with locally concentrated attention maps; diffuse, long-range attention would force the threshold to retain many blocks and erase the speedup.
- Beyond the paper: a testable prediction is that VMoBA loses accuracy when key blocks are internally heterogeneous, because a block mean cannot represent a few highly attended tokens buried among many irrelevant ones; this could be probed by comparing selected blocks against the token-level top-k of full attention.
- Beyond the paper: global selection couples all queries in a head, so one salient query can force extra blocks to be retained for the whole head; a per-query or per-region threshold may be a natural follow-up.
- Beyond the paper: the fixed mod-3 1D-2D-3D schedule suggests the partition pattern itself could be learned or adapted per layer, which might improve both quality and efficiency beyond the reported settings.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes VMoBA, a mixture-of-block sparse attention mechanism for video diffusion models (VDMs), adapted from MoBA with three changes: a layer-wise recurrent 1D-2D-3D block partition, global block selection across query-key block similarities, and threshold-based selection of the number of attended blocks. The authors motivate these choices by analyzing attention patterns in a pre-trained Wan 2.1 model. They report training experiments on extended resolutions (93x576x1024 and 141x480x832) showing up to 2.92x FLOPs reduction and 1.48x wall-clock training speedup over full attention, with VBench mean scores comparable to or slightly better than full attention (68.34 vs 68.25 in one setting). They also report training-free inference results with speedups of 2.40x FLOPs and 1.35x latency at high resolution, plus ablations of partition strategy, selection strategy, threshold, and block count, and pre-training loss comparisons in the appendix.
Significance. If the results hold, VMoBA provides a practical drop-in sparse attention for training video diffusion models on longer sequences, with clear FLOPs and wall-clock speedups while maintaining generation quality. The paper's attention-pattern analysis, the 1D-2D-3D partition scheme, and the pre-training loss study over multiple model scales are useful contributions that go beyond a direct MoBA transplant. The work is also reproducible in principle since code is linked and the method is simple to implement on top of FlashAttention. However, the central causal claim - that the quality is preserved because of the block-selection design - is currently weakened by an unaddressed token-dropping phenomenon, by the mismatch between the proposed selection mechanism and the mechanism actually used in training-free experiments, and by the absence of uncertainty estimates on the headline quality numbers.
major comments (3)
- [Section 3.3, Eq. (3) and Section 3.4, Eq. (4)] The global TopkMask in Eq. (3) selects the top k entries from the full query-by-block similarity matrix, and Eq. (4) determines k as a number of global query-block pairs, not a per-query number of blocks. Nothing in the formulation enforces a lower bound per query row, so a query whose similarities all fall below the global cutoff receives an all-zero mask row; Step 3 then computes attention over zero blocks and, with the standard residual connection, the token is passed through unchanged. This is unacknowledged token dropping rather than a sparse approximation of full attention. The paper neither reports the frequency of such empty rows nor tests a variant that guarantees at least one block per query. Since the method is motivated by preserving the most important query-key interactions, this silent mechanism could be responsible for part of the quality and speedup effects in Table 2. The authors should measure the empty-row frequency during training and inference, describe how the FlashAttention kernel handles an empty row, and compare against a version with a per-query minimum-block constraint.
- [Appendix A, Table 4 and Section 4.2] The training-free results in Table 1 do not use the proposed global+threshold selection: Appendix A states that for those experiments VMoBA uses 'Local + TopK' query-key block selection, because the global+threshold strategy 'will cause vibration effects on the generated videos.' The main text and the abstract nevertheless present these results as evidence that VMoBA 'exhibits competitive performance in training-free inference,' without any caveat in Section 4.2 or the abstract. This is misleading: the training-free speedup and quality claims do not exercise the proposed selection mechanism, and the full method is implicitly acknowledged to be unstable in that setting. The paper should clearly distinguish 'VMoBA (full)' from 'VMoBA (local top-k)' throughout, and the abstract and Section 4.2 should either be reworded or the full method's training-free behavior should be reported with the proposed selection.
- [Table 2 and Section 4.2] The claim of 'comparable or even superior generation quality' rests on a VBench mean of 68.34 for VMoBA versus 68.25 for full attention at 93x576x1024, with mixed per-category results (e.g., Dynamic 56.91% vs 61.58% and ImageQual 67.45% vs 69.49% in favor of full attention). No standard errors, confidence intervals, or multiple seeds are reported for any of the quality numbers in Tables 1, 2, 3, or 5. A 0.09-point difference in the mean is within the range one would expect from sampling noise, so 'even superior' is not supported by the evidence. At minimum, the authors should report variance across seeds or sampling runs and replace the 'superior' language with 'comparable' unless a statistically significant advantage is demonstrated.
minor comments (6)
- [Section 3.3, Eq. (3)] The notation is inconsistent: the text and Eq. (3) call k the 'number of selected blocks,' but Eq. (4) defines k as a count of selected query-block similarity entries. This conflation is directly related to the empty-row issue and should be clarified.
- [Section 4.1] The sentence 'its token sparsity may vary across different settings (always smaller than tau)' is contradicted by Table 1, where the training-free VMoBA rows report sparsity 0.31 with tau set to 0.25. The contradiction disappears only after reading Appendix A, which explains that training-free experiments use local top-k; the main text should not assert a property that holds only for the global+threshold configuration.
- [Figure 2] The labels 'RankX' and the statement '4 blocks in this example' do not match the global pair-selection formulation: if selection operates on query-block pairs, the figure should show which query rows receive no selected blocks or explain why none do.
- [Appendix D, Table 5] The paper should state more prominently that the 1.48x training-time speedup applies only to the extended resolutions; Table 5 shows VMoBA is 1.00x at the original resolution and slower (0.86x) at short resolution, which is already acknowledged in the limitations but should be echoed in the abstract.
- [Equation (1)] The typesetting of Eq. (1) is broken: 'rearrange(K in (T H W))' is not a valid tensor expression, and the brace-enclosed cases are not formatted clearly. Please revise to standard tensor notation.
- [Table 4] There is a typo in the heading: 'Implementation detials' should be 'Implementation details.'
Circularity Check
No significant circularity: VMoBA's speedup and quality claims are measured externally, not defined into existence, though one training-free evaluation setting does not use the proposed selection mechanism.
full rationale
The core derivation chain is algorithmic rather than circular. Block partition is defined constructively in Eq. (1)-(2); the selection mask in Eq. (3) is built from query-to-key-block similarities; and the number of selected blocks k in Eq. (4) is the smallest k' whose cumulative normalized similarity reaches threshold τ. No predicted quantity is defined as the fitted parameter: τ is a hyperparameter selected by ablation (Table 3c), and the reported quality numbers are measured against the external VBench benchmark (68.34 vs. 68.25) and PSNR, not derived from the equations. The FLOPs and latency speedups are measured in Tables 1-2 and follow from the algorithm's complexity, not from a quantity that was fit to those same speedups. The motivating observations about 1D-2D-3D locality, query importance, and head concentration are made on the same Wan 2.1 model family used for evaluation, but this is domain motivation rather than equation-level circularity, and the final quality comparison is against full attention on held-out prompts. Self-citations to Wan, Koala-36M, and MoBA are used as base model, dataset, and baseline respectively; they are not invoked as authority to establish the central claim. One genuine scope limitation appears in Appendix A: the training-free experiments in Table 1 use Local+TopK selection rather than the proposed Global+Threshold mechanism because the latter causes 'vibration effects'; this weakens the claim that Table 1 validates the proposed selection, but it is a mismatch in experimental coverage, not a circular derivation. Overall, no load-bearing step reduces by construction to its own input.
Assumptions & free parameters
free parameters (3)
- threshold tau =
0.25
- block partition configuration =
temporal block size 3; spatial block size 5x13; spatio-temporal blocks 8-48-72, varied by resolution
- local top-k block counts for training-free inference =
2 | 6 | 18
assumptions (4)
- domain assumption Spatio-temporal attention in video DiTs is sufficiently localized and stable that a fixed cyclic 1D-2D-3D block partition across layers captures the relevant structure.
- domain assumption The mean of key tokens within a block is a representative summary for block selection.
- domain assumption VBench subset scores and 2000-step fine-tuning on Koala-36M are adequate evidence for the generation-quality claim.
- domain assumption Full attention can be approximated by selecting blocks according to cumulative normalized similarity with threshold tau.
Cite this review
Pith. "Pith review of VMoBA: Mixture-of-Block Attention for Video Diffusion Models." pith.science (2026). https://pith.science/paper/5UWBZ4KN
@misc{pith2026250623858,
author = {Pith},
title = {Pith review of: VMoBA: Mixture-of-Block Attention for Video Diffusion Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/5UWBZ4KN}},
note = {Machine review of arXiv:2506.23858}
}
read the original abstract
The quadratic complexity of full attention mechanisms poses a significant bottleneck for Video Diffusion Models (VDMs) aiming to generate long-duration, high-resolution videos. While various sparse attention methods have been proposed, many are designed as training-free inference accelerators or do not optimally capture the unique spatio-temporal characteristics inherent in video data when trained natively. This paper introduces Video Mixture of Block Attention (VMoBA), a novel sparse attention mechanism specifically adapted for VDMs. Motivated by an in-depth analysis of attention patterns within pre-trained video transformers, which revealed strong spatio-temporal locality, varying query importance, and head-specific concentration levels, VMoBA enhances the original MoBA framework with three key modifications: (1) a layer-wise recurrent block partition scheme (1D-2D-3D) to dynamically adapt to diverse spatio-temporal attention patterns and improve efficiency; (2) global block selection to prioritize the most salient query-key block interactions across an entire attention head; and (3) threshold-based block selection to dynamically determine the number of attended blocks based on their cumulative similarity. Extensive experiments demonstrate that VMoBA significantly accelerates the training of VDMs on longer sequences, achieving 2.92x FLOPs and 1.48x latency speedup, while attaining comparable or even superior generation quality to full attention. Furthermore, VMoBA exhibits competitive performance in training-free inference, offering 2.40x FLOPs and 1.35x latency speedup for high-res video generation.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 6 Pith papers
-
Chimera: Designing and Chinchilla-Scaling Hybrid Visual Diffusion Transformers
A hybrid NoPE visual diffusion backbone with HeteroP scaling yields ~7× pretraining compute efficiency versus matched full attention and near-stable zero-shot 5s→30s video extrapolation.
-
Rethinking Position Embedding as a Context Controller for Multi-Reference and Multi-Shot Video Generation
SideInfo-RoPE encodes reference-identity agreement as an extra rotary axis, disambiguating similar characters in multi-reference multi-shot video generation while keeping full semantic attention.
-
SVG-EAR: Parameter-Free Linear Compensation for Sparse Video Generation via Error-aware Routing
Parameter-free centroid compensation plus error-aware block routing yields a better quality–density Pareto frontier for sparse attention in video DiTs than score-based sparsification.
-
Light Forcing: Accelerating Autoregressive Video Diffusion via Sparse Attention
Sparse attention with chunk-aware sparsity growth and hierarchical frame/block selection accelerates autoregressive video diffusion at ~1.3x with VBench quality on par with dense attention.
-
Trainable Log-linear Sparse Attention for Efficient Diffusion Transformers
LLSA uses hierarchical top-K selection plus coarse-token enrichment to make diffusion-transformer attention O(N log N), giving about 6x faster training at 256x256 pixel resolution with FID comparable to full attention.
-
End-to-End Training for Autoregressive Video Diffusion via Self-Resampling
Resampling Forcing trains autoregressive video diffusion models on self-resampled degraded histories with a causal mask, achieving stable long-horizon generation without a teacher or discriminator.
Reference graph
Works this paper leans on
-
[1]
Tim Brooks, Bill Peebles, Connor Holmes, Yufei Guo Will DePue, Li Jing, David Schnurr, Joe Taylor, Troy Luhman, Eric Luhman, Clarence Ng, Ricky Wang, and Aditya Ramesh. Zeroscope, 2023. 2
work page 2023
-
[2]
Sora: Creating video from text, 2024
Tim Brooks, Bill Peebles, Connor Holmes, Yufei Guo Will DePue, Li Jing, David Schnurr, Joe Taylor, Troy Luhman, Eric Luhman, Clarence Ng, Ricky Wang, and Aditya Ramesh. Sora: Creating video from text, 2024. 2
work page 2024
-
[3]
Videocrafter1: Open diffusion models for high-quality video generation
Haoxin Chen, Menghan Xia, Yingqing He, Yong Zhang, Xiaodong Cun, Shaoshu Yang, Jinbo Xing, Yaofang Liu, Qifeng Chen, Xintao Wang, et al. Videocrafter1: Open diffusion models for high-quality video generation. arXiv preprint arXiv:2310.19512, 2023. 2
-
[4]
Videocrafter2: Overcoming data limitations for high-quality video diffusion models
Haoxin Chen, Yong Zhang, Xiaodong Cun, Menghan Xia, Xintao Wang, Chao Weng, and Ying Shan. Videocrafter2: Overcoming data limitations for high-quality video diffusion models. arXiv preprint arXiv:2401.09047, 2024. 2
arXiv 2024
-
[5]
δ-dit: A training-free acceleration method tailored for diffusion transformers
Pengtao Chen, Mingzhu Shen, Peng Ye, Jianjian Cao, Chongjun Tu, Christos-Savvas Bouganis, Yiren Zhao, and Tao Chen. δ-dit: A training-free acceleration method tailored for diffusion transformers. CoRR,
-
[6]
Flashattention: Fast and memory- efficient exact attention with io-awareness
Tri Dao, Dan Fu, Stefano Ermon, Atri Rudra, and Christopher Ré. Flashattention: Fast and memory- efficient exact attention with io-awareness. NeurIPS, 2022. 4, 13
work page 2022
-
[7]
Tri Dao and Albert Gu. Transformers are ssms: generalized models and efficient algorithms through structured state space duality. In ICML, 2024. 3
work page 2024
-
[8]
A formal evaluation of psnr as quality measurement parameter for image segmentation algorithms
Fernando A Fardo, Victor H Conforto, Francisco C de Oliveira, and Paulo S Rodrigues. A formal evaluation of psnr as quality measurement parameter for image segmentation algorithms. arXiv preprint arXiv:1605.07116, 2016. 6
arXiv 2016
Show all 46 references
-
[9]
Mamba: Linear-time sequence modeling with selective state spaces
Albert Gu and Tri Dao. Mamba: Linear-time sequence modeling with selective state spaces. arXiv preprint arXiv:2312.00752, 2023. 3
2023 arXiv
-
[10]
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. In ICLR, 2024. 2
2024
-
[11]
Vbench: Comprehensive benchmark suite for video generative models
Ziqi Huang, Yinan He, Jiashuo Yu, Fan Zhang, Chenyang Si, Yuming Jiang, Yuanhan Zhang, Tianxing Wu, Qingyang Jin, Nattapol Chanpaisit, et al. Vbench: Comprehensive benchmark suite for video generative models. In CVPR, 2024. 6
2024
-
[12]
Hunyuanvideo: A systematic framework for large video generative models
Weijie Kong, Qi Tian, Zijian Zhang, Rox Min, Zuozhuo Dai, Jin Zhou, Jiangfeng Xiong, Xin Li, Bo Wu, Jianwei Zhang, et al. Hunyuanvideo: A systematic framework for large video generative models. arXiv preprint arXiv:2412.03603, 2024. 2
2024 arXiv
-
[13]
Distrifusion: Distributed parallel inference for high-resolution diffusion models
Muyang Li, Tianle Cai, Jiaxin Cao, Qinsheng Zhang, Han Cai, Junjie Bai, Yangqing Jia, Kai Li, and Song Han. Distrifusion: Distributed parallel inference for high-resolution diffusion models. In CVPR, 2024. 7
2024
-
[14]
Timestep embedding tells: It’s time to cache for video diffusion model
Feng Liu, Shiwei Zhang, Xiaofeng Wang, Yujie Wei, Haonan Qiu, Yuzhong Zhao, Yingya Zhang, Qixiang Ye, and Fang Wan. Timestep embedding tells: It’s time to cache for video diffusion model. In CVPR, 2025. 3, 7
2025
-
[15]
Pseudo numerical methods for diffusion models on manifolds
Luping Liu, Yi Ren, Zhijie Lin, and Zhou Zhao. Pseudo numerical methods for diffusion models on manifolds. In ICLR, 2022. 3
2022
-
[16]
Flow straight and fast: Learning to generate and transfer data with rectified flow
Xingchao Liu, Chengyue Gong, et al. Flow straight and fast: Learning to generate and transfer data with rectified flow. In ICLR, 2023. 3
2023
-
[17]
Vmamba: Visual state space model
Yue Liu, Yunjie Tian, Yuzhong Zhao, Hongtian Yu, Lingxi Xie, Yaowei Wang, Qixiang Ye, Jianbin Jiao, and Yunfan Liu. Vmamba: Visual state space model. NeurIPS, 2024. 3
2024
-
[18]
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. In NeurIPS, 2022. 3
2022
-
[19]
Moba: Mixture of block attention for long-context llms
Enzhe Lu, Zhejun Jiang, Jingyuan Liu, et al. Moba: Mixture of block attention for long-context llms. arXiv preprint arXiv:2502.13189, 2025. 2, 3, 7, 12, 13
2025 arXiv
-
[20]
Latent consistency models: Synthesizing high-resolution images with few-step inference
Simian Luo, Yiqin Tan, Longbo Huang, Jian Li, and Hang Zhao. Latent consistency models: Synthesizing high-resolution images with few-step inference. arXiv preprint arXiv:2310.04378, 2023. 3
2023 arXiv
-
[21]
Fastercache: Training-free video diffusion model acceleration with high quality
Zhengyao Lv, Chenyang Si, Junhao Song, Zhenyu Yang, Yu Qiao, Ziwei Liu, and Kwan-Yee K Wong. Fastercache: Training-free video diffusion model acceleration with high quality. arXiv preprint arXiv:2410.19355, 2024. 3, 7
2024 arXiv
-
[22]
Block-attention for efficient prefilling
Dongyang Ma, Yan Wang, and Tian Lan. Block-attention for efficient prefilling. In ICLR, 2024. 2, 3
2024
-
[23]
DeepCache: Accelerating diffusion models for free
Xinyin Ma, Gongfan Fang, and Xinchao Wang. DeepCache: Accelerating diffusion models for free. arXiv preprint arXiv:2312.00858, 2023. 3
2023 arXiv
-
[24]
Latte: Latent diffusion transformer for video generation
Xin Ma, Yaohui Wang, Gengyun Jia, Xinyuan Chen, Ziwei Liu, Yuan-Fang Li, Cunjian Chen, and Yu Qiao. Latte: Latent diffusion transformer for video generation. arXiv preprint arXiv:2401.03048, 2024. 2 10
2024 arXiv
-
[25]
Rwkv: Reinventing rnns for the transformer era
Bo Peng, Eric Alcaide, Quentin Gregory Anthony, Alon Albalak, Samuel Arcadinho, Stella Biderman, Huanqi Cao, Xin Cheng, Michael Nguyen Chung, Leon Derczynski, et al. Rwkv: Reinventing rnns for the transformer era. In EMNLP, 2023. 3
2023
-
[26]
High-resolution image synthesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Björn Ommer. High-resolution image synthesis with latent diffusion models. In CVPR, 2022. 2
2022
-
[27]
Photorealistic text-to- image diffusion models with deep language understanding
Chitwan Saharia, William Chan, Saurabh Saxena, Lala Li, Jay Whang, Emily L Denton, Kamyar Ghasemipour, Raphael Gontijo Lopes, Burcu Karagol Ayan, Tim Salimans, et al. Photorealistic text-to- image diffusion models with deep language understanding. NeurIPS, 2022. 2
2022
-
[28]
Progressive distillation for fast sampling of diffusion models
Tim Salimans and Jonathan Ho. Progressive distillation for fast sampling of diffusion models. In ICLR,
-
[29]
Denoising diffusion implicit models
Jiaming Song, Chenlin Meng, and Stefano Ermon. Denoising diffusion implicit models. In ICLR, 2020. 3
2020
-
[30]
Consistency models
Yang Song, Prafulla Dhariwal, Mark Chen, and Ilya Sutskever. Consistency models. In ICML, 2023. 3
2023
-
[31]
Attention is all you need
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. NeurIPS, 2017. 2
2017
-
[32]
Wan: Open and advanced large-scale video generative models
Ang Wang, Baole Ai, Bin Wen, Chaojie Mao, Chen-Wei Xie, Di Chen, Feiwu Yu, Haiming Zhao, Jianxiao Yang, Jianyuan Zeng, et al. Wan: Open and advanced large-scale video generative models. arXiv preprint arXiv:2503.20314, 2025. 2, 4, 7, 8, 13
2025 arXiv
-
[33]
Lingen: Towards high-resolution minute-length text-to-video generation with linear computational complexity
Hongjie Wang, Chih-Yao Ma, Yen-Cheng Liu, Ji Hou, Tao Xu, Jialiang Wang, Felix Juefei-Xu, Yaqiao Luo, Peizhao Zhang, Tingbo Hou, et al. Lingen: Towards high-resolution minute-length text-to-video generation with linear computational complexity. arXiv preprint arXiv:2412.09856, 2024. 3
2024 arXiv
-
[34]
Modelscope text-to-video technical report
Jiuniu Wang, Hangjie Yuan, Dayou Chen, Yingya Zhang, Xiang Wang, and Shiwei Zhang. Modelscope text-to-video technical report. arXiv preprint arXiv:2308.06571, 2023. 2
2023 arXiv
-
[35]
Koala-36m: A large-scale video dataset improving consistency between fine-grained conditions and video content
Qiuheng Wang, Yukai Shi, Jiarong Ou, Rui Chen, Ke Lin, Jiahao Wang, Boyuan Jiang, Haotian Yang, Mingwu Zheng, Xin Tao, et al. Koala-36m: A large-scale video dataset improving consistency between fine-grained conditions and video content. arXiv preprint arXiv:2410.08260, 2024. 6
-
[36]
Lavie: High-quality video generation with cascaded latent diffusion models
Yaohui Wang, Xinyuan Chen, Xin Ma, Shangchen Zhou, Ziqi Huang, Yi Wang, Ceyuan Yang, Yinan He, Jiashuo Yu, Peiqing Yang, et al. Lavie: High-quality video generation with cascaded latent diffusion models. arXiv preprint arXiv:2309.15103, 2023. 2
2023 arXiv
-
[37]
Sparse videogen: Accelerating video diffusion transformers with spatial-temporal sparsity
Haocheng Xi, Shuo Yang, Yilong Zhao, Chenfeng Xu, Muyang Li, Xiuyu Li, Yujun Lin, Han Cai, Jintao Zhang, Dacheng Li, et al. Sparse videogen: Accelerating video diffusion transformers with spatial-temporal sparsity. arXiv preprint arXiv:2502.01776, 2025. 2, 3, 5, 7, 8, 12
2025 arXiv
-
[38]
Cogvideox: Text-to-video diffusion models with an expert transformer
Zhuoyi Yang, Jiayan Teng, Wendi Zheng, Ming Ding, Shiyu Huang, Jiazheng Xu, Yuanming Yang, Wenyi Hong, Xiaohan Zhang, Guanyu Feng, et al. Cogvideox: Text-to-video diffusion models with an expert transformer. CoRR, 2024. 6
2024
-
[39]
Improved distribution matching distillation for fast image synthesis
Tianwei Yin, Michaël Gharbi, Taesung Park, Richard Zhang, Eli Shechtman, Fredo Durand, and William T Freeman. Improved distribution matching distillation for fast image synthesis. In NeurIPS, 2024. 3
2024
-
[40]
Mambaout: Do we really need mamba for vision? CoRR, 2024
Weihao Yu and Xinchao Wang. Mambaout: Do we really need mamba for vision? CoRR, 2024. 3
2024
-
[41]
Native sparse attention: Hardware-aligned and natively trainable sparse attention
Jingyang Yuan, Huazuo Gao, Damai Dai, et al. Native sparse attention: Hardware-aligned and natively trainable sparse attention. arXiv preprint arXiv:2502.11089, 2025. 2, 3
2025 arXiv
-
[42]
Ditfastattn: Attention compression for diffusion transformer models
Zhihang Yuan, Hanling Zhang, Lu Pu, Xuefei Ning, Linfeng Zhang, Tianchen Zhao, Shengen Yan, Guohao Dai, and Yu Wang. Ditfastattn: Attention compression for diffusion transformer models. NeurIPS, 2024. 2, 3, 7, 12
2024
-
[43]
Spargeattn: Accurate sparse attention accelerating any model inference
Jintao Zhang, Chendong Xiang, Haofeng Huang, Jia Wei, Haocheng Xi, Jun Zhu, and Jianfei Chen. Spargeattn: Accurate sparse attention accelerating any model inference. arXiv preprint arXiv:2502.18137,
-
[44]
Fast video generation with sliding tile attention
Peiyuan Zhang, Yongqi Chen, Runlong Su, Hangliang Ding, Ion Stoica, Zhenghong Liu, and Hao Zhang. Fast video generation with sliding tile attention. arXiv preprint arXiv:2502.04507, 2025. 2, 3
2025 arXiv
-
[45]
Real-time video generation with pyramid attention broadcast
Xuanlei Zhao, Xiaolong Jin, Kai Wang, and Yang You. Real-time video generation with pyramid attention broadcast. CoRR, 2024. 3, 7 11 Appendix Table of contents. The supplementary includes the following sections: • Appendix A. Implementation details of the experiments. • Append...
2024
-
[512]
The 1-2-3D block numbers of VMoBA are 10, 48, and 60
for shorter length, and 46k (77 × 576 × 1024) for longer length. The 1-2-3D block numbers of VMoBA are 10, 48, and 60. The threshold τ is set to 0.25. The model configuration are shown in Table 6. We use the same architecture as Wan 2.1 [ 32]. For VMoBA models, we replace all ...
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.