Score
Designing models and diagnostics to extract contiguous text spans as evidence for downstream tasks while preserving necessary context for claim-conditioned rescoring. It covers adapting architectures (e.g., BERT) to identify target spans and measuring whether gold answers remain recoverable in packed reader contexts.
This work addresses the challenge of extracting scientific hypotheses and their supporting statistical evidence from research papers, a task hindered by the documents’ length and dispersed information. The authors propose a two-stage retrieve-and-extract framework that incorporates a paper-structure-aware context selection strategy to effectively link key findings in abstracts with corresponding hypotheses and evidence in the main text. Through systematic evaluation of various configurations—including standard RAG, re-ranking, fine-tuned retrievers, and large language model extractors—and by decoupling retrieval from extraction performance using oracle passages, the study demonstrates that high-quality contextual passages substantially improve hypothesis extraction. However, extracting statistical evidence remains challenging, revealing limitations in current models when processing hybrid numerical-textual statements.
This work investigates the interplay between retrieval and comprehension of in-document extractive evidence by large language models (LLMs) in few-shot learning, specifically examining whether prediction errors stem from retrieval failures and their underlying causes. We conduct error attribution analysis and two-stage ablation studies across five datasets using two representative closed-source LLMs, with human-annotated gold-standard evidence as ground truth. Our key finding—novel and empirically validated—is that prediction errors are strongly coupled with retrieval errors; however, retrieval failure is primarily attributable not to model comprehension deficits, but rather to suboptimal evidence quality (e.g., low clarity or incompleteness). Crucially, improving retrieval accuracy yields significant gains in final prediction performance. These results provide foundational theoretical support and actionable optimization directions for evidence-retrieval–based downstream tasks.
This work addresses the challenge of efficiently selecting evidence in multi-hop retrieval-augmented generation (RAG) systems under fixed context-length constraints, where conventional retrieval metrics poorly predict answer generation quality. The authors propose an answer-in-context diagnostic metric and formulate context construction as a budget-constrained monotone submodular maximization problem, jointly optimizing relevance, query coverage, representativeness, and diversity. Evaluated on HotpotQA with a 160-token budget, their approach achieves up to a 5.1 F1 improvement over strong baselines such as MMR when paired with a 3B reader. However, this advantage diminishes with increasing model scale—vanishing at 7B and reversing at 14B—a performance boundary consistently explained by the proposed answer-in-context metric.
Existing evaluation metrics struggle to accurately assess whether long-context or retrieval-augmented language models genuinely utilize evidence, often conflating memorization, superficial citation, and substantive integration. This work proposes a four-condition diagnostic protocol—comprising no-evidence, full-context, retrieved-evidence, and oracle-evidence settings—to disentangle evidence utilization into four diagnosable dimensions for the first time. It introduces the ONCU metric to quantify the degree to which models recover the performance advantage afforded by oracle evidence. Through carefully matched experimental designs, effective denominator group filtering, and multidimensional audit metrics, the study evaluates five families of open-source models across 18,000 predictions. Results reveal that synthetic tasks are primarily limited by failures in leveraging full context, whereas real multi-hop tasks suffer from insufficient retrieval chain coverage—a distinction consistently corroborated by ONCU scores.
Large language models lack explicit mechanisms to refer to specific spans in the input text, leading to inconsistent performance with existing span annotation prompting strategies. This work systematically examines three categories of approaches: input tagging, numerical indexing, and content matching, and proposes LogitMatch—a novel constrained decoding method that enforces alignment between model outputs and valid input spans in logit space to address the inconsistency inherent in content matching. Experiments across four diverse tasks demonstrate that LogitMatch significantly outperforms existing content matching methods and, in certain settings, surpasses other strategies, while also confirming that input tagging remains a robust baseline.
This work addresses a key challenge in multi-hop retrieval-augmented generation (RAG): disentangling whether performance bottlenecks stem from missing supporting evidence or the reader’s inability to effectively utilize available evidence. To this end, the authors introduce the concept of an “evidence interface” and, for the first time, systematically decouple the impact of missing support chains from evidence interface effects by evaluating adapter-trained readers across three multi-hop QA benchmarks with annotated support chains. Using original contexts, retrieved passages, and oracle-supported inputs, they demonstrate that a support-supervised ranker significantly improves support coverage on 2Wiki and MuSiQue, recovers original-context performance at substantially lower prompting costs, and approaches the upper bound set by gold support annotations.
This study addresses the confounding effects of metadata, structured representations, and retrieval mechanisms in current RAG systems, which often combine multiple context-augmentation strategies, obscuring their individual contributions to answer quality. Through controlled experiments across six benchmarks, four models, and five augmentation levels—totaling over 24,000 evaluations—the work reveals that increased contextual richness does not necessarily improve accuracy. It introduces the “tractability hierarchy” theory, emphasizing that context must align with model capacity. The findings demonstrate that most augmentation strategies actually degrade performance; however, when metadata and retrieval strategies are carefully matched to a model’s capabilities, smaller models can outperform state-of-the-art large models by up to 19 F1 points on specific tasks, challenging the prevailing RAG design paradigm centered on stacking metadata.
This work addresses document-level conspiracy theory detection by proposing a joint framework that integrates multi-label span classification with sequence classification. For extracting conspiracy-related markers—such as roles and actions—the approach formulates the task as boundary-aware multi-label span classification, incorporating IoU-based positive labeling, hard negative sampling, and an inclusion-aware non-maximum suppression strategy, while distinguishing between entity-like and abstract roles. Document-level classification is performed using a RoBERTa model enhanced with label smoothing. Evaluated on SemEval-2026 Task 10, the method achieves 7th place in Subtask 1 (macro F1 = 0.2251) and 11th place in Subtask 2 (weighted F1 = 0.7694), demonstrating the effectiveness of the proposed techniques.
This work identifies a paradigm-level flaw in hard prompt compression: by independently selecting high-scoring text spans, it often discards semantically dependent content, leading to dangling references—where retained passages lack definitions of removed entities and thus break multi-hop reasoning. To address this, the authors propose a lightweight, unsupervised method that scores text blocks using Qwen3 embeddings, employs a referential integrity classifier to detect critical missing sentences, and restores their semantic completeness via contextual reinsertion. On HotpotQA, automatically reinserting such key sentences improves accuracy by 4.7 points; when human-curated supporting paragraphs are reinserted, performance gains reach 29–34 percentage points, substantially narrowing the gap with full-context models.
Understanding visually rich multi-page documents poses significant challenges due to sparse, cross-page distributed evidence that often exceeds model context windows. This work systematically attributes performance bottlenecks to three error modes—representation, selection, and reasoning—and quantifies the impact of each through modular intervention experiments, wherein two components are fixed while one is perturbed. The study reveals that although visual information is essential, it cannot substitute for textual content; omitting critical pages substantially degrades accuracy, whereas irrelevant pages have limited effect. Furthermore, current reasoning modules struggle to effectively integrate cross-page evidence, yet their performance can be markedly improved through carefully designed prompts.