Pith. sign in

REVIEW 3 major objections 5 minor 143 references

Attention entropy tells video transformers exactly which keys each token needs, so dense attention can be replaced by a temporally decaying radius mask—training-free.

Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →

T0 review · deepseek-v4-flash

2026-08-04 05:56 UTC pith:BHGBKHT7

load-bearing objection TRA is a plausible training-free speedup with a clean entropy-to-radius idea, but the quality claim rests on a local-motion prior the paper itself concedes. the 3 major comments →

arxiv 2608.02504 v1 pith:BHGBKHT7 submitted 2026-08-03 cs.CV

Token Radius Attention for Efficient Video Generation

classification cs.CV
keywords video diffusion transformerssparse attentionattention entropytoken budgetradius attentiontraining-free accelerationvideo generationtemporal decay
verification ladder T0 review T1 audit T2 compute T3 formal T4 reserved

The pith

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

The paper claims that the quadratic cost of dense 3D self-attention in video diffusion transformers can be cut dramatically without retraining by allocating computation per query token instead of per head or per block. It shows that the fraction of keys a query actually needs is predicted by that query's attention entropy, and that the important keys form a query-centered disk whose radius shrinks with temporal distance. From this it builds Token Radius Attention (TRA): entropy → token budget → radius mask, executed with fused kernels and block-sparse attention. Across seven Wan and HunyuanVideo configurations, TRA keeps only 9–19% of attention interactions, achieves 1.56×–2.05× speedups, and stays close to dense-attention quality. The reason to care is that video generation is bottlenecked by attention cost, and this offers a parameter-free, training-free way to make the bottleneck adaptive to what each token actually needs.

Core claim

The central claim is that token-specific attention demand in video diffusion transformers is readable from attention entropy and spatially structured as query-centered disks. The paper establishes two empirical regularities: retained density—the minimum top-key fraction needed to preserve a given attention mass—varies by orders of magnitude across queries yet grows log-linearly with entropy (R² ≈ 0.94–0.99), and normalized attention scores decay roughly exponentially with 2D spatial distance, so each query's dominant interactions live in a circle of token-dependent radius. TRA converts entropy H into budget ⌈τ exp(H)⌉, converts that budget into a base radius r_i via disk-area counting with t

What carries the argument

The Token Radius mask—M_ij = I[d_s(i,j) ≤ r_i exp(−γ|f_j − f_i|)]—is the object that carries the argument: it converts a query-specific scalar budget into a regular, coordinate-defined spatiotemporal support. The entropy-to-budget map B ≈ τ exp(H)/N is its parameter-free companion: it turns attention entropy, computed cheaply during dense warm-up, into the number of keys to retain. Together they replace per-query top-k selection with a monotonic radius rule, and the paper's fused kernels plus tile-major reordering make that logical mask practical by mapping it to a block-sparse attention backend.

Load-bearing premise

The load-bearing premise is that every query's important keys live in a query-centered spatial disk whose extent is predictable from entropy; the paper itself concedes in its limitations section that this fixed distance-based pattern may miss long-range object correspondence, nonlocal motion, and scene-dependent attention structures, and if a significant share of attention is content-dependent rather than distance-based, the radius mask silently deletes those interactions and

What would settle it

Generate videos with a small, fast-moving object (for example, a ball crossing the frame) using TRA and dense attention at the same seed, then compare the object's presence and fidelity across frames: if TRA loses or distorts the object more than dense output does, that is the predicted failure of the distance-based mask. A quantitative version: for tokens in frames separated by large displacement, measure the attention mass falling outside the radius mask; if that mass exceeds the target τ, the entropy-to-radius transmission breaks.

Watch this falsifier. Get emailed when new claim-graph text bears on it.

