Fine-grained perception in multimodal large language models (MLLMs) is usually bought with resolution, and every extra visual token is paid twice, in the vision encoder and in the language model. We start from a measurement: the two operations behind fine-grained perception, localizing the region of interest (RoI) and recognizing its content, do not need the same resolution. In a controlled diagnostic on ZoomBench, localization tolerates roughly 3–4× stronger token compression than recognition. That asymmetry motivates localizing from a coarse view and spending resolution only on the selected evidence, which puts the burden on the RoI predictor.
多模态大模型(MLLM)的细粒度感知通常靠“堆分辨率”换来,而每一个额外的视觉 token 都要在视觉编码器和语言模型里各付一次代价。 我们从一个测量出发:细粒度感知背后的两步操作,定位感兴趣区域(RoI)和识别其内容,对分辨率的需求并不相同。 在 ZoomBench 上的受控诊断中,定位能承受比识别高出约 3–4 倍的 token 压缩。这一不对称性意味着可以在粗视图上定位, 只把分辨率花在被选中的证据上,于是压力落到了 RoI 预测器身上。
Existing predictors trade one thing for another. Decoding box coordinates with the MLLM can be trained from answers but costs a full model pass per query. A lightweight proposal network distilled from the model's attention (SD-RPN) is fast but inherits the noise of its attention targets and is never checked against the answer. Because the RoI carries no annotation and reaches the answer only through a discrete region choice, we optimize the proposal network with region-level reinforcement learning: coherent regions are actions, and a frozen MLLM reader scores each one by how its removal changes the answer likelihood. A subtractive objective prunes distracting proposals, an additive objective recovers missed evidence, and only the small predictor is updated. At inference, a sparse visual encoding magnifies the evidence and drops background tokens.
现有的预测器各有取舍。让 MLLM 直接解码框坐标可以由答案端到端训练,但每个问题都要付出一次完整的模型前向;从模型注意力蒸馏出的轻量提议网络(SD-RPN) 速度快,却继承了注意力目标的噪声,而且从未用答案来校验。由于 RoI 没有标注、又只能通过离散的区域选择影响答案,我们用区域级强化学习来优化提议网络: 把连通区域当作动作,用冻结的 MLLM 阅读器衡量“去掉这个区域后答案似然变化多少”。减法目标剪掉干扰提议,加法目标找回遗漏证据,只更新小预测器。 推理时,稀疏视觉编码放大证据并丢弃背景 token。