Paper: 2609.17516 Authors: Ali Senol Categories: cs.CL, cs.AI
The Gap
Large language models can produce fluent answers when their factual support is weak. That is not a curiosity. It is the failure mode that makes a chatbot usable in demo and dangerous in production: the user cannot tell, from the surface of the text, whether the model knew or guessed.
Selective prediction — answer when confident, abstain otherwise — is the right formalization. The hard part is the gate. Logit thresholds are model-specific and brittle. External verifiers need labels or extra models. And chain-of-thought, the default reasoning scaffold, improves the answer but does not ask whether an answer should be given at all.
The paper’s framing is the useful move: make answer commitment conditional on an explicit assessment of the information required to answer a question. Not “am I sure?” in the abstract, but “what would I need to know, and do I have it?”
THE FLUENCY / SUPPORT GAP
model produces FLUENT text
often with WEAK factual support
|
v
surface of the answer CANNOT TELL the user
knew vs guessed
|
v
selective prediction is the right formalization
answer when warranted, ABSTAIN otherwise
|
v
BUT THE GATE IS HARD
logit thresholds: model-specific, brittle
external verifiers: need labels or extra models
chain-of-thought: improves the answer
does NOT ask whether to answer
|
v
CoSQ's move
commitment conditional on an EXPLICIT assessment of
the INFORMATION REQUIRED to answer
not: "am I sure?"
but: "what would I need, and do I have it?"
The Increment
One sentence: Before CoSQ, abstention gates were external thresholds or separate verifiers; after it, a prompt-only self-questioning scaffold makes answer-or-abstain an explicit, tunable decision that improves both wrong-commitment rate and answered accuracy across eleven model families.
Core Mechanism
CoSQ is prompt-only. That is the first design choice worth naming: no fine-tuning, no auxiliary head, no extra verifier model. The method has to work by changing what the model is asked to do before it commits.
The scaffold inserts a self-questioning stage whose output is not the answer but the conditions for answering. Three variants are evaluated. Grounded-CoSQ is the headline configuration. Critical-CoSQ and Adaptive-CoSQ are neighboring operating points on the same idea — different ways of deciding when the self-assessment is sufficient to commit.
The evaluation is unusually careful about protocol. Seventeen conditions on the 817-item TruthfulQA multiple-choice validation set, eleven open-weight and hosted model families, and a final balanced-option protocol. Numbers from that protocol:
- Grounded-CoSQ at tau = 0.90 reduces mean unconditional wrong-commitment rate from 13.1% under chain-of-thought to 8.9% — a 32.1% relative reduction.
- Answered accuracy rises from 86.9% to 89.7% while still answering 87.6% of questions.
- Both improvements hold for all eleven models and at every evaluated threshold. That last clause is what separates a real effect from a lucky operating point.
- Critical-CoSQ and Adaptive-CoSQ give neighboring points at 88.6% and 86.5% coverage, remaining more reliable than baseline.
A secondary Natural Questions Short-Answer evaluation provides convergent open-form evidence, so the result is not an artifact of multiple-choice formatting alone.
CoSQ AT A GLANCE
setup
prompt-only (no fine-tune, no verifier model)
TruthfulQA MC, 817 items
17 conditions, 11 model families
final protocol: balanced options
Grounded-CoSQ, tau = 0.90
wrong-commitment: 13.1% (CoT) -> 8.9%
= 32.1% relative reduction
answered accuracy: 86.9% -> 89.7%
coverage: 87.6%
BOTH improvements hold
for ALL 11 models
at EVERY evaluated threshold
neighbors
Critical-CoSQ coverage 88.6%
Adaptive-CoSQ coverage 86.5%
both still more reliable than baseline
open-form check
Natural Questions Short-Answer
convergent evidence, not MC artifact
Think of it as forcing a student to write the rubric before answering, not after. Chain-of-thought says “show your work.” CoSQ says “first state what the work would require, then decide whether you can do it.” The decision becomes inspectable and tunable — tau is a dial on how demanding the self-assessment must be before commitment — instead of an opaque confidence score.
Key Concepts
- Commitment as a decision, not a side effect: the model should be able to decline, and the decline should be a first-class output.
- Information-requirement assessment as the gate: ask what the question needs, not whether the model “feels” sure.
- Prompt-only selective risk control: no parameter updates, no external verifier — useful where you cannot retrain or ship a second model.
- Threshold as a product knob: tau trades coverage against reliability in an explicit, reportable way.
- Cross-family robustness: improvements that hold for all eleven models at every threshold are much harder to dismiss as prompt luck.
Framework Shift
Before (always answer, or gate on logits):
chain-of-thought improves the answer
-> commitment is implicit
-> wrong answers remain fluent and confident
-> thresholds are model-specific and brittle
After (self-question, then commit or abstain):
CoSQ inserts an explicit information-requirement check
-> commitment is a tunable decision (tau)
-> wrong-commitment drops ~32% relative
-> answered accuracy rises, coverage stays high
-> effect holds across 11 families and all thresholds
From “reason harder and hope,” to “decide whether you are entitled to answer, then answer,” the core shift is that abstention becomes an inspectable step inside the prompt rather than a post-hoc confidence filter.
Expert Assessment
Problem choice: Excellent. Selective prediction for LLMs is one of the few places where a methodological improvement maps directly onto deployment risk. The paper targets the right quantity — unconditional wrong-commitment, not just accuracy on answered items — which is what a careful operator actually cares about.
Method maturity: Prompt-only is both the virtue and the limit. It will not beat a well-trained selective head in every regime, and it spends tokens on the self-questioning stage. But it is immediately usable on closed and open models alike, and the three variants give a small but real operating-characteristic curve rather than a single point.
Experimental integrity: Strong for a paper of this kind. Seventeen conditions, eleven families, a named final protocol, relative and absolute numbers, and — the detail that does the most work — both improvements hold for all eleven models and at every evaluated threshold. That is the difference between a result and a cherry-picked tau. The Natural Questions secondary evaluation is the right kind of convergent check. Residual questions: how tau should be set without a held-out set, and how the method behaves under distribution shift rather than on a fixed benchmark.
Writing quality: The abstract is quantitative and ordered correctly: problem, mechanism, protocol, headline numbers, neighbors, secondary evidence, claim. One can reconstruct the contribution without the PDF.
Verdict: weak accept — careful protocol, cross-family robustness, and a tunable abstention gate that improves the risk-coverage tradeoff rather than merely shifting it.
Takeaways
- Measure the wrong-commitment rate, not only accuracy on answered items. Coverage without that number is incomplete.
- Ask “what does this question require?” before “what is my answer?” Self-questioning can be a gate, not just a reasoning aid.
- Prefer results that hold across model families and thresholds. A single best tau is weak evidence.
- Prompt-only methods are deployable where you cannot retrain. That constraint is often the real product constraint.
论文: 2609.17516 作者: Ali Senol 分类: cs.CL, cs.AI
缺口
大语言模型可以在事实支撑薄弱时仍然吐出流利的答案。这不是趣闻。这是让聊天机器人「演示时好用、生产时危险」的那个失效模式:用户从文本表面分不清模型是知道还是猜中。
选择性预测——有把握就答,否则弃答——是正确的形式化。难的是那道闸。对数几率阈值依赖模型、且脆弱。外部校验器需要标注或额外模型。而思维链作为默认推理脚手架,改进了答案,却从不问「是否应当作答」。
本文的框定是有用的那一手:把「是否作答」建立在「对作答所需信息的显式评估」之上。 不是抽象地问「我确定吗?」,而是「我需要知道什么?我有没有?」
「流利」与「支撑」之间的缺口
模型产出「流利」文本
往往只有「薄弱」的事实支撑
|
v
答案的表面「无法告诉」用户
它是知道 还是 猜的
|
v
选择性预测是正确的形式化
有据则答,否则「弃答」
|
v
但那道闸很难
对数几率阈值:依赖模型、脆弱
外部校验器:需要标注或额外模型
思维链:改进答案
「从不问」是否应当作答
|
v
CoSQ 的那一手
作答与否,取决于「对所需信息的显式评估」
不是:「我确定吗?」
而是:「我需要知道什么?我有没有?」
增量
一句话: 在 CoSQ 之前,弃答闸门是外部阈值或独立校验器;在这之后,一个仅靠提示的自我追问脚手架,把「答或弃」变成显式、可调的决策,并在十一个模型家族上同时降低错误作答率、提高已答准确率。
核心机制
CoSQ 是纯提示的。 这是第一个值得点名的设计选择:不微调、不加辅助头、不引入额外校验器模型。方法必须靠改变「模型在作答前被要求做什么」来生效。
脚手架插入一个自我追问阶段,其产出不是答案,而是「作答的条件」。 评估了三个变体。Grounded-CoSQ 是主打配置。Critical-CoSQ 与 Adaptive-CoSQ 是同一思想上的相邻工作点——不同的「自我评估到什么程度才允许作答」的判定方式。
评估协议异常谨慎。 TruthfulQA 多选验证集 817 题、十七种条件、十一个开源与托管模型家族,外加最终的 balanced-option 协议。该协议下的数字:
- Grounded-CoSQ 在 tau = 0.90 将平均无条件错误作答率从思维链下的 13.1% 降到 8.9%——相对下降 32.1%。
- 已答准确率从 86.9% 升到 89.7%,同时仍作答 87.6% 的题目。
- 两项改进在全部十一个模型、以及每一个被评估的阈值上都成立。 最后这句才是把「真实效应」与「碰巧选中工作点」分开的东西。
- Critical-CoSQ 与 Adaptive-CoSQ 给出相邻工作点,覆盖率分别为 88.6% 与 86.5%,仍比基线更可靠。
次要的 Natural Questions 短答评估提供了开放式证据上的汇聚,说明结果不只是多选题格式的人工产物。
CoSQ 一览
设定
纯提示(不微调、无外部校验模型)
TruthfulQA 多选,817 题
17 种条件,11 个模型家族
最终协议:balanced options
Grounded-CoSQ, tau = 0.90
错误作答率:13.1%(CoT)-> 8.9%
= 相对下降 32.1%
已答准确率:86.9% -> 89.7%
覆盖率:87.6%
「两项」改进都成立
对「全部 11 个」模型
在「每一个」被评估阈值上
相邻点
Critical-CoSQ 覆盖率 88.6%
Adaptive-CoSQ 覆盖率 86.5%
两者仍比基线更可靠
开放式检验
Natural Questions 短答
汇聚证据,不是多选题的假象
可以理解为:逼学生先写评分标准,再答题,而不是答完再补。 思维链说的是「展示过程」;CoSQ 说的是「先说清过程需要什么,再决定你能不能做」。于是「是否作答」变成可检查、可调(tau 是「自我评估要多苛刻才允许作答」的旋钮)的决策,而不是一个不透明的置信分。
关键概念
- 作答是一个决策,不是副产品: 模型应当能够拒绝,且拒绝是一等输出。
- 以「信息需求评估」作为闸门: 问「这道题需要什么」,而不是问模型「感觉确定吗」。
- 纯提示的选择性风险控制: 不更新参数、无外部校验器——在无法重训或无法多部署一个模型的场景里特别有用。
- 阈值是产品旋钮: tau 以显式、可报告的方式在覆盖率与可靠性之间做交换。
- 跨家族稳健性: 在全部十一个模型、所有阈值上都成立的改进,比提示运气难打发得多。
框架转变
之前(总是作答,或用 logits 闸门):
思维链改进答案
-> 作答与否是隐式的
-> 错误答案仍然流利且自信
-> 阈值依赖模型、脆弱
之后(先自我追问,再答或弃):
CoSQ 插入显式的信息需求检查
-> 作答成为可调决策(tau)
-> 错误作答率相对下降约 32%
-> 已答准确率上升,覆盖率仍高
-> 效应在 11 个家族与所有阈值上成立
从「再用力想然后指望」,到「先确认自己是否有资格作答,再作答」,核心转变是:弃答从事后置信度过滤,变成了提示内部一个可检查的步骤。
专家评审
选题眼光: 极好。LLM 的选择性预测是少数「方法学改进直接映射到部署风险」的地方。论文瞄准了正确的量——无条件错误作答率,而不只是已答题的准确率——这才是谨慎的运维者真正关心的。
方法成熟度: 纯提示既是优点也是限制。它未必在所有区间打得过训练好的选择性头,而且要在自我追问阶段花 token。但它对闭源与开源模型都能立刻用起来,三个变体给出了一条小小的、真实的工作特性曲线,而不是单个点。
实验诚意: 对这类论文而言很强。十七种条件、十一个家族、明确的最终协议、相对与绝对数字齐备,并且——细节里最有分量的一条——两项改进在全部十一个模型、每一个被评估阈值上都成立。这就是「结果」与「挑出来的 tau」的区别。Natural Questions 次要评估是正确的汇聚性检查。残留问题:没有留出集时 tau 该怎么设;以及方法在分布偏移下、而不只是固定 benchmark 上,表现如何。
写作功力: 摘要定量、顺序正确:问题、机制、协议、主打数字、相邻点、次要证据、主张。不读 PDF 也能重建贡献。
判决: 弱接收(Weak Accept) — 谨慎的协议、跨家族稳健、以及一个可调的弃答闸门:它改进了风险—覆盖权衡,而不是仅仅把它挪了个位置。
要点总结
- 度量错误作答率,而不只是已答题的准确率。没有这个数字,覆盖率是不完整的。
- 先问「这道题需要什么」,再问「我的答案是什么」。自我追问可以是闸门,不只是推理辅助。
- 优先相信跨模型家族、跨阈值都成立的结果。单个最佳 tau 证据很弱。
- 纯提示方法用在无法重训的地方。那个约束往往才是真实的产品约束。