Paper: 2606.32008 Authors: Philippe Chlenski, Zachariah Carmichael, Ayush Warikoo, Chia-Tse Shao, Yingxiao Ye, Aobo Yang, Vivek Miglani, Nehal Bandi Categories: cs.LG
The Gap
Mechanistic interpretability (MI) has made stunning progress — but only on models you can crack open and inspect neuron by neuron. The problem: the models people actually use (GPT, Gemini, Claude) are locked behind APIs. So the field has quietly adopted a working assumption: study a transparent open model, and the insights should transfer to the opaque production model you care about.
Nobody has rigorously tested this assumption. Prior work either studies a single model family, focuses only on prediction-level agreement, or conflates “these models behave similarly” with “these models work the same way internally.” This paper draws a sharp line between three levels of fidelity — prediction, attribution, and representation — and shows they come apart badly.
Mechanistic interpretability wants to explain *how* models think
|
v
But production models (GPT, Gemini) are API-only: no weights, no activations
|
v
ASSUMPTION: study open models (Llama, Qwen) -> insights transfer to closed ones
|
v
UNTESTED: does agreement on *what* (prediction) mean agreement on *why* (attribution)?
|
v
THIS PAPER: test fidelity at 3 levels across 11 models x 4 families
|
v
FINDING: prediction fidelity drastically overstates attribution fidelity
white-box signals stable but causally weak
black-box ablations capture causal structure by design
|
v
CONCLUSION: mechanistic insight does NOT automatically transfer
prediction agreement is insufficient to warrant transfer
The Increment
One sentence: Before this paper, researchers implicitly treated open-model explanations as portable to closed targets; after this paper, we have rigorous evidence that this transfer fails at the causal level, and we know which signals to trust (and which to distrust).
Core Mechanism
The paper’s contribution is a systematic evaluation framework, not a new model or training method. The authors test surrogate fidelity at three distinct levels across eleven models spanning four families (Llama, Qwen, GPT, Gemini).
Prediction fidelity asks: do two models produce the same outputs? This is the easiest test — just compare answers. Attribution fidelity asks: do two models arrive at those answers for the same reasons? This is harder — you need to measure which input features matter, then compare. Representation fidelity asks: do the models have similar internal geometry? This is hardest — you need to align and compare hidden-state spaces.
For API-only models (GPT, Gemini), you can’t access attention heads or activations. So the authors use log-odds as a scalar proxy for the model’s representation space — the log-ratio of probabilities for two classes gives you a single number that encodes how the model “sees” a problem. For attributions on closed models, they use leave-one-out input ablations: systematically remove tokens and measure how predictions change. This is black-box by design — it works through the API.
For open models, they compute the full suite of white-box signals: attention patterns, perturbation magnitudes, gradient-based attributions. Then they compare: does a white-box signal measured on an open model predict the black-box attribution pattern of a closed model?
Open Model Closed Model
(white-box access) (API-only access)
| |
+------+------+ +---------+---------+
| | | | |
Attn Perturb Activations Log-probs Ablations
patterns magnitudes (log-odds) (leave-one-out)
| | | | |
v v v v v
White-box signals Prediction readout Attribution readout
(detailed, internal) (scalar, external) (behavioral, external)
| | |
+---------> Compare <--------------+-------------------+
at 3 levels:
Prediction Attribution Representation
| | |
v v v
High fidelity Low fidelity Moderate
(models agree (models disagree (some shared
on answers) on reasons) structure)
Here’s the structural metaphor that makes this click. Imagine two hospital emergency rooms — one with glass walls where you can watch every doctor’s decision, and one behind a closed door where you only see the patient outcome.
Prediction fidelity = do both ERs discharge the same diagnosis? Yes, mostly — both “rooms” say “appendicitis.”
Attribution fidelity = did the doctors reach that diagnosis the same way? The glass-wall doctor ordered a CT scan; the hidden-door doctor relied on blood work alone. Same answer, totally different reasoning. You *cannot walk into the glass ER, watch the doctor order a CT, and conclude the hidden doctor also ordered a CT.
The access-validity inversion is the kicker: the signals you can see clearly through the glass wall (how the doctor holds the scalpel, the order of procedures) are *stable — every glass-wall ER does it similarly — but they tell you almost nothing about what the hidden-door doctor is doing. Meanwhile, a crude external test (what happens if you withhold a symptom from the patient intake form?) is noisy but causally grounded — it directly measures decision-making.
The lesson: detailed observational access to one system does not give you reliable causal knowledge of another, even when outcomes agree.
Key Concepts
-
Surrogate Fidelity: Think of it as a “can I use Model A to explain Model B?” score. If I study Llama’s internals and conclude “this model works by attending to sentiment words,” surrogate fidelity measures whether that same explanation applies to GPT. It’s not about whether the models give the same answers — it’s about whether the same *mechanism drives those answers. The paper shows these are very different questions with very different answers.
-
Access-Validity Inversion: This is the paper’s most surprising finding. You’d naturally assume that richer information (seeing attention weights, neuron activations) gives you better understanding. It turns out that white-box signals measured on open models are *highly consistent across open models (stable) but weakly predictive of causal attributions on closed models (invalid). Meanwhile, black-box input ablations — which are conceptually cruder — capture causal structure by construction, because they directly measure “what happens when I remove this piece?” It’s the difference between watching someone’s muscle movements (detailed but hard to generalize) versus testing what happens when you blindfold them (crude but causally informative).
-
Log-odds as API-compatible readout: Most APIs give you probability distributions over next tokens. The log-odds — log(p(class A) / p(class B)) — compresses this into a single scalar that encodes where the model sits in its representation space. Think of it as the model’s “body language” for how confident and in which direction it leans. It’s the richest signal you can get without weight access, and the paper shows it works well for comparing prediction behavior across models.
Framework Shift
Before (mainstream approach): After (this paper):
"I studied Llama, "I studied Llama, so
so I understand GPT" I understand Llama."
| |
| |
Assumes portability Demands proof of portability
| |
| |
Prediction-level Three-level fidelity test:
agreement = enough prediction / attribution / representation
| |
| |
White-box signals White-box = stable but weak
assumed gold standard Black-box ablations = causally valid
| |
v v
MI insight transfers Insight transfers ONLY with
automatically explicit fidelity evidence
From treating open models as automatic surrogates to demanding explicit fidelity evidence at multiple levels, the core shift is: prediction agreement is necessary but nowhere near sufficient for mechanistic transfer.
Expert Assessment
Problem choice: This is a genuine and important gap. The MI community has been building an entire research program on open models with the implicit hope that insights generalize. Someone needed to test this. The paper sits at a critical juncture — MI is maturing from “cool demos on toy models” to “can we actually use this in production?” and this question blocks that transition.
Method maturity: The framework is clean and pragmatic rather than technically novel. Using log-odds as a scalar readout and leave-one-out ablations for API models is not rocket science — it’s good engineering. The real contribution is the systematic multi-level evaluation across many model families, not any single methodological trick. There are probably more sophisticated alignment-based approaches to representation comparison being overlooked, but the paper’s simplicity is also its strength.
Experimental integrity: The baselines are fair — they compare within-family and across-family, open-to-open and open-to-closed. Eleven models across four families is decent coverage. The key numbers (prediction fidelity ~0.7-0.9, attribution fidelity often near chance) are striking and consistent. One concern: they focus on binary classification tasks, which may not capture the full complexity of open-ended generation. The log-odds readout is inherently limited to settings where you have a clear class comparison.
Writing quality: The paper is unusually well-structured for a mechanistic interpretability paper. The three-level fidelity taxonomy is clearly introduced and consistently applied. Where they cut corners: the representation fidelity analysis feels underexplored compared to prediction and attribution. Section 5 (representation) is noticeably thinner. A deeper dive into *why the access-validity inversion occurs — what structural property of transformer architectures causes white-box signals to decouple from causal roles — would elevate this from “we observe X” to “we understand X.”
Verdict: weak accept — clean evaluation framework addressing a real methodological blind spot, with strong empirical evidence across model families, though the theoretical explanation for *why the inversion happens remains open.
Takeaways
-
Don’t trust prediction-level agreement as evidence for mechanistic transfer. If you’re using Llama to build interpretability tools meant for GPT, prediction overlap is not enough — you need explicit attribution-level testing. This is directly actionable for anyone building “interpretability as a service.”
-
Prefer black-box ablations over white-box signals when explaining closed models. If you have to choose one method for understanding an API-only model, input ablation gives you causally grounded explanations. Attention patterns from a surrogate model look clean but may mislead.
-
The log-odds readout is a practical tool worth stealing. For anyone doing cross-model comparison with API-only access, log(p_classA / p_classB) is a simple, API-compatible scalar that encodes meaningful representation-space information. No fancy infrastructure needed.
-
The fidelity taxonomy (prediction / attribution / representation) is a useful checklist. Even outside LLMs, any time you’re using one system to explain another — a simulator for the real world, a small model for a large one — these three levels give you a structured way to ask “transfer to what, exactly?”
论文: 2606.32008 作者: Philippe Chlenski, Zachariah Carmichael, Ayush Warikoo, Chia-Tse Shao, Yingxiao Ye, Aobo Yang, Vivek Miglani, Nehal Bandi 分类: cs.LG
缺口
机制可解释性(MI)近年进展显著——但基本都是在可以”拆开看”的开源模型上完成的。 现实问题是:大家真正用的模型(GPT、Gemini、Claude)都锁在 API 后面,你看不到权重和激活值。 于是领域里形成了一条潜规则:在透明的开源模型上研究,得到的洞见”应该”能迁移到不透明的生产模型上。
没人认真验证过这条假设。 此前的工作要么只研究单一模型家族,要么只看预测层面是否一致,要么把”行为相似”和”内部机制相同”混为一谈。 本文精准划分了三个保真度层级——预测、归因、表征——并证明它们严重脱节。
机制可解释性要回答"模型怎么想"
|
v
但生产模型(GPT、Gemini)只给 API,看不到权重和激活
|
v
隐含假设:研究开源模型 -> 洞见可迁移到闭源模型
|
v
未经检验:预测一致("是什么")是否意味着归因一致("为什么")?
|
v
本文:在 11 个模型 x 4 个家族中测试 3 个层级的保真度
|
v
发现:预测保真度远高于归因保真度
白盒信号稳定但因果预测力弱
黑盒消融天然捕捉因果结构
|
v
结论:机制洞见不能自动迁移
预测层面的一致不足以支撑迁移
增量
一句话: 这篇论文之前,研究者默认开源模型的解释可以迁移到闭源模型;之后,我们有了严格证据表明这种迁移在因果层面失败了,并且知道了该信任什么信号、该警惕什么信号。
核心机制
本文的贡献是一套系统化的评估框架,而非新模型或新训练方法。 作者在三个层级上测试替代保真度,覆盖 11 个模型、4 个家族(Llama、Qwen、GPT、Gemini)。
预测保真度问的是:两个模型是否给出相同答案?最简单——直接比对输出。 归因保真度问的是:两个模型是否出于同样的原因给出答案?更难——你需要度量哪些输入特征重要,然后做比较。 表征保真度问的是:两个模型的内部几何结构是否相似?最难——需要对齐和比较隐状态空间。
对于纯 API 模型(GPT、Gemini),你无法获取注意力头或激活值。 因此作者用 log-odds(对数几率)作为模型表征空间的标量代理——两个类别概率的对数比值,编码了模型对问题的”看法”。 对于闭源模型的归因分析,他们采用留一法输入消融:系统性地移除 token,观察预测如何变化。 这是天然的黑盒方法——只通过 API 就能完成。
对于开源模型,他们计算全套白盒信号:注意力模式、扰动幅度、梯度归因。 然后做比较:开源模型上测得的白盒信号,能否预测闭源模型的黑盒归因模式?
开源模型 闭源模型
(白盒访问) (仅 API 访问)
| |
+---------+---------+ +--------+--------+
| | | | |
注意力 扰动幅度 激活值 对数概率 消融分析
模式 (log-odds) (留一法)
| | | | |
v v v v v
白盒信号 预测读出 归因读出
(细粒度、内部的) (标量、外部的) (行为的、外部的)
| | |
+---------> 比较 <----------+--------------------+
3 个层级:
预测 归因 表征
| | |
v v v
高保真度 低保真度 中等
(答案一致)(原因不同)(部分共享结构)
用一个结构性比喻来打通直觉。 想象两家急诊室——一家是玻璃墙的,你能看到医生的每个决策;另一家门关着,你只能看到病人出院时的结果。
预测保真度 = 两家急诊室是否给出了相同的诊断?大体相同——都说”阑尾炎”。
归因保真度 = 两位医生是用同一种推理路径得出诊断的吗? 玻璃墙里的医生开了 CT;门后面的医生只靠血检。 答案一样,推理完全不同。 你不能走进玻璃墙急诊室、看到医生开 CT,就断定门后面的医生也开了 CT。
访问-效度倒置是关键发现:你透过玻璃墙能清楚看到的信号(医生怎么握刀、手术步骤顺序)在所有玻璃墙急诊室中都很**稳定*——但它们几乎无法告诉你门后面的医生在做什么。 而一个粗糙的外部测试(如果从病人入院表上删掉一个症状会怎样?)虽然噪声大,但在因果层面是直接有效的——它直接测量了决策过程。
教训:对一个系统的详细观察性访问,不等于对另一个系统的可靠因果知识,即使两者的结果一致。
关键概念
-
替代保真度: 可以把它理解为”我能不能用模型 A 来解释模型 B”的得分。 假如我研究了 Llama 的内部机制,得出结论”这个模型靠关注情感词来工作”,替代保真度衡量的是:同样的解释是否适用于 GPT。 这不是两个模型是否给出相同答案——而是同一种机制是否驱动了那些答案。 本文表明,这两个问题的答案截然不同。
-
访问-效度倒置: 这是本文最出人意料的发现。 直觉上你会假设:信息越丰富(看到注意力权重、神经元激活),理解就越准确。 但事实是:在开源模型上测得的白盒信号在不同开源模型之间高度一致(稳定),却几乎无法预测闭源模型的因果归因(无效)。 与此同时,概念上更粗糙的黑盒输入消融——因为直接测量了”去掉这部分会怎样”——反而天然捕捉了因果结构。 这就像观察一个人的肌肉运动(详细但难以泛化)vs. 测试蒙住眼睛会怎样(粗糙但因果信息明确)。
-
Log-odds 作为 API 兼容读出: 大多数 API 给出下一个 token 的概率分布。 Log-odds——log(p(类别A) / p(类别B))——把它压缩成一个标量,编码了模型在其表征空间中的位置。 可以把它理解为模型的”肢体语言”:它往哪个方向倾斜、有多自信。 这是在没有权重访问的情况下能得到的最丰富信号,本文证明它在跨模型比较预测行为时效果很好。
框架转变
之前(主流方法): 之后(本文方法):
"我研究了 Llama, "我研究了 Llama,
所以我理解了 GPT" 所以我理解了 Llama"
| |
| |
默认可迁移性 要求提供可迁移性的证据
| |
| |
预测层面一致 = 足够 三层保真度检验:
预测 / 归因 / 表征
| |
| |
白盒信号被视为黄金标准 白盒 = 稳定但弱
黑盒消融 = 因果有效
| |
v v
MI 洞见自动迁移 洞见仅在有明确
保真度证据时才迁移
从默认开源模型是天然替代品,到要求逐层验证保真度——核心转变是:预测层面的一致是必要的,但远远不足以支撑机制层面的迁移。
专家评审
选题眼光: 这是一个真实且重要的缺口。 MI 社区一直在开源模型上构建整个研究范式,暗含的期望是洞见能泛化。 总得有人来检验这个假设。 论文处于一个关键节点——MI 正在从”在玩具模型上做出酷炫演示”走向”在生产中真的有用”,而这个问题直接阻断了那一跃迁。
方法成熟度: 框架干净务实,技术上不算新颖。 用 log-odds 做标量读出、用留一消融处理 API 模型并不复杂——是好的工程实践。 真正的贡献是跨多个模型家族的系统性多层级评估,而非某个单一的方法技巧。 可能忽略了更精密的基于对齐的表征比较方法,但简洁本身也是优势。
实验诚意: 基线设计公平——做了家族内和跨家族比较,开源对开源和开源对闭源。 11 个模型覆盖 4 个家族,样本量说得过去。 关键数据(预测保真度约 0.7-0.9,归因保真度经常接近随机水平)非常醒目且一致。 一个顾虑:他们只聚焦于二分类任务,可能没有捕捉到开放式生成的全部复杂性。 Log-odds 读出天然受限于有明确类别对比的场景。
写作功力: 对于一篇 MI 论文来说,结构异常清晰。 三层保真度分类法引入清楚、贯穿始终。 偷懒的地方:表征保真度分析相比预测和归因明显单薄,第 5 节篇幅不足。 对”访问-效度倒置为什么会发生”的理论解释——Transformer 架构的什么结构特性导致白盒信号与因果角色脱钩——如果能深入一层,就能把论文从”我们观察到了 X”提升到”我们理解了 X”。
判决: 弱接收——清晰的评估框架,直指一个真实的方法论盲区,跨模型家族的经验证据有力,但”倒置为何发生”的理论解释仍是开放问题。
要点总结
-
不要把预测层面的一致当作机制迁移的证据。 如果你用 Llama 构建可解释性工具并打算应用到 GPT,光看预测重叠不够——你需要做归因层面的显式测试。 这对所有构建”可解释性即服务”的人直接可用。
-
解释闭源模型时,优先使用黑盒消融而非白盒信号。 如果你只能选一种方法来理解一个 API 模型,输入消融给你因果上有据的解释。 来自替代模型的注意力模式看起来很干净,但可能误导你。
-
Log-odds 读出是一个值得偷走的实用工具。 任何需要通过 API 做跨模型比较的人,log(p_类A / p_类B) 是一个简单、兼容 API 的标量,编码了有意义的表征空间信息。 不需要任何花哨的基础设施。
-
保真度分类法(预测/归因/表征)是一个实用的检查清单。 不只是 LLM——任何时候你用一个系统去解释另一个系统——模拟器解释真实世界、小模型解释大模型——这三个层级都给你一个结构化的方式去追问”到底迁移到什么层面?”