If this is right

  • Sparse attention for video diffusion transformers can be decided at query-token granularity without paying per-query ranking costs; entropy is a sufficient budget signal.
  • TRA is training-free and transfers across model families and tasks: Wan2.1, Wan2.2, and HunyuanVideo, and text-to-video and image-to-video, use the same pipeline.
  • Keeping only 9–19% of attention interactions yields 1.56×–2.05× end-to-end speedups; the remaining overhead is mainly mask construction and block-sparse execution, which the paper's kernels reduce by roughly 10×.
  • Generation quality measured by VBench stays competitive with dense attention; on Wan2.1-14B T2V the sparse model is within about 0.02 points of dense on the overall score.
  • Because entropy is reused across denoising steps after warm-up, the amortized cost of adaptivity is small; ablations show warm-up length is the main quality/runtime knob.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The entropy–density relation is likely not specific to video DiTs: any attention distribution whose effective support grows exponentially in entropy would benefit from the same budget rule, so the idea may transfer to long-context language models or image diffusion models.
  • The fixed temporal decay rate (0.6 for Wan, 0.95 for HunyuanVideo) is a content-independent knob; tuning it per scene or conditioning it on motion magnitude could extend TRA to fast camera motion, where the radius pattern is most at risk.
  • A direct test against content-aware alternatives: at matched FLOPs, measure attention recall on prompts with large object displacement; if recall drops below the target mass τ, the radius prior—not the entropy budget—is the bottleneck.
  • TRA composes with orthogonal acceleration methods such as step distillation, caching, and quantization, so its practical speedup in deployed systems could be larger than the isolated 1.56×–2.05× reported.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 5 minor

Summary. The paper proposes Token Radius Attention (TRA), a training-free sparse-attention method for video diffusion transformers. For each query, TRA estimates a token budget from attention entropy via an analytic uniform-support surrogate, converts the budget into a query-specific spatial radius, applies exponential temporal decay, and executes the resulting masks through a fused CUDA kernel on a block-sparse backend. The authors evaluate TRA on seven Wan2.1/Wan2.2/HunyuanVideo T2V/I2V configurations, reporting 9–19% retained attention density, 1.56x–2.05x speedups, and VBench scores close to dense attention, along with ablations and kernel-level efficiency results.

Significance. If the empirical claims hold, TRA is a useful contribution: it introduces token-level adaptivity into sparse video attention without per-query key ranking, provides a closed-form entropy-to-budget mapping, and demonstrates practical speedups on large public models. The paper also ships code, validates the two motivating observations on multiple architectures, and includes a detailed distributional analysis in the appendix (Lognormal/Gamma/Weibull surrogates). These are concrete strengths: the analytic mapping is not fitted to the benchmark, and the cross-model generalization is explicitly tested. The main risk is that the central premise—dominant attention is contained in a query-centered, temporally decaying disk—is only tested on aggregate distance-decay statistics and overall VBench means, not on difficult nonlocal-motion cases.

major comments (3)
  1. [§4.1, Table 1] The Radial Attention baseline is evaluated at a different resolution (768x1280 vs 720x1280) and with different frame counts (69/77/117 vs 81/129). Since VBench dimensions such as Temporal Flickering, Motion Smoothness, and Background Consistency depend on both resolution and temporal length, the Table 1 comparison between TRA and Radial is confounded. The claim that TRA provides a favorable quality-efficiency trade-off over Radial is therefore not established as reported. Please re-run Radial under the same resolution/frame count as the other methods, or provide a quantitative analysis of how the resolution/frame-count difference affects the reported metrics.
  2. [§B.1, Table 5] The 'Entropy and Mask Refresh' rows report identical PSNR/SSIM/LPIPS (21.6030/0.7589/0.2035) for 'Never' and refresh intervals of 10, 5, and 2 steps, with only runtime changing. Moreover, the 'Never' row does not match the default 10-step warm-up row in the same table (23.4520/0.8020/0.1615). This is internally inconsistent. Either the refresh ablation was run under a different configuration not stated in the caption, or the numbers are erroneous. As printed, Table 5 cannot be used as evidence for the design choice of not refreshing entropy/masks. Please correct the table or add a clear explanation of the configuration used for those rows.
  3. [§D, Eq. (14)] The method's hard radius mask deletes every key outside the query-centered disk r_i * exp(-gamma |t - f_i|). The authors acknowledge in Section D that this 'may not fully capture content-dependent interactions, including long-range object correspondence, nonlocal motion, or scene-dependent attention structures.' Because all quality results are reported only as overall VBench means, there is no evidence that TRA preserves quality for videos where the dominant attention mass lies far from the query (fast motion, occlusion, scene changes). The abstract-level claim of 'competitive generation quality' is thus conditional on a test distribution of mostly local, stable motion. Please provide motion- or content-stratified results, or a direct measurement of the actual attention mass captured by Eq. (14) for queries with large temporal displacement. Without such evidence, the central claim is not
