REVIEW 4 major objections 5 minor 48 references
At 8x token compression, CRAFT keeps about 97% of a video VLM's accuracy.
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 23:38 UTC pith:W556NPO7
load-bearing objection Solid, useful token compression for video VLMs with believable results; needs code, a disclosed τ/threshold, and a real orientation ablation before I'd trust the details. the 4 major comments →
CRAFT: Compression via Recursive Adaptive Fusion of Video Tokens for Vision-Language Models
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The paper introduces what it calls the first end-to-end iterative trainable 'select-then-fuse' compressor for general-purpose visual token reduction. Selection is training-free and global: each round, every active token nominates its nearest neighbor by cosine similarity in a fixed random-projection space; the highest-similarity edges are truncated to budget, oriented so the higher-L2-norm endpoint survives, chain conflicts are dropped, and groups form around survivors. Fusion is learnable: Eq. (4) rewrites the survivor as x_t minus a weighted, per-channel-gated difference from its sources, so merging continuously spans hard dropping and equal-weight averaging. A two-stage curriculum trains
What carries the argument
The central object is the gated merge update x_t^new = x_t - sum_i w_i G_i ⊙ (x_t - x_i), in which x_t is the surviving representative token and {x_i} are its paired sources. w_i comes from a position-aware scorer that applies 3D rotary encodings (M-RoPE) and softmax over sources, so global spatial/temporal relations and selection similarity both influence how much each source contributes; G_i is a per-channel gate in (0,1)^D produced by an MLP with adaptive layer normalization conditioned on the merge round, zero-initialized so training starts at a neutral 0.5. Setting all G_i=1 gives weighted averaging and setting all G_i=0 gives hard pruning, so the learned gate interpolates between the t
Load-bearing premise
The load-bearing premise is that a token's vector length (L2 norm) reliably measures how important its content is, so when two tokens look similar, the longer one can stand for both and the shorter one can be thrown away.
What would settle it
Take several hundred videos whose questions hinge on a small or low-contrast object; compute the L2 norms of the tokens inside that object's bounding box and check whether they rank below the frame median. If they do, and CRAFT at 8x answers those questions worse than a control that forces the object's tokens to survive (or than a version that keeps the lower-norm token as representative), the norm-as-salience premise is falsified.
If this is right
- At a fixed 8x budget, CRAFT achieves the best or tied best accuracy on all six benchmarks, so the gain is not an artifact of adaptive budget reallocation.
- The accuracy gap over training-free baselines widens as compression tightens: at 32x CRAFT stays near 59% while baselines fall to 53.5-58%, implying learnable fusion matters most exactly where token budgets are hardest.
- Because the compressor is query-agnostic, one forward pass over the video produces a reusable compressed KV cache; the paper reports 19.0 MB KV per sample vs 26.0-26.2 MB for baselines and the lowest prefill latency among compared methods.
- The same merge module transfers to two other backbones with over 95% retention at 8x, indicating the mechanism does not depend on one vision encoder or token layout.
- A LoRA-adapted variant reaches 66.9% at 10x and even exceeds the uncompressed backbone on some benchmarks, suggesting the compressor and light LLM adaptation are complementary.
Where Pith is reading between the lines
- A direct extension would replace the L2-norm orientation with a learned salience scorer; if norm and task relevance diverge, a learned orientation could recover information CRAFT currently discards before any fusion happens.
- Because every retained token is a linear combination of original tokens with preserved coordinates, CRAFT's compressed representation should compose with other sequence-level optimizations such as later-layer pruning or speculative decoding without re-alignment, which the paper does not test.
- An adversarial evaluation targeting small, low-contrast, or briefly appearing objects would stress the norm-salience premise; on such data a variant that retains low-norm tokens by query relevance would be the natural control.
- The position-aware gating is defined over (t,h,w), so the same select-then-fuse loop could in principle be applied to image grids or multi-view inputs with only a change in the coordinate prior.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces CRAFT, a query-agnostic visual-token compression method for video vision-language models. It operates in an iterative 'select-then-fuse' loop: a parameter-free global similarity selection (based on random-projections and ℓ2-norm orientation) decides which tokens to merge, and a lightweight learnable gated merging module (position-aware global weighting plus per-channel gating) decides how to fuse them. The authors claim that at about 8× compression CRAFT retains roughly 97% of the backbone's average accuracy, outperforms existing training-free and (on a secondary backbone) learnable compressors, transfers across three backbones, and reduces prefill latency and KV-cache memory. The method is evaluated on six video benchmarks with Qwen3.5-4B as the primary backbone, plus Qwen2.5-VL-7B and LLaVA-OV-7B for transfer.
Significance. If the claims hold, CRAFT is a practical and timely contribution: it attacks the prefill bottleneck for long-video VLMs while keeping the compressed representation in the original token space, preserving spatio-temporal coordinates, and remaining query-agnostic for KV reuse. The paper is well-structured, with explicit pseudocode, equations, and ablations; the cross-backbone transfer and the scaffold-vs-merging decomposition (Fig. 4) are particularly informative. The main empirical result—96.8% retained accuracy at a realized 8.0× compression—is consistent with the reported table. However, the validation of the core orientation heuristic is incomplete, and several hyperparameters needed for reproduction are missing. These issues are fixable but currently prevent the paper from being fully accepted as-is.
major comments (4)
- [§4.5 / Table 3; §3.2, Eq. (4)] The ablation in Table 3 does not actually test the orientation assumption stated in §3.2 (larger ℓ2-norm endpoint becomes the representative). The rows 'mean mean' vs 'mean target' differ in the reduction rule—equal-weight averaging of the whole group vs. keeping only the target—not in which endpoint is chosen as target. The text's claim that the +1.00 improvement 'validates our assumption' is therefore unsupported: the comparison shows that, given the norm-based target, hard-pruning sources beats averaging them; it does not test whether keeping the larger-norm token is better than keeping the smaller-norm token or choosing randomly. An ablation comparing 'larger-norm target', 'smaller-norm target', and random orientation under the same fusion rule is needed. This is load-bearing because orientation is the only content-dependent heuristic in the selection stage, and all subsequent rounds
- [§3.3, Eq. (6)] The softmax temperature τ in Eq. (6) is never given a value anywhere in the manuscript, including the hyperparameter table (Table 4) and the appendices. The position-aware weighting scorer is a core learnable module, so the method is not fully specified without knowing whether τ is fixed (and at what value) or learned. Please report τ explicitly, or remove it from the equation if it is always 1.
- [§3.1, §3.2, Algorithm 1; Table 1] The adaptive threshold mode uses a similarity threshold sθ (called θ in §3.1) to stop merging, and Table 1 reports the realized 8.0× compression under this mode. However, the actual threshold value(s) used in the experiments are never reported. The training schedule in Appendix B.2 samples thresholds, but the inference-time threshold for Table 1 is absent. Without this value, the headline result (8.0×, 65.3 average accuracy, 96.8% retention) cannot be reproduced. Please specify sθ (per benchmark, if it varies) or describe the procedure used to obtain the 8.0× operating point.
- [§4.2 / Table 1, Block A] The headline comparison in Block A pits CRAFT—trained on ~242K video-caption/QA pairs—against five training-free baselines. The abstract's broader claim of 'consistently outperforms prior state-of-the-art token-compression methods' is not supported by this comparison alone. The paper does include learnable baselines in Block B and a useful decomposition in Fig. 4, but the main table should include the same-scaffold selection-only row (as in Fig. 4) or a similarly positioned trained-fusion baseline so the margin can be attributed to the learned components rather than to the training data. At minimum, qualify the state-of-the-art claim to the appropriate comparison class.
minor comments (5)
- [§3.2, Eq. (2)] The text says 'Here · denotes ℓ2 normalization' but the equation only shows X and W; please clarify which quantities are normalized (e.g., with an overbar on X or Esim).
- [Algorithm 1, line 8] 'drop chain-conflicting edges' is stated but not detailed in the pseudocode; the text explanation in §3.2 is clear but a brief comment or a reference would help.
- [Table 2] The column header 'FLOPs↑' is ambiguous; consider something like 'FLOPs reduction (×)' to make the direction explicit.
- [Fig. 3] The legend entries 'CRAFT (ours)' and 'CRAFT (ours) · ratio' are hard to distinguish; rename the second to 'CRAFT (fixed-ratio mode)' or similar.
- [Appendix B.2] The table lists many hyperparameters but omits τ and sθ; adding them here would resolve the reproducibility concerns raised above.
Circularity Check
No significant circularity: the retention figures are measured outcomes of an externally evaluated pipeline, not derived constants or fitted values.
full rationale
The paper's central claim—roughly 97% backbone accuracy retention at ~8× compression—is an empirical measurement on six external benchmarks, not a quantity derived from the method's definitions. The token selection is parameter-free (random-projection similarity, Eq. 2–3) and the fusion network is trained with a standard cross-entropy objective on frozen backbone outputs (§3.4), so the compressor is not fitted to the benchmarks on which it is evaluated; the training data are explicitly de-duplicated against the evaluation benchmarks (Appendix B.3). No load-bearing step reduces by construction to its inputs: Eq. (4) is a general gated fusion form whose degenerate cases correspond to averaging and pruning, and the claimed retention is not an algebraic consequence of that equation. The L2-norm orientation heuristic is an assumption, but it is not defined in terms of the paper's predictions; the ablation in §4.5 provides partial empirical support, even if the comparison does not fully isolate the orientation choice—that is a correctness/experimental-design concern, not circularity. There are no self-citations used as a uniqueness theorem or as justification for the core design, and no known result is merely renamed. The derivation chain is self-contained against external benchmarks, so the absence of circularity is the appropriate finding.
Axiom & Free-Parameter Ledger
free parameters (7)
- softmax temperature tau (Eq. 6) =
not stated
- similarity threshold for adaptive mode =
not stated explicitly; training samples from {0.75,0.8,0.85,0.9,0.95}
- random projection dimension dsim =
128
- low-rank projection rank r for Wq, Wk =
128
- gating network hidden dimension dh =
512
- merge module parameters (weighting scorer + gate) =
about 5M
- LoRA rank and alpha (CRAFT+ only) =
rank 32, alpha 64
axioms (5)
- domain assumption Globally similar tokens are redundant and can be merged without losing critical semantics
- domain assumption A larger L2 norm indicates more salient semantic information
- domain assumption Linear combinations of original tokens stay within the pre-trained LM input distribution
- standard math Random projections preserve cosine similarity sufficiently for pairing (Johnson-Lindenstrauss)
- domain assumption The same compressor design transfers across backbones with only re-instantiation at different width
Cite this review
Pith. "Pith review of CRAFT: Compression via Recursive Adaptive Fusion of Video Tokens for Vision-Language Models." pith.science (2026). https://pith.science/paper/W556NPO7
@misc{pith2026260801644,
author = {Pith},
title = {Pith review of: CRAFT: Compression via Recursive Adaptive Fusion of Video Tokens for Vision-Language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/W556NPO7}},
note = {Machine review of arXiv:2608.01644}
}
read the original abstract
In video understanding, vision-language models (VLMs) must ingest massive numbers of visual tokens, causing the computational and memory cost of the prefill stage to rise sharply. Such visual sequences are highly redundant along the spatio-temporal dimension, yet a high compression ratio is often accompanied by the loss of critical details. Existing token-compression methods either employ heuristic, training-free compression with limited content adaptivity or introduce additional modules that require expensive alignment training, leaving the trade-off between efficiency and adaptivity unresolved. To alleviate this limitation, we propose CRAFT: Compression via Recursive Adaptive Fusion of Video Tokens. CRAFT recursively merges tokens by decoupling parameter-free token selection from learnable token fusion: global similarity determines which tokens to merge, while a position-aware weighting module and a content-adaptive channel-wise gate learn how to fuse them. The whole compression pipeline is query-agnostic. Because every retained token is a linear combination of the original tokens, CRAFT preserves their true spatio-temporal coordinates and stays aligned with the pre-trained language model's input distribution. Experiments on multiple representative video benchmarks show that CRAFT consistently outperforms prior state-of-the-art token-compression methods. At about $8\times$ compression, it retains roughly $97\%$ of the backbone's average accuracy and shows significant efficiency improvement.
Figures
Reference graph
Works this paper leans on
-
[1]
International Conference on Learning Representations (ICLR) , year =
Token Merging: Your ViT But Faster , author =. International Conference on Learning Representations (ICLR) , year =. 2210.09461 , archivePrefix =
-
[2]
Advances in Neural Information Processing Systems (NeurIPS) , year =
DynamicViT: Efficient Vision Transformers with Dynamic Token Sparsification , author =. Advances in Neural Information Processing Systems (NeurIPS) , year =. 2106.02034 , archivePrefix =
-
[3]
International Conference on Learning Representations (ICLR) , year =
Not All Patches are What You Need: Expediting Vision Transformers via Token Reorganizations , author =. International Conference on Learning Representations (ICLR) , year =. 2202.07800 , archivePrefix =
-
[4]
Johnson and Joram Lindenstrauss , journal =
William B. Johnson and Joram Lindenstrauss , journal =. Extensions of
-
[5]
Database-friendly Random Projections:
Dimitris Achlioptas , journal =. Database-friendly Random Projections:
-
[6]
European Conference on Computer Vision (ECCV) , year =
An Image is Worth 1/2 Tokens After Layer 2: Plug-and-Play Inference Acceleration for Large Vision-Language Models , author =. European Conference on Computer Vision (ECCV) , year =. 2403.06764 , archivePrefix =
-
[7]
IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =
DyCoke: Dynamic Compression of Tokens for Fast Video Large Language Models , author =. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =. 2411.15024 , archivePrefix =
-
[8]
Advances in Neural Information Processing Systems (NeurIPS) , year =
HoliTom: Holistic Token Merging for Fast Video Large Language Models , author =. Advances in Neural Information Processing Systems (NeurIPS) , year =. 2505.21334 , archivePrefix =
-
[9]
IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =
VisionZip: Longer is Better but Not Necessary in Vision Language Models , author =. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =. 2412.04467 , archivePrefix =
-
[10]
Findings of the Association for Computational Linguistics (ACL Findings) , year =
PruneVid: Visual Token Pruning for Efficient Video Large Language Models , author =. Findings of the Association for Computational Linguistics (ACL Findings) , year =. 2412.16117 , archivePrefix =
-
[11]
International Conference on Machine Learning (ICML) , year =
LongVU: Spatiotemporal Adaptive Compression for Long Video-Language Understanding , author =. International Conference on Machine Learning (ICML) , year =. 2410.17434 , archivePrefix =
-
[12]
International Conference on Machine Learning (ICML) , year =
BLIP-2: Bootstrapping Language-Image Pre-training with Frozen Image Encoders and Large Language Models , author =. International Conference on Machine Learning (ICML) , year =. 2301.12597 , archivePrefix =
-
[13]
Advances in Neural Information Processing Systems (NeurIPS) , year =
Flamingo: a Visual Language Model for Few-Shot Learning , author =. Advances in Neural Information Processing Systems (NeurIPS) , year =. 2204.14198 , archivePrefix =
-
[14]
International Journal of Computer Vision (IJCV) , year =
TokenPacker: Efficient Visual Projector for Multimodal LLM , author =. International Journal of Computer Vision (IJCV) , year =. 2407.02392 , archivePrefix =
-
[15]
PVC: Progressive Visual Token Compression for Unified Image and Video Processing in Large Vision-Language Models , author =. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =. 2412.09613 , archivePrefix =
work page internal anchor Pith review Pith/arXiv arXiv
-
[16]
arXiv preprint arXiv:2507.02279 , year =
LaCo: Efficient Layer-wise Compression of Visual Tokens for Multimodal Large Language Models , author =. arXiv preprint arXiv:2507.02279 , year =. 2507.02279 , archivePrefix =
-
[17]
arXiv preprint arXiv:2503.21307 , year =
InternVL-X: Advancing and Accelerating InternVL Series with Efficient Visual Token Compression , author =. arXiv preprint arXiv:2503.21307 , year =. 2503.21307 , archivePrefix =
-
[18]
International Conference on Learning Representations (ICLR) , year =
MARC: Memory-Augmented RL Token Compression for Efficient Video Understanding , author =. International Conference on Learning Representations (ICLR) , year =. 2510.07915 , archivePrefix =
-
[19]
Transactions on Machine Learning Research (TMLR) , year =
When Tokens Talk Too Much: A Survey of Multimodal Long-Context Token Compression across Images, Videos, and Audios , author =. Transactions on Machine Learning Research (TMLR) , year =. 2507.20198 , archivePrefix =
-
[20]
arXiv preprint arXiv:2505.18227 , year =
Token Reduction Should Go Beyond Efficiency in Generative Models -- From Vision, Language to Multimodality , author =. arXiv preprint arXiv:2505.18227 , year =. 2505.18227 , archivePrefix =
-
[21]
Advances in Neural Information Processing Systems (NeurIPS), Datasets and Benchmarks Track , year =
EgoSchema: A Diagnostic Benchmark for Very Long-form Video Language Understanding , author =. Advances in Neural Information Processing Systems (NeurIPS), Datasets and Benchmarks Track , year =. 2308.09126 , archivePrefix =
-
[22]
IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =
MVBench: A Comprehensive Multi-modal Video Understanding Benchmark , author =. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =. 2311.17005 , archivePrefix =
-
[23]
Findings of the Association for Computational Linguistics (ACL Findings) , year =
TempCompass: Do Video LLMs Really Understand Videos? , author =. Findings of the Association for Computational Linguistics (ACL Findings) , year =. 2403.00476 , archivePrefix =
-
[24]
IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =
Video-MME: The First-Ever Comprehensive Evaluation Benchmark of Multi-modal LLMs in Video Analysis , author =. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =. 2405.21075 , archivePrefix =
-
[25]
Advances in Neural Information Processing Systems (NeurIPS), Datasets and Benchmarks Track , year =
LongVideoBench: A Benchmark for Long-context Interleaved Video-Language Understanding , author =. Advances in Neural Information Processing Systems (NeurIPS), Datasets and Benchmarks Track , year =. 2407.15754 , archivePrefix =
-
[26]
arXiv preprint arXiv:2409.12191 , year =
Qwen2-VL: Enhancing Vision-Language Model's Perception of the World at Any Resolution , author =. arXiv preprint arXiv:2409.12191 , year =. 2409.12191 , archivePrefix =
-
[27]
arXiv preprint arXiv:2502.13923 , year =
Qwen2.5-VL Technical Report , author =. arXiv preprint arXiv:2502.13923 , year =. 2502.13923 , archivePrefix =
-
[28]
IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =
Video-XL: Extra-Long Vision Language Model for Hour-Scale Video Understanding , author =. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =. 2409.14485 , archivePrefix =
-
[29]
International Conference on Learning Representations (ICLR) , year =
LongVILA: Scaling Long-Context Visual Language Models for Long Videos , author =. International Conference on Learning Representations (ICLR) , year =. 2408.10188 , archivePrefix =
-
[30]
IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =
MLVU: Benchmarking Multi-task Long Video Understanding , author =. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =. 2406.04264 , archivePrefix =
-
[31]
arXiv preprint arXiv:2510.16598 , year =
VisionSelector: End-to-End Learnable Visual Token Compression for Efficient Multimodal LLMs , author =. arXiv preprint arXiv:2510.16598 , year =. 2510.16598 , archivePrefix =
-
[32]
Proceedings of the 33rd ACM International Conference on Multimedia (ACM MM) , year =
TimeChat-Online: 80\ author =. Proceedings of the 33rd ACM International Conference on Multimedia (ACM MM) , year =. 2504.17343 , archivePrefix =
-
[33]
International Conference on Learning Representations (ICLR) , year =
LoRA: Low-Rank Adaptation of Large Language Models , author =. International Conference on Learning Representations (ICLR) , year =. 2106.09685 , archivePrefix =
-
[34]
IEEE/CVF International Conference on Computer Vision (ICCV) , year =
Scalable Diffusion Models with Transformers , author =. IEEE/CVF International Conference on Computer Vision (ICCV) , year =. 2212.09748 , archivePrefix =
-
[35]
IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =
Masked Autoencoders Are Scalable Vision Learners , author =. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =. 2111.06377 , archivePrefix =
-
[36]
Advances in Neural Information Processing Systems (NeurIPS) , year =
VideoMAE: Masked Autoencoders are Data-Efficient Learners for Self-Supervised Video Pre-Training , author =. Advances in Neural Information Processing Systems (NeurIPS) , year =. 2203.12602 , archivePrefix =
-
[37]
International Conference on Machine Learning (ICML) , year =
SparseVLM: Visual Token Sparsification for Efficient Vision-Language Model Inference , author =. International Conference on Machine Learning (ICML) , year =. 2410.04417 , archivePrefix =
-
[38]
IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =
PyramidDrop: Accelerating Your Large Vision-Language Models via Pyramid Visual Redundancy Reduction , author =. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =. 2410.17247 , archivePrefix =
-
[39]
arXiv preprint arXiv:2506.03990 , year =
DynTok: Dynamic Compression of Visual Tokens for Efficient and Effective Video Understanding , author =. arXiv preprint arXiv:2506.03990 , year =. 2506.03990 , archivePrefix =
-
[40]
Conference on Empirical Methods in Natural Language Processing (EMNLP) , year =
Video Compression Commander: Plug-and-Play Inference Acceleration for Video Large Language Models , author =. Conference on Empirical Methods in Natural Language Processing (EMNLP) , year =. 2505.14454 , archivePrefix =
-
[41]
IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =
DivPrune: Diversity-based Visual Token Pruning for Large Multimodal Models , author =. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , year =. 2503.02175 , archivePrefix =
-
[42]
Advances in Neural Information Processing Systems (NeurIPS) , year =
FastVID: Dynamic Density Pruning for Fast Video Large Language Models , author =. Advances in Neural Information Processing Systems (NeurIPS) , year =. 2503.11187 , archivePrefix =
-
[43]
IEEE/CVF International Conference on Computer Vision (ICCV) , year =
Multi-Granular Spatio-Temporal Token Merging for Training-Free Acceleration of Video LLMs , author =. IEEE/CVF International Conference on Computer Vision (ICCV) , year =. 2507.07990 , archivePrefix =
-
[44]
arXiv preprint arXiv:2506.21862 , year =
LLaVA-Scissor: Token Compression with Semantic Connected Components for Video LLMs , author =. arXiv preprint arXiv:2506.21862 , year =. 2506.21862 , archivePrefix =
-
[45]
IEEE/CVF International Conference on Computer Vision (ICCV) , year =
Dynamic-VLM: Simple Dynamic Visual Token Compression for VideoLLM , author =. IEEE/CVF International Conference on Computer Vision (ICCV) , year =. 2412.09530 , archivePrefix =
-
[46]
Advances in Neural Information Processing Systems (NeurIPS) , year =
Less Is More, but Where? Dynamic Token Compression via LLM-Guided Keyframe Prior , author =. Advances in Neural Information Processing Systems (NeurIPS) , year =. 2512.06866 , archivePrefix =
-
[47]
2024 , eprint=
LLaVA-OneVision: Easy Visual Task Transfer , author=. 2024 , eprint=
2024
-
[48]
2026 , eprint=
Qwen3.5-Omni Technical Report , author=. 2026 , eprint=
2026
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.