Paper: 2606.28273
Authors: Niclas Lietzow, Danielle Bitterman, Carsten Eickhoff, William Rudman, Michal Golovanevsky
Categories: cs.CL
The Gap
Existing work on perception-knowledge conflict in VLMs (e.g., visual question answering with absurd images, biased prompts) has described the behavioral outcome: sometimes the model trusts the image, sometimes it falls back on memorized facts. But no one had opened the black box at the component level to ask which internal parts cause the conflict resolution. Prior studies relied on probing classifiers, attention visualizations, or global feature attribution – correlational tools that cannot distinguish cause from effect. The field knew that conflict happens, not how it happens mechanistically.
This paper bridges that gap by combining causal intervention (activation patching at three granularities) with ablation of specific components. They don’t just observe – they break and fix to prove causality.
[Perception-Knowledge Conflict in VLMs]
|
v
[Existing work: behavioral description only]
|
v
[Gap: no component-level causal account]
|
v
[Method: activation patching + ablation]
| |
v v
[Find sparse causal circuit] [Asymmetric causal structure]
| |
+------------------------+
|
v
[Conclusion: visual default, prior override via attention heads]
The Increment
One sentence: Before this paper, we knew VLMs could be fooled by conflicting knowledge; after this paper, we know exactly which attention heads (2.5–4.8%) in the second half of the network are causally responsible for pulling answers from memory when vision disagrees – and that visual grounding is the default, not the override.
Core Mechanism
The authors apply activation patching (also called interchange interventions) across three levels of granularity: the residual stream, individual attention heads, and MLP sublayers. Activation patching works by recording the model’s internal state on a “source” input, then replacing a specific layer’s activations during a forward pass on a “target” input. If the output changes toward the source’s output, that component is causally implicated.
They then perform ablation – setting the activation of a component to zero (or mean) – to test whether removing it flips the model’s behavior. The key trick: they compare two kinds of prompts. A vision-default prompt asks the model to describe what it sees (e.g., “What color is the strawberry?” when the image shows a blue strawberry). A prior-knowledge prompt asks for the fact (e.g., “What color is a strawberry?” while also showing the blue image). The model must reconcile the conflict. By ablating the identified heads, they find that 68–96% of prior-knowledge answers switch to visual answers, but only 0.8–7.5% of visual answers switch to knowledge answers. That’s the asymmetry.
[Input image + prompt] --> [Residual Stream]
|
+-----------------+
| |
[Patch point] [Ablation mask]
| |
v v
[Attention Heads] [MLP Sublayers]
(22-24 layers) (2 layers per block)
| |
+--------+--------+
|
[Output logits]
/ \
[visual answer] [knowledge answer]
Structural Metaphor: The Judge and the Specialist Witnesses
Think of the VLM as a courtroom trial. The residual stream is the shared whiteboard where all evidence is recorded. The attention heads are witnesses: they read from the whiteboard and write new facts. Most witnesses are default witnesses – they honestly report what they see in the image (the visual evidence). A small group of specialist witnesses (2.5–4.8% of the total) have memorized world knowledge. When the prompt asks for a fact (e.g., “What color is a strawberry?”), the judge (the decoder) calls these specialists. They override the visual evidence on the whiteboard by writing “red” even though the image shows blue. The authors’ activation patching is like temporarily switching a specialist’s testimony with a different witness’s – if the verdict changes, that specialist was causal. Ablation is like removing the specialist entirely – the jury (the model) can only rely on the default witnesses and thus trusts the image. The asymmetry: removing a specialist flips the verdict from knowledge-based to image-based almost always, but adding a specialist (or removing a default witness) rarely flips from image-based to knowledge-based. That’s because the court defaults to visual evidence unless a specialist is explicitly present.
Key Concepts
-
Activation Patching: A causal intervention technique. You run the model on input A (e.g., blue strawberry + fact prompt) and record the activation of a specific layer (say, head 12). Then you run the model on input B (blue strawberry + vision prompt) but at the same layer you *replace the activation with the recorded one from input A. If the output changes to match input A’s answer, that layer is causally necessary for the knowledge answer. This is like performing a brain transplant on one neuron at a time.
-
Asymmetric Causal Structure: The finding that the identified attention heads are necessary for knowledge-based answers but not for vision-based answers. This means visual grounding is the model’s default mode – the residual stream naturally encodes visual features. The small set of “prior” heads act as an override that can write conflicting knowledge. Symmetry would mean both directions depend on distinct circuits; asymmetry implies a hierarchical relation.
-
Causal Circuit: A set of components (attention heads, MLP neurons) that form a minimal, necessary pathway for a behavior. The authors show that the prior-grounded answers depend on a sparse circuit: only a few heads in the later layers. This contrasts with dense, distributed circuits often assumed for complex reasoning.
Framework Shift
The old view: conflict resolution in VLMs is a black-box behavior described by overall accuracy or saliency maps. Researchers argued about whether models “see” or “know” without mechanistic evidence.
The new view: conflict resolution is an asymmetric causal process with a sparse circuit. Visual grounding is the default; prior grounding is a specific override that can be disabled by ablating a few heads.
Before (mainstream approach):
[Probing/Viz] -> [Correlation] -> [Behavioral description]
(no causality)
After (this paper):
[Patching] -> [Causal circuit] -> [Asymmetric mechanism]
(sparse, localized)
One sentence: From correlational black-box to causal sparse-circuit understanding of perception-knowledge conflict.
Expert Assessment
Problem choice: Real gap. The behavioral layer had been well-explored (eg, GQA, VQA v2, etc), but the mechanistic cause was untouched. This sits at the intersection of interpretability and multimodal safety – important for debugging hallucinations.
Method maturity: Clever use of existing tools (activation patching, ablation) applied in a multi-granularity pipeline. Not a new technique, but the combination and the asymmetry finding are novel. Simpler approaches (e.g., attention pruning alone) would have missed the causal asymmetry – so this level of rigor is justified.
Experimental integrity: Fair baselines: they compare vision-default vs prior-knowledge prompts, and run patching across multiple models (LLaVA, InstructBLIP, etc). The asymmetric result is striking (68–96% vs 0.8–7.5%). Red flag: the paper does not report confidence intervals or variance across seeds; sample sizes are not clear. Also, ablation may disrupt other functions – the small flip in visual predictions (0.8–7.5%) could be due to collateral damage, not evidence of the circuit. This requires stronger control.
Writing quality: Well-organized, but the methods section is dense – it tries to cover three granularities in one go. A diagram with clearer notation would help. The “metaphor” section is missing; the paper itself uses no analogy, which makes the mechanism hard to internalize. Adding a few sentences of intuition would elevate it.
Verdict: weak accept – fills a real gap with rigorous causal methodology, but the contribution is incremental (identifying known structure in new context) and the experimental reporting could be tighter.
Takeaways
-
Activation patching toolkit: Practitioners can replicate this pipeline to find causal circuits for any multimodal behavior (eg, bias, object hallucination). The three-granularity approach (residual → head → MLP) is template-worthy.
-
Visual default assumption: When building VLMs for safety, treat visual grounding as the baseline and knowledge retrieval as a fragile, localized override. Fine-tuning to strengthen the visual default may be more robust than trying to police knowledge heads.
-
Sparse intervention strategy: If you need to suppress unwanted knowledge responses (eg, stereotypes), you can ablate a tiny fraction of attention heads rather than heavy retraining. The paper’s head ratios (2.5–4.8%) suggest targeted pruning is feasible.
-
Asymmetry as diagnostic: The asymmetry ratio (flip rate of prior vs vision) can be used as a metric to measure how “grounded” a model is – lower asymmetry means knowledge heads are less essential, which might be desirable for vision-centric tasks.
论文: 2606.28273
作者: Niclas Lietzow, Danielle Bitterman, Carsten Eickhoff, William Rudman, Michal Golovanevsky
分类: cs.CL
缺口
先前关于VLM感知-知识冲突的研究(例如,用荒谬图片进行视觉问答、有偏提示)只描述了行为结果:有时模型相信图像,有时依赖记忆事实。 但没有人打开黑箱,在组件级别问哪些内部部分导致了冲突的解决。 先前的方法依赖探针分类器、注意力可视化和全局特征归因——这些是相关工具,无法区分因果。 该领域知道冲突会发生,但不知道如何发生。
这篇论文通过将因果干预(三个粒度的激活补丁)与特定组件的消融结合起来填补了这一空白。 他们不仅观察,还通过破坏和修复来证明因果关系。
[VLM中的感知-知识冲突]
|
v
[现有工作:仅行为描述]
|
v
[缺口:无组件级因果解释]
|
v
[方法:激活补丁 + 消融]
| |
v v
[找到稀疏因果回路] [不对称因果结构]
| |
+-------++------+
|
v
[结论:视觉默认,先验覆盖通过注意力头]
增量
一句话:在这篇论文之前,我们知道VLM会被冲突知识愚弄; 在这篇论文之后,我们确切知道是哪一组注意力头(2.5–4.8%,位于网络后半部分)因果地负责在视觉矛盾时从记忆中提取答案——而且视觉接地是默认,而不是覆盖。
核心机制
作者在三个粒度级别上应用了激活补丁(也称为互换干预):残差流、单个注意力头和MLP子层。 激活补丁的工作原理是:记录模型在“源”输入上的内部状态,然后在处理“目标”输入的前向传播中替换特定层的激活。 如果输出转向源输入的输出,则该组件具有因果关系。
然后他们进行消融——将组件的激活设为0(或均值)——以测试移除它是否会翻转模型的行为。 关键技巧:他们比较两种提示。 视觉默认提示要求模型描述看到的内容(例如,当图像显示蓝色草莓时,问“草莓是什么颜色?”)。 先验知识提示要求事实(例如,“草莓是什么颜色?”同时显示蓝色图像)。 模型必须调和冲突。 通过消融识别出的注意力头,他们发现68–96%的先验知识答案切换为视觉答案,而只有0.8–7.5%的视觉答案切换为知识答案。 这就是不对称性。
[输入图像 + 提示] --> [残差流]
|
+----------------------+
| |
[补丁点] [消融掩码]
| |
v v
[注意力头] [MLP子层]
(22-24层) (每块2层)
| |
+---------+------------+
|
[输出logits]
/ \
[视觉答案] [知识答案]
结构性比喻:法官与专家证人
把VLM想象成法庭审判。 残差流是共享的白板,记录所有证据。 注意力头是证人:他们从白板读取并写入新事实。 大多数证人是默认证人——他们如实报告在图像中看到的内容(视觉证据)。 一小群专家证人(2.5–4.8%)记住了世界知识。 当提示问事实时(例如,“草莓是什么颜色?”),法官(解码器)会召唤这些专家。 他们覆盖白板上的视觉证据,写入“红色”即使图像显示蓝色。 作者的激活补丁就像暂时将专家证人的证词换成另一个证人的——如果判决改变,则该专家是因果性的。 消融就像移除专家——陪审团(模型)只能依赖默认证人,从而信任图像。 不对称性:移除专家几乎总是使判决从基于知识翻转为基于图像,但增加专家(或移除默认证人)很少使判决从基于图像翻转为基于知识。 这是因为法庭默认依赖视觉证据,除非专家明确在场。
关键概念
-
激活补丁:一种因果干预技术。 在输入A(例如,蓝色草莓 + 事实提示)上运行模型,记录特定层(如头部12)的激活。 然后在输入B(蓝色草莓 + 视觉提示)上运行模型,但在同一层将激活替换为从输入A记录的激活。 如果输出变为匹配输入A的答案,则该层对知识答案具有因果必要性。 这就像一次只对单个神经元进行大脑移植。
-
不对称因果结构:发现识别出的注意力头对基于知识的答案是必要的,但对基于视觉的答案不是。 这意味着视觉接地是模型的默认模式——残差流自然编码视觉特征。 那一小组“先验”头的作用是覆盖,可以写入冲突知识。 对称性意味着两个方向依赖于不同的回路;不对称意味着层次关系。
-
因果回路:一组组件(注意力头、MLP神经元),构成某一行为的最小必要路径。 作者展示基于先验的答案依赖于一个稀疏回路:仅有后期层中的少数头部。 这与通常用于复杂推理的密集、分布式回路对比。
框架转变
旧观点:VLM中的冲突解决是一个黑箱行为,通过整体准确率或显著性图描述。 研究人员争论模型是“看到”还是“知道”,而没有机械论证据。
新观点:冲突解决是一个不对称的因果过程,具有稀疏回路。 视觉接地是默认;先验接地是特定的覆盖,可以通过消融少数头部来禁用。
之前(主流方法):
[探针/可视化] -> [相关性] -> [行为描述]
(无因果)
之后(本文方法):
[补丁] -> [因果回路] -> [不对称机制]
(稀疏,局部)
一句话:从相关黑箱到因果稀疏回路理解感知-知识冲突。
专家评审
选题眼光:真缺口。 行为层已被充分探索(例如GQA、VQA v2等),但机械论原因一直未被触及。 这处于可解释性与多模态安全性的交叉点——对调试幻觉很重要。
方法成熟度:巧妙运用现有工具(激活补丁、消融),以多粒度流程应用。 不是新技术,但组合方式与不对称发现是新颖的。 更简单的方法(例如仅注意力剪枝)会遗漏因果不对称性——因此这种严格程度是合理的。
实验诚意:基线公平:比较视觉默认与先验知识提示,并在多个模型(LLaVA、InstructBLIP等)上运行补丁。 不对称结果引人注目(68–96% vs 0.8–7.5%)。 警示:论文未报告置信区间或不同种子的方差;样本大小不清楚。 此外,消融可能扰乱其他功能——视觉预测中的微小翻转(0.8–7.5%)可能是附带损伤,而非回路证据。 这需要更强的控制。
写作功力:组织良好,但方法部分密集——试图一次覆盖三个粒度。 有图示更好,但不够直观。 “比喻”部分缺失;论文本身没有使用类比,这使得机制难以内化。 增加几行直觉会提升文章档次。
判决:弱接收 – 填补了真缺口,因果方法论严谨,但贡献是增量性的(在已知情境中识别已知结构),实验报告可以更严格。
要点总结
-
激活补丁工具包:实践者可以复制这一流程,为任何多模态行为(如偏见、物体幻觉)找到因果回路。 三粒度方法(残差→头部→MLP)可作为模板。
-
视觉默认假设:构建安全VLM时,将视觉接地视为基线,知识检索视为脆弱、局部的覆盖。 增强视觉默认的微调可能比试图监管知识头部更稳健。
-
稀疏干预策略:如果需要抑制不想要的知识响应(例如刻板印象),可以消融极小比例的注意力头,而不是重训练。 论文中的头部比例(2.5–4.8%)表明针对性剪枝是可行的。
-
不对称性作为诊断工具:不对称比率(先验与视觉的翻转率)可用作衡量模型“接地”程度的指标——较低的不对称意味着知识头部不那么必要,这对于以视觉为中心的任务可能是可取的。