news 2026/4/3 10:02:02

Seeing Beyond Redundancy Task Complexity‘s Role in Vision Token Specialization in VLLMs

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
Seeing Beyond Redundancy Task Complexity‘s Role in Vision Token Specialization in VLLMs

Seeing Beyond Redundancy: Task Complexity’s Role in Vision Token Specialization in VLLMs

Authors:Darryl Hannan, John Cooper, Dylan White, Yijing Watkins

Deep-Dive Summary:

论文总结:超越冗余——任务复杂度在 VLLM 视觉 Token 特化中的作用

摘要

视觉大语言模型(VLLMs)在视觉能力上始终滞后于其语言能力。研究表明,VLLM 在处理细粒度视觉信息或空间推理任务时表现不佳。本文旨在探究视觉信息在模型中的处理方式及被丢弃的规律。研究引入了一个合成基准数据集和一套衡量视觉冗余的指标,分析了不同复杂度的任务对视觉压缩的影响。研究发现,任务复杂度与视觉压缩之间存在紧密联系:高复杂度的视觉数据对于改变 VLLM 的视觉表示分布并提升其在复杂任务上的性能至关重要。

2. 背景与相关工作

视觉大语言模型 (VLLMs):与对比学习模型(如 CLIP)不同,VLLM 通过自回归方式预测下一个 Token。模型通常将图像嵌入E ( i ) ∈ R N i × d \mathbf{E}^{(i)} \in \mathbb{R}^{N_{i} \times d}E(i)RNi×d与文本嵌入E ( t ) ∈ R N t × d \mathbf{E}^{(t)} \in \mathbb{R}^{N_{t} \times d}E(t)RNt×d连接后通过解码器处理。

视觉 Token 压缩与冗余:现有研究表明 VLLM 并不需要所有的视觉 Token。例如,在 LlaVA 中随机删除 95% 的 Token 对性能影响极小。本文不仅利用这种冗余,还通过研究 Molmo 和 Llama 3.2 等最新模型,探索视觉信息如何在模型中传播。

4. 实验

4.1 零样本分析 (Zero-shot Analyses)

研究选取了 Molmo 和 Llama 3.2。两者架构略有不同:Molmo 采用全模态联合注意力,而 Llama 3.2 采用交叉注意力。

数据集:

  • 合成数据集:在白色背景上放置不同形状、颜色、大小的 2D 物体,数量从 1 到 200 不等,以便精确控制复杂度。
  • MSCOCO 子集:使用真实世界图像验证趋势。

Token 压缩分析:

  • 在 Molmo 中,早期层将能量分散在大量视觉 Token 中,中间层重新浓缩信息,末尾层再次分散以丢弃冗余信息(见图 1)。
  • 物体数量与低压缩率强相关(见图 2),表明拥挤的场景需要更多 Token 来表示。
  • 在 COCO 数据集上(见图 3),物体类别的多样性和大小差异是降低视觉压缩的主要特征。


图 3:Molmo 在 COCO 数据集上压缩指标与视觉属性之间的 Spearman 相关性。

探测实验 (Probes):

  • 信息转移:实验发现文本 Token 能够高度预测视觉属性(见图 4),表明视觉信息在第一层之后就迅速整合到了文本空间中。
  • 冗余性:几乎所有 Token 位置都能准确预测物体数量,这表明模型中存在极高的视觉冗余。
  • 特征分化:某些特征(如“主色调”或 COCO 中的“主超级类别”)在不同层表现出不同的预测能力,说明模型在不同阶段侧重于不同的视觉特征。


图 4:Molmo 在合成数据集上对各种视觉属性的线性探测性能。


图 5:Molmo 在 COCO 数据集上对各种视觉属性的线性探测性能。

Original Abstract:Vision capabilities in vision large language models (VLLMs) have consistently lagged behind their linguistic capabilities. In particular, numerous benchmark studies have demonstrated that VLLMs struggle when fine-grained visual information or spatial reasoning is required. However, we do not yet understand exactly why VLLMs struggle so much with these tasks relative to others. Some works have focused on visual redundancy as an explanation, where high-level visual information is uniformly spread across numerous tokens and specific, fine-grained visual information is discarded. In this work, we investigate this premise in greater detail, seeking to better understand exactly how various types of visual information are processed by the model and what types of visual information are discarded. To do so, we introduce a simple synthetic benchmark dataset that is specifically constructed to probe various visual features, along with a set of metrics for measuring visual redundancy, allowing us to better understand the nuances of their relationship. Then, we explore fine-tuning VLLMs on a number of complex visual tasks to better understand how redundancy and compression change based upon the complexity of the data that a model is trained on. We find that there is a connection between task complexity and visual compression, implying that having a sufficient ratio of high complexity visual data is crucial for altering the way that VLLMs distribute their visual representation and consequently improving their performance on complex visual tasks. We hope that this work will provide valuable insights for training the next generation of VLLMs.

PDF Link:2602.06914v1

部分平台可能图片显示异常,请以我的博客内容为准

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/3/31 4:00:17

智能导航系统远程通信关键技术研究

智能导航系统远程通信关键技术研究 第一章 研究背景与核心目标 随着自动驾驶、车路协同、智慧交通与移动机器人技术快速发展,智能导航系统已从本地自主定位转向云端协同、多终端互联的新模式。传统短距通信难以满足大范围、高动态、低时延的导航数据交互需求&#x…

作者头像 李华
网站建设 2026/4/3 6:27:12

AI Agent如何实现记忆的三个维度详尽分析

前言过去两年,大语言模型的能力边界不断拓展,而真正让这些模型“活起来”的,是智能体(Agent)架构的兴起。智能体不只是调用模型回答问题,它要规划、推理、使用工具、感知环境,并在时间维度上持续…

作者头像 李华
网站建设 2026/3/25 4:13:13

字符集原因无法正常显示中文

文章目录 环境症状问题原因解决方案 环境 系统平台:Linux x86-64 Red Hat Enterprise Linux 7 版本:4.1.1 症状 highgo# select * from student; no | student_name | age --------------------- 2 | 鏉庡洓 | 13 1 | 寮犱笁 | 15 (2 rows) 问题…

作者头像 李华
网站建设 2026/4/3 3:24:06

耐达讯自动化Profinet转Devicenet网关:市政水处理行业的“协议融合利器”

在市政水处理自动化系统中,水质监测的实时性与精准性是保障供水安全的核心。水质检测仪需将pH值、浊度、余氯等关键数据实时上传至PLC系统,但新旧设备常采用Profinet与Devicenet异构协议,导致系统集成复杂、调试周期长。耐达讯自动化Profinet…

作者头像 李华