minor comments (5)
  1. [Figure 2] 'Attention recall' is plotted but never defined in the main text or appendix. Please specify how it is computed (e.g., fraction of true top-k mass contained in the mask) and how the density axis is calculated.
  2. [§A.2, Eq. (16)] The analytic mapping uses slope 1 in log-B vs H, while the empirical fits in Figures 3 and 7 report slopes of approximately 0.72–0.85. Table 4 shows a reasonable MAE, but a short discussion of why the uniform-support slope is preferred over using the empirical slope (which would still be parameter-free if fixed) would strengthen the justification.
  3. [§C.1, Algorithm 1] The block-voting rule introduces undocumented thresholds: a key column is 'high coverage' if c_j > b/3, and the block is retained if |C_hi| > 0.6|C|. These thresholds affect the actual mask and efficiency, but no sensitivity analysis or rationale is given. Please at least state that they are fixed and comment on their role.
  4. [Table 2] The row labeled 'w/o Radius Masking' is described in the text as replacing the budget-preserving radius with a 1D radial distance. The label is misleading; consider 'w/o 2D radius (1D distance)' or similar.
  5. [Table 1] VBench scores are reported without error bars or multiple-seed variance. Given that generation is stochastic, a small number of seeds and standard deviations would help confirm the claim that TRA 'nearly matches' dense attention and is consistently best among sparse methods.

Circularity Check

0 steps flagged

No load-bearing circularity; TRA's entropy-to-budget mapping is parameter-free and its quality claims are externally benchmarked, with only minor self-citations that are independently validated in the paper.

full rationale

TRA's central derivation chain is not circular. The entropy-to-budget mapping (Eqs. 5-8) is an explicit uniform-support surrogate; it is not fitted to the evaluation benchmarks. The paper even notes the empirical log-linear slopes are about 0.77-0.85 (Figs. 3, 7) while TRA uses the parameter-free slope-1 surrogate, and Appendix A.2 validates the surrogate against oracle budgets (Table 4). The budget-to-radius construction (Eqs. 10-14) matches the mask's key count to the predicted budget by definition, but the paper does not present that as a prediction of quality; generation quality is measured externally on VBench/PSNR against dense attention and baselines. The token-radius pattern is supported by the paper's own measurements (Figs. 4, 8; R^2=0.791/0.994) rather than only by citation. The self-citations to EcoVideo (Chen et al. 2026a) and Radial Attention (Li et al. 2026) are not load-bearing: cross-step entropy stability is independently validated in Fig. 10 (minimum cosine 0.945), and the temporal exponential decay is explicitly adopted as a modeling prior, with Section D acknowledging that the fixed distance-based pattern 'may not fully capture content-dependent interactions, including long-range object correspondence, nonlocal motion, or scene-dependent attention structures.' These are correctness/scope limitations, not circular reductions. Score 2 reflects the minor self-citation/imported-prior residue, not a self-definitional or fitted-input circularity.

Axiom & Free-Parameter Ledger

4 free parameters · 5 axioms · 0 invented entities

TRA introduces no new physical or conceptual entities; the token radius is a derived mask geometry. The method's free parameters (τ, γ, warm-up length, block size) are hand-chosen and model-specific, not fitted to the evaluation benchmarks.

free parameters (4)
  • target attention mass τ = 0.9 (used in appendix analysis; not explicitly fixed in main experiments)
    Chosen by hand to define the quality target for the budget mapping. Lower τ would reduce retained density and likely hurt quality.
  • temporal decay rate γ = 0.6 for Wan models, 0.95 for HunyuanVideo
    Hand-set hyperparameter controlling how fast the spatial radius shrinks with temporal distance. No sensitivity analysis is shown in the main text.
  • dense warm-up length = 25% of denoising steps (10 of 40 steps)
    Modeling choice; the appendix ablation shows PSNR rises from 23.45 (10 steps) to 29.21 (20 steps), so the default is a speed-quality trade-off point.
  • block size = 90 (default)
    Chosen for the quality-efficiency balance; the ablation shows block size 120 degrades PSNR from 23.45 to 22.29.
