Reroute, Don't Remove: Recoverable Visual Token Routing for Vision-Language Models
Summary
Proposes Reroute, a training-free plug-in for vision-language models that replaces irreversible visual-token pruning with recoverable routing, allowing tokens to re-enter the pipeline later to improve grounding under aggressive token reduction while maintaining VQA performance.
View Cached Full Text
Cached at: 06/11/26, 05:35 PM
Paper page - Reroute, Don’t Remove: Recoverable Visual Token Routing for Vision-Language Models
Source: https://huggingface.co/papers/2606.12412
Abstract
Vision-language models can improve grounding performance under aggressive token reduction by replacing irreversible visual-token pruning with recoverable routing that allows tokens to re-enter the processing pipeline at later stages.
Vision-language models(VLMs) project images into hundreds to thousands ofvisual tokens, makingdecoder inferenceexpensive in bothattention computationandKV-cache memory. Existingvisual-token reductionmethods largely follow arank-and-remove paradigm: they scorevisual tokens, keep a compact subset, and permanently discard the rest. We show that this irreversible action is fragile because visual-token importance changes across decoder depth; tokens ranked low at one stage may become relevant in later layers, especially forgrounding-sensitive queries. We propose Reroute, a training-free plug-in that replaces removal with recoverable routing. At each routing stage, selected vision tokens pass throughdecoder blocks, while deferred tokens bypass the stage and re-enter the candidate pool at the next routing decision. Reroute reuses existingattention-score rankingrules and stage-wise schedules, preserving the theoretical TFLOPs and KV-cache budget class of the pruning method it augments. Across FastV, PDrop, and Nüwa variants on LLaVA-1.5 and Qwen backbones, reroute improves grounding under aggressivetoken reductionwhile maintaining general VQA performance. These results suggest that VLMtoken reductionshould not be viewed only as irreversible pruning, but also as recoverable routing. The code can be found here: https://github.com/elmma/mllm-reroute/
View arXiv pageView PDFGitHub7Add to collection
Get this paper in your agent:
hf papers read 2606\.12412
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/2606.12412 in a model README.md to link it from this page.
Datasets citing this paper0
No dataset linking this paper
Cite arxiv.org/abs/2606.12412 in a dataset README.md to link it from this page.
Spaces citing this paper0
No Space linking this paper
Cite arxiv.org/abs/2606.12412 in a Space README.md to link it from this page.
Collections including this paper0
No Collection including this paper
Add this paper to acollectionto link it from this page.
Similar Articles
Role-Conditioned Sub-Token Routing for Efficient Vision-Language-Action Policies
This paper introduces Role-Conditioned Sub-Token Routing (RoleSub), a method to efficiently compress vision-language-action models by routing sub-token groups, reducing computational costs while maintaining strong performance on robotic tasks.
ReToken: One Token to Improve Vision-Language Models for Visual Retrieval
ReToken introduces a single learnable retrieval token that selects sparse query-relevant visual tokens from a pre-filled visual KV cache, improving long-context vision-language model performance on visual retrieval tasks. It yields consistent gains across image and video benchmarks while enabling efficient long-video inference on a single H100.
Drop-Then-Recovery: How Redundant Are Vision-Language-Action Models?
This paper investigates redundancy in Vision-Language-Action (VLA) models and finds that language backbones are highly redundant for robotic manipulation tasks, while vision and action pathways are more critical. The authors propose Drop-Then-Recovery (DTR) and GateProbe to quantify and prune unnecessary blocks, showing that removing half of LLM blocks can even improve performance.
Late-Layer Fusion is Enough: Dual-Path Vision Token Routing for Multimodal Large Language Models under Visual Saturation
This paper proposes DPVR-LF, a modality-asymmetric routing framework for MLLMs that routes vision tokens at their saturation point into a lightweight side branch and performs late fusion, reducing visual computation while maintaining competitive performance.
Routing by Reasoning Need: Trajectory-Aware Decoding Control for Diffusion Vision-Language Models
This paper proposes a trajectory-aware decoding control method for diffusion vision-language models to address reasoning-budget mismatch by routing examples based on their decoding state, improving robustness across benchmarks.