Research Papers 论文研究 7h ago Updated 2h ago 更新于 2小时前 43

Learning Evidence Sufficiency Boundaries for Selective Answering in Grounded Multi-Hop QA 学习证据充分性边界以实现有依据的多跳问答中的选择性回答

Introduces Evidence Sufficiency Boundary Training, a generation-native framework that teaches models to abstain when evidence is insufficient and answer only when context reaches a sufficiency threshold Addresses the core challenge in multi-hop QA where partial evidence can make unsupported answers appear plausible Achieves flip accuracy of 0.807 on boundary localization, outperforming a token-level abstention baseline (0.781), with the lowest unsupported-answer rate of 0.095 on external non-ans 提出证据充分性边界训练(ESBT)框架,使模型在多跳QA中能判断证据何时充分到可以回答 通过构建有序证据链并直接监督"拒绝→回答"转换,解决部分证据导致幻觉的问题 在HotpotQA、2WikiMultiHopQA和MuSiQue上验证,翻转准确率达0.807,优于基线0.781 外部不可回答集上的不支持答案率降至0.095(基线0.101),同时保持有竞争力的QA F1 为接地问答系统提供了可训练的边界定位方案,实现"有证据才回答"的可靠行为

55
Hot 热度
72
Quality 质量
62
Impact 影响力

Analysis 深度分析

TL;DR

  • Introduces Evidence Sufficiency Boundary Training, a generation-native framework that teaches models to abstain when evidence is insufficient and answer only when context reaches a sufficiency threshold
  • Addresses the core challenge in multi-hop QA where partial evidence can make unsupported answers appear plausible
  • Achieves flip accuracy of 0.807 on boundary localization, outperforming a token-level abstention baseline (0.781), with the lowest unsupported-answer rate of 0.095 on external non-answerable sets
  • Combines four training components: level supervision, boundary flip margin, post-boundary stability, and answer recall protection
  • Evaluated on HotpotQA, 2WikiMultiHopQA, and MuSiQue using Qwen2.5-3B-Instruct with LoRA adaptation, maintaining competitive raw QA F1 while improving selective answering

Why It Matters

This work directly addresses a critical reliability gap in grounded QA systems: the tendency to answer confidently even when evidence is incomplete or misleading. For AI practitioners building production question-answering systems, the ability to selectively abstain rather than hallucinate is essential for trust and safety. The paper provides a practical training framework that can be adapted to improve the dependability of retrieval-augmented and multi-hop QA pipelines.

Technical Details

  • Evidence Sufficiency Boundary Training constructs ordered evidence chains from multi-hop QA datasets and directly supervises the abstain-to-answer transition, rather than relying on token-level confidence thresholds
  • The framework combines four objectives: level supervision (training at each evidence depth), boundary flip margin (encouraging a clear transition zone), post-boundary stability (preventing answer changes when redundant evidence is added), and answer recall protection (ensuring sufficient answers are still produced)
  • Evidence chains are built from three benchmark datasets: HotpotQA, 2WikiMultiHopQA, and MuSiQue
  • Evaluation uses chain-level metrics, raw QA F1, and unsupported-answer rates on external non-answerable sets
  • Implementation uses Qwen2.5-3B-Instruct as the base model with LoRA adaptation, keeping the approach parameter-efficient

Industry Insight

  • Selective answering should be treated as a first-class training objective rather than a post-hoc filtering step; models trained to recognize evidence boundaries will reduce hallucination rates in production QA systems
  • The four-component training framework is modular and can be adapted to other grounded reasoning tasks beyond multi-hop QA, including fact-checking and medical/legal question answering where evidence sufficiency is critical
  • The modest but consistent improvements (flip accuracy +2.6%, unsupported-answer rate reduction) suggest that boundary-aware training is a reliable optimization path, especially when combined with retrieval-augmented generation pipelines

TL;DR

  • 提出证据充分性边界训练(ESBT)框架,使模型在多跳QA中能判断证据何时充分到可以回答
  • 通过构建有序证据链并直接监督"拒绝→回答"转换,解决部分证据导致幻觉的问题
  • 在HotpotQA、2WikiMultiHopQA和MuSiQue上验证,翻转准确率达0.807,优于基线0.781
  • 外部不可回答集上的不支持答案率降至0.095(基线0.101),同时保持有竞争力的QA F1
  • 为接地问答系统提供了可训练的边界定位方案,实现"有证据才回答"的可靠行为

为什么值得看

这篇论文解决了多跳问答中"部分证据误导"的核心痛点,为构建高可信度接地问答系统提供了新的训练范式。对于医疗、法律等高风险领域,模型"知道何时不回答"的能力与"能回答问题"同样重要。

技术解析

  • 核心方法:证据充分性边界训练(ESBT),一种生成原生训练框架,构建有序证据链并直接监督从拒绝到回答的转换过程
  • 训练组件:结合层级监督、边界翻转边际(boundary flip margin)、边界后稳定性约束和答案召回保护四项技术
  • 数据集:从HotpotQA、2WikiMultiHopQA和MuSiQue三个多跳QA基准构建证据链
  • 实验设置:基于Qwen2.5-3B-Instruct模型,使用LoRA适配进行微调
  • 评估体系:链式指标、原始QA效用(F1)、外部不可回答集上的不支持答案率

行业启示

  • 接地问答系统的可靠性不仅取决于回答准确率,更取决于"何时拒绝回答"的判断能力,这是高风险应用落地的关键
  • 多跳推理中的证据充分性边界学习为可解释AI提供了新的训练思路,值得推广到其他需要证据支撑的推理任务
  • 选择性回答框架可与现有RAG系统结合,在检索增强环节引入证据充分性判断,降低幻觉风险

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Research 科学研究 LLM 大模型 Evaluation 评测 RAG 检索增强生成