axioms (5)
  • domain assumption Attention entropy is a reliable query-specific budget signal (retained density grows approximately log-linearly with entropy).
    Empirically observed on Wan2.2 and HunyuanVideo (R² = 0.94-0.99), but not guaranteed for other architectures. The analytic mapping uses slope 1, while measured slopes are ~0.77-0.85.
  • domain assumption Dominant attention interactions lie within query-centered 2D disks with temporally decaying radii.
    Underlies the radius construction (Eqs. 3, 9, 14). The paper acknowledges in Section D that long-range, nonlocal interactions may violate this.
  • domain assumption Query-wise entropy is stable across denoising steps, so warm-up entropy can be reused later.
    Supported by Appendix A.3 (cosine similarity ≥ 0.945) and by self-cited prior work Chen et al. 2026a. If this fails, the reuse of masks would be invalid.
  • domain assumption Tile-major reordering and block-sparse execution exactly implement the token-radius mask.
    Required for the efficiency claim. Relies on the FlashInfer backend and the vote-based block pruning rule (Algorithm 1).
  • ad hoc to paper The uniform-support surrogate gives a valid entropy-to-budget approximation.
    Equations 5-8. Appendix Table 4 shows MAE 0.046, worse than Lognormal/Weibull alternatives, but the authors retain it for closed-form simplicity.

pith-pipeline@v1.3.0-daily-deepseek · 18603 in / 12257 out tokens · 117871 ms · 2026-08-04T05:56:16.978251+00:00 · methodology

0 comments
read the original abstract

Video Diffusion Transformers (VDiTs) enable high-fidelity generation but incur quadratic cost from dense 3D self-attention. Existing head- and block-level sparse methods share computation budgets across queries, overlooking token-specific attention demand. We observe that retained density varies across queries yet correlates log-linearly with attention entropy, while dominant interactions form query-centered neighborhoods with token-dependent radii. Based on these findings, we propose Token Radius Attention (TRA), a training-free framework that maps query entropy to an analytic token budget and converts it into a temporally decayed radius without explicit key ranking. Fused entropy extraction, warm-up reuse, and block-sparse mask construction further reduce overhead. Across seven Wan2.1, Wan2.2, and HunyuanVideo T2V/I2V configurations, TRA retains only 9-19% of attention interactions and achieves 1.56x-2.05x speedup with competitive generation quality. Code is available at https://github.com/IF-LAB-PKU/Token-Radius-Attention.

Figures

Figures reproduced from arXiv: 2608.02504 by Guojie Luo, Hengyi Zhang, Jiawei Yang, Jiayi Luo, Jiayu Chen, Maoliang Li, Xiang Chen, Zhikun Jiang, Zihao Zheng.

