Stage-adaptive Token Selection for Efficient Omni-modal LLMs
Summary
SEATS is a training-free, stage-adaptive token selection method that reduces computational overhead in omni-modal LLMs by progressively pruning redundant visual and audio tokens, achieving a 9.3x FLOPs reduction and 4.8x prefill speedup while preserving 96.3% performance.
View Cached Full Text
Cached at: 05/20/26, 02:38 PM
Paper page - Stage-adaptive Token Selection for Efficient Omni-modal LLMs
Source: https://huggingface.co/papers/2605.20035
Abstract
SEATS is a training-free, stage-adaptive token selection method that reduces computational overhead in om-LLMs by progressively pruning redundant visual and audio tokens during both pre-LLM and LLM stages.
Omni-modal large language models (om-LLMs) achieve unifiedaudio-visual understandingby encoding video and audio intotemporally aligned token sequencesinterleaved at the window level. However, processing these dense non-textual tokens throughout the LLM incurs substantialcomputational overhead. Although training-freetoken selectioncan reduce this cost, existing methods either focus on visual-only inputs or prune om-LLM tokens only before the LLM with fixed per-modality ratios, failing to capture howcross-modal token importanceevolves across layers. To address this limitation, we first analyze thelayer-wise token dependencyofom-LLMs. We find that visual and audio dependencies follow a block-wise pattern and gradually weaken with depth, indicating that many late-layer non-textual tokens become redundant aftercross-modal fusion. Motivated by this observation, we propose SEATS, a training-free, stage-adaptivetoken selectionmethod for efficient om-LLM inference. Before the LLM, SEATS removes spatiotemporal redundancy viaattention-weighted diversity selection. Inside the LLM, it progressively prunes tokens across blocks and dynamically allocates the retention budget from temporal windows to modalities usingquery relevance scores. In late layers, it removes all remaining non-textual tokens oncecross-modal fusionis complete. Experiments on Qwen2.5-Omni and Qwen3-Omni demonstrate that SEATS effectively improves inference efficiency. Retaining only 10% of visual and audio tokens, it achieves a 9.3xFLOPs reductionand a 4.8xprefill speedupwhile preserving 96.3% of the original performance.
View arXiv pageView PDFProject pageGitHub2Add to collection
Get this paper in your agent:
hf papers read 2605\.20035
Don’t have the latest CLI?curl \-LsSf https://hf\.co/cli/install\.sh \| bash
Models citing this paper0
No model linking this paper
Cite arxiv.org/abs/2605.20035 in a model README.md to link it from this page.
Datasets citing this paper0
No dataset linking this paper
Cite arxiv.org/abs/2605.20035 in a dataset README.md to link it from this page.
Spaces citing this paper0
No Space linking this paper
Cite arxiv.org/abs/2605.20035 in a Space README.md to link it from this page.
Collections including this paper1
Similar Articles
OmniFocus: Query-Guided Modality-Balanced Token Compression for Omni-Modal Large Language Models
OmniFocus is a training-free, query-guided token compression method for omni-modal LLMs that independently estimates importance for video and audio to preserve modality-specific evidence while maintaining alignment, achieving significant inference speedups with minimal accuracy loss at low token retention ratios.
Efficient Pre-Training with Token Superposition
Token-Superposition Training (TST) improves LLM pre-training efficiency by combining contiguous tokens into bags during a superposition phase with a multi-hot cross-entropy objective, achieving up to 2.5x reduction in training time without architectural changes.
AVOC: Enhancing Hour-Level Audio-Video Understanding in Omni-Modal LLMs via Retrieval-Inspired Token Compression
AVOC introduces a retrieval-inspired token compression method for omni-modal LLMs that effectively handles hour-long audio-video inputs by selecting informative tokens based on relevance, importance, and diversity. The framework achieves state-of-the-art results on long-form audio-video understanding benchmarks, surpassing prior methods by significant margins.
Sensitivity-Aware Thresholding and Token Routing for Activation Sparsification in Large Language Models
This paper proposes SATS (Sensitivity-Aware Thresholding for Sparsity) and a token routing framework to improve inference efficiency in LLMs by dynamically sparsifying MLP activations. The methods achieve better quality-throughput trade-offs compared to percentile-based baselines.
Fine-tuning Multi-modal LLMs with ART: Art-based Reinforcement Training
ART (Art-based Reinforcement Training) enables parameter-efficient fine-tuning of frozen multimodal LLMs by optimizing raw visual input via gradient backpropagation, achieving performance comparable to LoRA while supporting pre-compiled computational graphs for high-throughput engines like vLLM.