🤖 AI Summary
To address the high computational overhead of multimodal large language models (MLLMs) caused by redundant visual tokens, this paper proposes a training-free, budget-driven visual token pruning method. The approach formulates pruning as a statistical optimization problem aimed at minimizing the divergence between attention distributions—specifically, via KL-divergence minimization—guided by attention statistics collected from a small batch of inference data. It integrates dynamic importance scoring and greedy selection to generate a generalizable pruning strategy in seconds prior to inference. Crucially, the method requires no fine-tuning or gradient computation, and strategy generation takes only ~5 minutes. Evaluated on LLaVA-series models, it achieves up to 54.9% FLOPs reduction with merely 0.5% accuracy degradation, significantly enhancing inference efficiency and deployment feasibility.
📝 Abstract
Recent progress in Multimodal Large Language Models(MLLMs) often use large image tokens to compensate the visual shortcoming of MLLMs, which not only exhibits obvious redundancy but also greatly exacerbates the already high computation. Token pruning is an effective solution for speeding up MLLMs, but when and how to drop tokens still remains a challenge. In this paper, we propose a novel and training-free approach for the effective visual token pruning of MLLMs, termed FitPrune, which can quickly produce a complete pruning recipe for MLLMs according to a pre-defined budget. Specifically, FitPrune considers token pruning as a statistical problem of MLLM and its objective is to find out an optimal pruning scheme that can minimize the divergence of the attention distributions before and after pruning. In practice, FitPrune can be quickly accomplished based on the attention statistics from a small batch of inference data, avoiding the expensive trials of MLLMs. According to the pruning recipe, an MLLM can directly remove the redundant visual tokens of different examples during inference. To validate FitPrune, we apply it to a set of recent MLLMs, including LLaVA-1.5, LLaVA-HR and LLaVA-NEXT, and conduct extensive experiments on a set of benchmarks. The experimental results show that our FitPrune can not only reduce the computational complexity to a large extent, while retaining high performance, e.g., -54.9% FLOPs for LLaVA-NEXT with only 0.5% accuracy drop. Notably, the pruning recipe can be obtained in about 5 minutes. Our code is available at https://github.com/ywh187/FitPrune.