Figure 1
Figure 1. Figure 1: Comparison of sparse attention paradigms: TRA [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Figure 2: PSNR and attention recall versus attention den￾sity. Token Radius Attention achieves a favorable quality￾efficiency trade-off compared with baselines. demand. Second, a budget specifies only how much compu￾tation to allocate, but not where to allocate it. To address this challenge, we analyze token-specific at￾tention sparsity and its spatial support geometry. For each query, we define retained density as … view at source ↗
Figure 4
Figure 4. Figure 4: (b) explains why a radius is an effective support parameter. The normalized attention probability decays ap￾proximately exponentially with two-dimensional spatial dis￾tance (R2 = 0.791); hence, enlarging a query-centered disk (b) Token-level Attention Score Distribution Head 22 Token 5388 Layer39 Head 22 Token 5474 Head 25 Token 7085 Layer39 Layer39 Layer1 Layer38 (a) Token-level Attention Pattern Layer 35… view at source ↗
Figure 5
Figure 5. Figure 5: Overview of Token Radius Attention (TRA). (a) Query-wise entropy predicts a token budget. (b) The budget is converted into temporally decayed spatial radii. (c) A fused CUDA kernel constructs efficient block masks for execution. ity motivates an entropy-based estimate of the effective token budget for each query. Specifically, consider the attention distribution pi = (pi1, . . . , piN ) ∈ R N of query i, w… view at source ↗
Figure 6
Figure 6. Figure 6: Qualitative comparison of various methods on Wan2.1 and HunyuanVideo. [PITH_FULL_IMAGE:figures/full_fig_p007_6.png] view at source ↗
Figure 7
Figure 7. Figure 7: Query-wise entropy–retained-density relation on HunyuanVideo-13B across different denoising steps, transformer [PITH_FULL_IMAGE:figures/full_fig_p010_7.png] view at source ↗
Figure 8
Figure 8. Figure 8: Token Radius Attention pattern on HunyuanVideo-13B. [PITH_FULL_IMAGE:figures/full_fig_p010_8.png] view at source ↗
Figure 9
Figure 9. Figure 9: Distributional validation of the entropy-to-budget mapping at [PITH_FULL_IMAGE:figures/full_fig_p011_9.png] view at source ↗
Figure 10
Figure 10. Figure 10: Cross-step stability of query-wise attention entropy. Each matrix reports the pairwise cosine similarity between [PITH_FULL_IMAGE:figures/full_fig_p012_10.png] view at source ↗
Figure 11
Figure 11. Figure 11: Additional qualitative results generated with TRA. Each row shows temporally ordered frames sampled from one [PITH_FULL_IMAGE:figures/full_fig_p013_11.png] view at source ↗

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

143 extracted references · 37 linked inside Pith

  1. [1]

    arXiv preprint arXiv:2506.08009 , year=

    Self forcing: Bridging the train-test gap in autoregressive video diffusion , author=. arXiv preprint arXiv:2506.08009 , year=

  2. [3]

    arXiv preprint arXiv:2602.02214 , year=

    Causal Forcing: Autoregressive Diffusion Distillation Done Right for High-Quality Real-Time Interactive Video Generation , author=. arXiv preprint arXiv:2602.02214 , year=

  3. [4]

    Proceedings of the IEEE/CVF international conference on computer vision , pages=

    Scalable diffusion models with transformers , author=. Proceedings of the IEEE/CVF international conference on computer vision , pages=

  4. [5]

    arXiv preprint arXiv:2503.20314 , year=

    Wan: Open and advanced large-scale video generative models , author=. arXiv preprint arXiv:2503.20314 , year=

  5. [6]

    arXiv preprint arXiv:2408.06072 , year=

    Cogvideox: Text-to-video diffusion models with an expert transformer , author=. arXiv preprint arXiv:2408.06072 , year=

  6. [7]

    arXiv preprint arXiv:2508.13009 , year=

    Matrix-game 2.0: An open-source real-time and streaming interactive world model , author=. arXiv preprint arXiv:2508.13009 , year=

  7. [8]

    arXiv preprint arXiv:2507.17744 , year=

    Yume: An interactive world generation model , author=. arXiv preprint arXiv:2507.17744 , year=

  8. [9]

    arXiv preprint arXiv:2601.10553 , year=

    Inference-time Physics Alignment of Video Generative Models with Latent World Models , author=. arXiv preprint arXiv:2601.10553 , year=

  9. [10]

    arXiv preprint arXiv:2602.18422 , year=

    Generated Reality: Human-centric World Simulation using Interactive Video Generation with Hand and Camera Control , author=. arXiv preprint arXiv:2602.18422 , year=

  10. [11]

    arXiv preprint arXiv:2512.17661 , year=

    Vidarc: Embodied Video Diffusion Model for Closed-loop Control , author=. arXiv preprint arXiv:2512.17661 , year=

  11. [12]

    arXiv preprint arXiv:2602.15922 , year=

    World action models are zero-shot policies , author=. arXiv preprint arXiv:2602.15922 , year=

  12. [13]

    arXiv preprint arXiv:2510.02283 , year=

    Self-forcing++: Towards minute-scale high-quality video generation , author=. arXiv preprint arXiv:2510.02283 , year=

  13. [14]

    arXiv preprint arXiv:2509.22622 , year=

    Longlive: Real-time interactive long video generation , author=. arXiv preprint arXiv:2509.22622 , year=

  14. [15]

    arXiv preprint arXiv:2509.25161 , year=

    Rolling forcing: Autoregressive long video diffusion in real time , author=. arXiv preprint arXiv:2509.25161 , year=

  15. [16]

    arXiv preprint arXiv:2602.07775 , year=

    Rolling Sink: Bridging Limited-Horizon Training and Open-Ended Testing in Autoregressive Video Diffusion , author=. arXiv preprint arXiv:2602.07775 , year=

  16. [17]

    arXiv preprint arXiv:2603.12513 , year=

    MemRoPE: Training-Free Infinite Video Generation via Evolving Memory Tokens , author=. arXiv preprint arXiv:2603.12513 , year=

  17. [18]

    arXiv preprint arXiv:2512.05081 , year=

    Deep forcing: Training-free long video generation with deep sink and participative compression , author=. arXiv preprint arXiv:2512.05081 , year=

  18. [19]

    Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=

    From slow bidirectional to fast autoregressive video diffusion models , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=

  19. [20]

    arXiv preprint arXiv:2406.11838 , year=

    Autoregressive Image Generation without Vector Quantization , author=. arXiv preprint arXiv:2406.11838 , year=

  20. [21]

    Lumina-mgpt:

    Liu, Dongyang and Zhao, Shitian and Zhuo, Le and Lin, Weifeng and Qiao, Yu and Li, Hongsheng and Gao, Peng , journal=. Lumina-mgpt:

  21. [22]

    arXiv preprint arXiv:2505.13211 , year =

    MAGI‐1: Autoregressive Video Generation at Scale , author =. arXiv preprint arXiv:2505.13211 , year =

  22. [23]

    Xie, Jinheng and Mao, Weijia and Bai, Zechen and Zhang, David Junhao and Wang, Weihao and Lin, Kevin Qinghong and Gu, Yuchao and Chen, Zhijie and Yang, Zhenheng and Shou, Mike Zheng , journal=. Show-o:

  23. [24]

    Visual autoregressive modeling:

    Tian, Keyu and Jiang, Yi and Yuan, Zehuan and Peng, Bingyue and Wang, Liwei , journal=NIPS, year=. Visual autoregressive modeling:

  24. [25]

    Infinity:

    Han, Jian and Liu, Jinlai and Jiang, Yi and Yan, Bin and Zhang, Yuqi and Yuan, Zehuan and Peng, Bingyue and Liu, Xiaobing , journal=. Infinity:

  25. [26]

    Tang, Haotian and Wu, Yecheng and Yang, Shang and Xie, Enze and Chen, Junsong and Chen, Junyu and Zhang, Zhuoyang and Cai, Han and Lu, Yao and Han, Song , journal=

  26. [27]

    Frequency‐Aware Autoregressive Modeling for Efficient High‐Resolution Image Synthesis , author =

  27. [28]

    arXiv preprint arXiv:2506.08908 , year=

    SkipVAR: Accelerating Visual Autoregressive Modeling via Adaptive Frequency-Aware Skipping , author=. arXiv preprint arXiv:2506.08908 , year=

  28. [29]

    arXiv preprint arXiv:2505.19602 , year=

    Memory-Efficient Visual Autoregressive Modeling with Scale-Aware KV Cache Compression , author=. arXiv preprint arXiv:2505.19602 , year=

  29. [30]

    arXiv preprint arXiv:2504.09261 , year=

    Head-aware kv cache compression for efficient visual autoregressive modeling , author=. arXiv preprint arXiv:2504.09261 , year=

  30. [31]

    arXiv preprint arXiv:2503.23367 , year=

    Fastvar: Linear visual autoregressive modeling via cached token pruning , author=. arXiv preprint arXiv:2503.23367 , year=

  31. [32]

    Collaborative decoding makes visual auto-regressive modeling efficient , author=

  32. [33]

    arXiv preprint arXiv:2411.17178 , year=

    Litevar: Compressing visual autoregressive modelling with efficient attention and quantization , author=. arXiv preprint arXiv:2411.17178 , year=

  33. [34]

    Ghosh, Dhruba and Hajishirzi, Hannaneh and Schmidt, Ludwig , journal=NIPS, volume=

  34. [35]

    Li, Daiqing and Kamko, Aleks and Akhgari, Ehsan and Sabet, Ali and Xu, Linmiao and Doshi, Suhail , journal=

  35. [36]

    Advances in Neural Information Processing Systems , volume=

    Imagereward: Learning and evaluating human preferences for text-to-image generation , author=. Advances in Neural Information Processing Systems , volume=

  36. [37]

    arXiv preprint arXiv:2403.05135 , year =

    Ella: Equip Diffusion Models with LLM for Enhanced Semantic Alignment , author =. arXiv preprint arXiv:2403.05135 , year =

  37. [38]

    Scaling Test-Time Compute Optimally Can be More Effective than Scaling

    Snell, Charlie Victor and Lee, Jaehoon and Xu, Kelvin and Kumar, Aviral , year =. Scaling Test-Time Compute Optimally Can be More Effective than Scaling

  38. [39]

    Autoregressive Model Beats Diffusion:

    Sun, Peize and Jiang, Yi and Chen, Shoufa and Zhang, Shilong and Peng, Bingyue and Luo, Ping and Yuan, Zehuan , journal=. Autoregressive Model Beats Diffusion:

  39. [40]

    Taming transformers for high-resolution image synthesis , author=

  40. [41]

    arXiv preprint arXiv:2306.09341 , year=

    Human preference score v2: A solid benchmark for evaluating human preferences of text-to-image synthesis , author=. arXiv preprint arXiv:2306.09341 , year=

  41. [42]

    Pattern Recognition , volume=

    Entropy guided attention network for weakly-supervised action localization , author=. Pattern Recognition , volume=. 2022 , publisher=

  42. [43]

    2023 , doi =

    Active Visual Exploration Based on Attention‐Map Entropy , author =. 2023 , doi =

  43. [44]

    vid‐TLDR: Training Free Token merging for Light‐weight Video Transformer , author =

  44. [45]

    SIGGRAPH Asia , pages=

    Follow-your-emoji: Fine-controllable and expressive freestyle portrait animation , author=. SIGGRAPH Asia , pages=

  45. [46]

    Follow your pose: Pose-guided text-to-video generation using pose-free videos , author=

  46. [47]

    arXiv preprint arXiv:2410.21759 , year=

    IntLoRA: Integral Low-rank Adaptation of Quantized Diffusion Models , author=. arXiv preprint arXiv:2410.21759 , year=

  47. [48]

    Transfusion:

    Zhou, Chunting and Yu, Lili and Babu, Arun and Tirumala, Kushal and Yasunaga, Michihiro and Shamis, Leonid and Kahn, Jacob and Ma, Xuezhe and Zettlemoyer, Luke and Levy, Omer , journal=. Transfusion:

  48. [49]

    Gu, Jiatao and Wang, Yuyang and Zhang, Yizhe and Zhang, Qihang and Zhang, Dinghuai and Jaitly, Navdeep and Susskind, Josh and Zhai, Shuangfei , journal=

  49. [50]

    Neural discrete representation learning , author=

  50. [51]

    Conditional image generation with pixelcnn decoders , author=

  51. [52]

    2020 , organization=

    Generative pretraining from pixels , author=. 2020 , organization=

  52. [53]

    arXiv preprint arXiv:2001.08361 , year=

    Scaling laws for neural language models , author=. arXiv preprint arXiv:2001.08361 , year=

  53. [54]

    arXiv preprint arXiv:2307.01952 , year=

    Podell, Dustin and English, Zion and Lacey, Kyle and Blattmann, Andreas and Dockhorn, Tim and M. arXiv preprint arXiv:2307.01952 , year=

  54. [55]

    High-resolution image synthesis with latent diffusion models , author=

  55. [56]

    Scaling rectified flow transformers for high-resolution image synthesis , author=

  56. [57]

    He, Yefei and Chen, Feng and He, Yuanyu and He, Shaoxuan and Zhou, Hong and Zhang, Kaipeng and Zhuang, Bohan , journal=

  57. [58]

    Cai, Tianle and Li, Yuhong and Geng, Zhengyang and Peng, Hongwu and Lee, Jason D and Chen, Deming and Dao, Tri , journal=

  58. [59]

    2023 , organization=

    Fast inference from transformers via speculative decoding , author=. 2023 , organization=

  59. [60]

    arXiv preprint arXiv:2305.10427 , year=

    Accelerating transformer inference for translation via parallel decoding , author=. arXiv preprint arXiv:2305.10427 , year=

  60. [61]

    arXiv preprint arXiv:2410.01699 , year=

    Accelerating auto-regressive text-to-image generation with training-free speculative jacobi decoding , author=. arXiv preprint arXiv:2410.01699 , year=

  61. [62]

    Wang, Xinlong and Zhang, Xiaosong and Luo, Zhengxiong and Sun, Quan and Cui, Yufeng and Wang, Jinsheng and Zhang, Fan and Wang, Yueze and Li, Zhen and Yu, Qiying and others , journal=

  62. [63]

    2024 , organization=

    Chen, Junsong and Ge, Chongjian and Xie, Enze and Wu, Yue and Yao, Lewei and Ren, Xiaozhe and Wang, Zhongdao and Luo, Ping and Lu, Huchuan and Li, Zhenguo , booktitle=ECCV, pages=. 2024 , organization=

  63. [64]

    Attention is all you need , author=

  64. [65]

    Chen, Junsong and Yu, Jincheng and Ge, Chongjian and Yao, Lewei and Xie, Enze and Wu, Yue and Wang, Zhongdao and Kwok, James and Luo, Ping and Lu, Huchuan and others , journal=

  65. [66]

    Achiam, Josh and Adler, Steven and Agarwal, Sandhini and Ahmad, Lama and Akkaya, Ilge and Aleman, Florencia Leoni and Almeida, Diogo and Altenschmidt, Janko and Altman, Sam and Anadkat, Shyamal and others , journal=

  66. [67]

    arXiv preprint arXiv:2202.00512 , year=

    Progressive distillation for fast sampling of diffusion models , author=. arXiv preprint arXiv:2202.00512 , year=

  67. [68]

    On distillation of guided diffusion models , author=

  68. [69]

    Li, Xiuyu and Liu, Yijiang and Lian, Long and Yang, Huanrui and Dong, Zhen and Kang, Daniel and Zhang, Shanghang and Keutzer, Kurt , booktitle=ICCV, pages=

  69. [70]

    Li, Senmao and Hu, Taihang and Khan, Fahad Shahbaz and Li, Linxuan and Yang, Shiqi and Wang, Yaxing and Cheng, Ming-Ming and Yang, Jian , journal=NIPS, year=

  70. [71]

    Wan, Zhongwei and Wu, Ziang and Liu, Che and Huang, Jinfa and Zhu, Zhihong and Jin, Peng and Wang, Longyue and Yuan, Li , journal=

  71. [72]

    Fu, Qichen and Cho, Minsik and Merth, Thomas and Mehta, Sachin and Rastegari, Mohammad and Najibi, Mahyar , journal=

  72. [73]

    arXiv preprint arXiv:2309.17453 , year=

    Efficient streaming language models with attention sinks , author=. arXiv preprint arXiv:2309.17453 , year=

  73. [74]

    Model tells you what to discard:

    Ge, Suyu and Zhang, Yunan and Liu, Liyuan and Zhang, Minjia and Han, Jiawei and Gao, Jianfeng , journal=. Model tells you what to discard:

  74. [75]

    Zhang, Zhenyu and Sheng, Ying and Zhou, Tianyi and Chen, Tianlong and Zheng, Lianmin and Cai, Ruisi and Song, Zhao and Tian, Yuandong and R

  75. [76]

    Autoregressive image generation using residual quantization , author=

  76. [77]

    Generating diverse high-fidelity images with

    Razavi, Ali and Van den Oord, Aaron and Vinyals, Oriol , journal=NIPS, volume=. Generating diverse high-fidelity images with

  77. [78]

    Vector-quantized image modeling with improved

    Yu, Jiahui and Li, Xin and Koh, Jing Yu and Zhang, Han and Pang, Ruoming and Qin, James and Ku, Alexander and Xu, Yuanzhong and Baldridge, Jason and Wu, Yonghui , journal=. Vector-quantized image modeling with improved

  78. [79]

    Zheng, Chuanxia and Vuong, Tung-Long and Cai, Jianfei and Phung, Dinh , journal=NIPS, volume=

  79. [80]

    arXiv preprint arXiv:2010.14701 , year=

    Scaling laws for autoregressive generative modeling , author=. arXiv preprint arXiv:2010.14701 , year=

  80. [81]

    Language models are few-shot learners , author=

Showing first 80 references.