Treat Visual Tokens as Text? But Your MLLM Only Needs Fewer Efforts to See
Zeliang Zhang, Phu Pham, Wentian Zhao, Kun Wan, Yu-Jhe Li, Jianing Zhou, Daniel Miranda, Ajinkya Kale, Chenliang Xu
TL;DR
This work tackles the high computational cost of processing dense visual tokens in multimodal LLMs by revealing redundancy in visual computations. It reframes efficiency from token pruning to pruning the computation pattern: neighbor-aware visual attention, inactive visual-head pruning, sparse FFN projection, and lazy layer dropping, encapsulated in the You Only Need to Prune Once (YOPO) approach. Applied to LLaVA and validated on other MLLMs (Qwen2-VL-7B, InternVL-2.0), the method achieves up to 88% reduction in visual computation with minimal performance loss, and demonstrates generality across models and benchmarks. The results offer a scalable, training-free path to deploying dense visual-token MLLMs in real-world settings, with code and checkpoints to support adoption and further research.
Abstract
By treating visual tokens from visual encoders as text tokens, Multimodal Large Language Models (MLLMs) have achieved remarkable progress across diverse visual understanding tasks, leveraging the robust architectures of Large Language Models (LLMs). However, as token counts grow, the quadratic scaling of computation in LLMs introduces a significant efficiency bottleneck, impeding further scalability. Although recent approaches have explored pruning visual tokens or employing lighter LLM architectures, the computational overhead from an increasing number of visual tokens remains a substantial challenge. In this study, we investigate the redundancy in visual computation at both the parameter and computational pattern levels within LLaVA, a representative MLLM, and introduce a suite of streamlined strategies to enhance efficiency. These include neighbor-aware visual token attention, pruning of inactive visual attention heads, and selective layer dropping for visual computations. By implementing these strategies in LLaVA, we achieve a reduction in computational demands of 88% while maintaining model performance across key benchmarks. Additionally, we validate the existence of visual computational redundancy in other MLLMs, such as Qwen2-VL-7B and InternVL-2.0-4B/8B/26B. These results present a novel pathway for MLLMs to handle dense visual tokens with minimal computational costs. Code and model checkpoints will be released to support further research.
