Answer Presence Drives RAG Rewriting Gains

Yuejie Li12 Yueying Hua Ke Yang Li Zhang Yueping He
Ruiqi Li Bolin Chen Tao Wang Bowen Li Chengjun Mao
Ant Group
{liyuejie.lyj, huayueying.hyy, zhulang.yk, lier.zl, heyueping.hyp,
liruiqi.lrq, bolin.cbl, taoran.wt, zhikong.lbw, chengjun.mcj}@antgroup.com


Abstract

Retrieval-augmented QA pipelines often route retrieved passages through an LLM rewriter before a smaller reader, lifting F1 by tens of points on multi-hop benchmarks; this gain is typically credited to improved evidence quality. We ask whether that lift is causally driven by the gold answer string appearing in the rewritten context rather than by curation per se, using a controlled intervention audit. For each rewritten context we re-run the reader after one of four controlled edits to the compile output: removing the gold answer span, replacing a length-matched random non-answer span (placebo), or injecting the gold into rewrites where it was absent (at the prefix or at a midpoint sentence boundary). Across twelve completed (cell, baseline) intervention runs spanning three reader families (Qwen2.5-7B, Qwen3.5-35B, GLM-4.7), two datasets (HotpotQA, 2WikiMultihopQA), and three compiler arrangements (MA-only, MB-only, MA\(+\)verify), removing the gold answer drops reader F1 by \(28\) to \(64\) points beyond the length-matched placebo on paired answer-in-compile strata, and prepending the gold into rewrites that lacked it raises F1 by \(+0.7\) to \(+9.7\) points in \(10\) of \(12\) (cell, baseline) combinations. A companion five-sentinel audit shows the conventional single-[MASK] probe is itself sentinel-fragile: on 2Wiki it reports a \(+4.12\) F1 “non-leakage residual” that flips to \(-3.33\) to \(-7.81\) F1 under four alternative sentinels and fails an equivalence test for three of those four (\(1/4\) pass). We do not propose a new rewriter or mitigation; we release the intervention runner and the sentinel panel so that other rewriter-gain claims can be tested against the same standard.

1 Introduction↩︎

Retrieval-augmented question answering (RAG) pipelines increasingly route retrieved passages through a stronger LLM rewriter—a compiler, summarizer, or compressor—before a smaller reader produces the final answer [1][3]. On multi-hop benchmarks the rewriter lifts reader F1 by tens of points, and the lift is typically credited to improved evidence quality: better organization, denoising, multi-hop chaining. We ask a more basic question: how much of the lift is caused by the gold answer string being surfaced in the rewritten context, rather than by curation alone? In these same multi-hop settings, the rewriter also surfaces the gold answer string in roughly \(80\%\) of records, so the two explanations—curation and answer-string surfacing—are observationally entangled in the aggregate F1 gains used to justify the pipeline.

The conventional way to break this entanglement is to substring-mask the gold answer in the rewritten context with a sentinel token, most commonly [MASK], and re-run the reader: a collapse to raw-retrieval F1 is taken as evidence of answer-string leakage, while a significantly positive residual is taken as evidence of a non-leakage channel. We show in §4 that this single-sentinel probe is itself unreliable. On 2WikiMultihopQA the [MASK] leaves a \(+4.12\) F1 residual over raw retrieval, but under four alternative sentinels ([REMOVED], a natural-language deletion phrase, a generic word, and a symbol string) on the same paired examples, the residuals instead range from \(-3.33\) to \(-7.81\) F1, and the equivalence criterion is met for only one of the four sentinels; the apparent residual is largely a [MASK]-token artifact. A masking diagnostic that can flip sign with the choice of sentinel cannot, by itself, separate answer-string surfacing from genuine evidence curation.

We therefore replace single-sentinel masking with a controlled intervention audit. For each rewritten context we re-run the reader under four controlled edits: remove the gold answer span, replace a length-matched random non-answer span as a placebo, or insert the gold answer string into rewrites that lack it, either at the prefix or at a midpoint sentence boundary. The remove-minus-placebo contrast on the paired answer-in-compile stratum is a direct, on-distribution estimate of the causal dependence of reader F1 on the gold answer string being present. On the complementary subset, insertion tests whether restoring the gold answer string recovers F1.

Across twelve evaluated (cell, baseline) intervention runs, spanning three reader families (Qwen2.5, Qwen3.5, GLM), two datasets (HotpotQA, 2WikiMultihopQA), and three compiler configurations (MA-only, MB-only, MA\(+\)verify), removing the gold answer drops reader F1 by \(28\) to \(64\) points beyond the length-matched placebo, and prepending the gold to rewrites that lacked it raises F1 by \(+0.7\) to \(+9.7\) points in \(10\) of \(12\) (cell, baseline) combinations.

We make three contributions. First, we present the first controlled answer-presence intervention audit for compile-then-read RAG. The remove / placebo / insert design yields a remove-minus-placebo F1 drop of \(28\) to \(64\) points across twelve (cell, baseline) intervention runs, and reveals that insertion effects depend on position. Second, we give a negative result for single-sentinel masking diagnostics: in a five-sentinel audit on 2WikiMultihopQA, the positive [MASK] residual reverses under all four alternative sentinels. Third, we release a reusable audit kit, including an intervention runner and a sentinel panel, so that future rewriter-gain claims can be tested against a common standard. §2 defines the setup, §3 specifies the audit protocol, §4 reports the results, and §5 discusses what the interventions identify and what they do not.

2 Setup↩︎

2.0.0.1 Pipeline.

A QA question \(q\) is answered from a long retrieved context \(C_q\) by a reader \(\mathrm{Ma}\) in one of four settings: B\(_1\) raw retrieval (reader sees \(C_q\)); B\(_2\) MA-only compile (\(\mathrm{MA}(C_q,q)\)); B\(_3\) MB-only compile, with \(\mathrm{MB}\) a different model family from \(\mathrm{MA}\); B\(_4\) MA compile then \(\mathrm{MB}\)-verify, which may rewrite unsupported sentences.

2.0.0.2 Cells.

The audit is run on four (reader, compiler-family, dataset) cells: S1 (Qwen2.5-7B / Qwen2.5-72B / HotpotQA), S2 (Qwen2.5-7B / Qwen2.5-72B / 2Wiki), S3 (GLM-4.7 / GLM-5 / HotpotQA), S5 (Qwen3.5-35B / Qwen3.5-27B / HotpotQA), with DeepSeek-V3 as \(\mathrm{MB}\) in every cell. Each cell exercises B\(_1\)–B\(_4\) on the same \(1{,}000\)-question subset. The suite labels follow our internal run IDs: S4 is a verifier-variant pilot reported only in the appendix and is not part of the main answer-presence intervention grid. The four cells cover three reader families, two datasets, and two \(\mathrm{MA}\) families, so that no single contrast in §4 is identified by a single (reader, compiler) combination.

2.0.0.3 Datasets and decoding.

HotpotQA distractor split [4] and 2WikiMultihopQA [5] are both multi-hop benchmarks whose distractor pools already contain every gold supporting paragraph for every evaluated query, so compile gain cannot be attributed to compensating for missing retrieved evidence. Records with gold strings shorter than two characters are excluded. Token-level F1 is computed against the original gold [4]. Across cells, the compile output surfaces the gold answer string in roughly \(80\%\) of records; this answer-surfacing rate is the observational entanglement the intervention audit is designed to break. Reader: \(\texttt{temperature}{=}0.01\), \(\texttt{max\_tokens}{=}512\); compilers: \(\texttt{temperature}{=}0.2\), \(\texttt{max\_tokens}{=}2048\).

3 Audit Protocol↩︎

The audit has two layers. The causal-intervention layer (§3.1) is the main test of whether gold-answer presence in the rewritten context causally drives reader F1. The sentinel layer (§3.2) controls a separate concern: the same intervention can mislead if its implementation (e.g.the choice of mask token) leaks exploitable structure to the reader.

3.1 Causal Interventions↩︎

3.1.0.1 Motivation.

Measuring how reader F1 changes when the rewriter is added is observational: in a typical cell, B\(_2\) both re-organises retrieved evidence and surfaces the gold answer string into the rewritten context. To estimate the on-distribution causal effect of answer presence we must edit the rewritten context to add or remove the gold while holding everything else as close to constant as possible, and we must distinguish that edit’s effect from the effect of any edit of the same size.

3.1.0.2 Design.

For each B\(_2\)/B\(_3\)/B\(_4\) compile output \(c\) we apply one of four edits: remove every case-insensitive match of the gold answer in \(c\) with [MASK]; placebo replace a length-matched random non-answer span (deterministic seed \(1729\)) with [MASK]; insert_prepend prepend “Note: <gold>.” to \(c\); insert_mid insert “<gold>.” at the midpoint sentence boundary. The remove/placebo edits target \(\mathtt{ans\_in\_compile}{=}1\); the insert edits target \(\mathtt{ans\_in\_compile}{=}0\).

3.1.0.3 Stratification.

Each record is tagged with two binary flags: \(\mathtt{ans\_in\_b1}\in\{0,1\}\) (the gold appears in raw \(C_q\)) and \(\mathtt{ans\_in\_compile}\in\{0,1\}\). The compile output moves a record into one of four transition buckets, \(\mathtt{(ans\_in\_b1, ans\_in\_compile)} \in \{0{\rightarrow}0, 0{\rightarrow}1, 1{\rightarrow}1, 1{\rightarrow}0\}\). The remove and placebo interventions apply only where \(\mathtt{ans\_in\_compile}=1\); the insert interventions apply only where \(\mathtt{ans\_in\_compile}=0\). Within each (cell, baseline, intervention) we report the F1 mean and a paired \(\Delta\) against the unperturbed compile output, computed by bootstrap (\(1{,}000\) resamples, seed \(42\), \(95\%\) CI).

3.1.0.4 Identification.

Both remove and placebo edit a span of identical word count from the same rewriter output and differ only in whether the deleted content is the gold answer. We therefore read \(\Delta_{\text{causal}}=\Delta_{\text{remove}}-\Delta_{\text{placebo}}\) on the \(1{\rightarrow}1\) stratum (\(\mathtt{ans\_in\_b1}{=}\mathtt{ans\_in\_compile}{=}1\)), where both perturbations apply and the gold is already retrievable from raw context, and interpret it as the average treatment effect of gold-answer presence on reader F1 in \(1{\rightarrow}1\) contexts. Positive \(\Delta\) on the \(0{\rightarrow}0\) insert buckets is the complementary estimate of how much F1 the rewriter would have provided had it surfaced the answer. Because both arms write [MASK] into \(c\) and differ only in whether the masked span is the gold, the common sentinel-token main effect cancels in \(\Delta_{\text{remove}}-\Delta_{\text{placebo}}\), so the sentinel-fragility concern of §3.2 applies to single-sentinel leakage residuals but not to \(\Delta_{\text{causal}}\) itself.

3.2 Sentinel-Fragility Audit↩︎

3.2.0.1 Motivation.

A sentinel the reader can exploit would produce a spurious “non-leakage residual” in the older mask-and-see literature and, to the extent that its effect interacts with the surrounding context rather than acting only as a common additive shift, could leak a second-order term into \(\Delta_{\text{causal}}\) even after the main-effect cancellation of §3.1. We audit this separately on the \(\mathtt{ans\_in\_compile}{=}1\) stratum of cells S1 and S2, following the sentinel-ablation protocol in scripts/preregistration_99c_
[1]sentinel_ablation.md.

3.2.0.2 Design.

Five replacement tokens are applied to the same paired stratum: MASK [MASK] (the conventional choice), REMOVED [REMOVED] (bracketed sentinel without standard placeholder semantics), NATURAL “the answer was removed” (natural-language deletion), WORD thing (generic noun), and SYMBOL ### (symbol string). A length-matched PLACEBO replaces a random non-answer span of equal word count with [MASK].

3.2.0.3 Equivalence criteria.

C2a (sentinel equivalence). A non-[MASK] sentinel passes if its paired \(\Delta\) against [MASK] has CI containing zero, or \(|\Delta|<1.0\) F1, or \(|\Delta|<0.20\times\) the original [MASK]-vs-B\(_2\) effect on the same stratum; the audit passes if \(\geq 3/4\) alternative sentinels pass, otherwise the [MASK] residual is judged sentinel-fragile. C2b (placebo). The B\(_2\)-vs-PLACEBO paired \(\Delta\) has CI containing zero or \(|\Delta|<0.50\times\) the original effect, confirming that any masking-side F1 collapse is answer-specific rather than perturbation-generic.

4 Results↩︎

4.0.0.1 Causal \(\Delta\) on the \(1{\rightarrow}1\) stratum.

Table 1 reports the headline quantity: for each (cell, baseline), the paired remove and placebo \(\Delta\)s on the \(1{\rightarrow}1\) stratum, and their difference \(\Delta_{\text{causal}}=\Delta_{\text{remove}}-\Delta_{\text{placebo}}\). Across the twelve (cell, baseline) intervention runs—three baselines per reader for S1, S2, S3, S5—removing the gold answer drops reader F1 by \(37\) to \(65\) points, the length-matched placebo drops F1 by only \(0\) to \(13\) points (and is mildly positive in S3 and S5), and \(\Delta_{\text{causal}}\) ranges from \(-28.2\) (S1, B\(_2\)) to \(-64.1\) (S3, B\(_2\)) F1. All twelve \(\Delta_{\text{causal}}\) values have the same sign and exceed \(25\) F1 in magnitude. The S5 cell (Qwen3.5-35B reader) also has a mean \(\Delta_{\text{placebo}}\) that is mildly positive (\(+1.9\) to \(+4.2\) F1), which strengthens the contrast: deleting a same-sized non-answer span is not on average harmful in that cell, yet deleting the gold answer collapses F1 by tens of points.

3pt

Table 1: Causal-intervention audit on the \(1{\rightarrow}1\) stratum(\(\mathtt{ans\_in\_b1}{=}\mathtt{ans\_in\_compile}{=}1\)). \(\Delta_{\text{rm}}\) and\(\Delta_{\text{pl}}\) are paired F1 deltas (perturbed \(-\) originalcompile) for the remove and placebo interventions respectively;\(\Delta_{\text{causal}}=\Delta_{\text{rm}}-\Delta_{\text{pl}}\) isthe same-stratum causal estimate, with \(95\%\) paired bootstrap CI(\(1{,}000\) resamples, seed \(42\)) over the per-qid difference on the\(n_{\text{pair}}\) qids where both arms applied. All values are F1percentage points (\(\times 100\)).
Cell B \(n_{\text{pair}}\) \(\Delta_{\text{rm}}\) \(\Delta_{\text{pl}}\) \(\Delta_{\text{causal}}\) [95% CI]
S1 B\(_2\) 598 \(-40.7\) \(-12.5\) \(\mathbf{-28.2}\) \([-31.1,-25.3]\)
S1 B\(_3\) 549 \(-44.2\) \(-11.4\) \(\mathbf{-32.8}\) \([-36.1,-29.7]\)
S1 B\(_4\) 565 \(-37.3\) \(-8.6\) \(\mathbf{-28.7}\) \([-31.9,-25.6]\)
S2 B\(_2\) 808 \(-44.9\) \(-12.6\) \(\mathbf{-32.3}\) \([-34.9,-29.8]\)
S2 B\(_3\) 834 \(-39.6\) \(-6.3\) \(\mathbf{-33.3}\) \([-35.6,-31.1]\)
S2 B\(_4\) 788 \(-38.8\) \(-8.1\) \(\mathbf{-30.7}\) \([-33.3,-28.2]\)
S3 B\(_2\) 745 \(-65.3\) \(-1.2\) \(\mathbf{-64.1}\) \([-67.2,-61.4]\)
S3 B\(_3\) 700 \(-48.6\) \(+0.7\) \(\mathbf{-49.4}\) \([-52.7,-46.1]\)
S3 B\(_4\) 737 \(-60.5\) \(+0.3\) \(\mathbf{-60.8}\) \([-64.0,-57.8]\)
S5 B\(_2\) 822 \(-37.1\) \(+3.8\) \(\mathbf{-41.0}\) \([-43.7,-38.1]\)
S5 B\(_3\) 754 \(-44.3\) \(+4.2\) \(\mathbf{-48.5}\) \([-51.5,-45.5]\)
S5 B\(_4\) 766 \(-47.3\) \(+1.9\) \(\mathbf{-49.1}\) \([-52.4,-46.0]\)

4.0.0.2 Insertion in the \(0{\rightarrow}0\) bucket.

Prepending “Note: <gold>.” to compile outputs that lacked the gold answer raises reader F1 by a positive \(\Delta\) in \(10/12\) cell–baseline combinations (range \(+0.7\) to \(+9.7\) F1, with S1 and S5 clustered near \(+8\) to \(+10\) in B\(_2\)/B\(_3\) runs and S3 showing a smaller \(+2\) to \(+6\) effect). Inserting the same string at the midpoint sentence boundary instead of the prefix gives a mostly non-positive \(\Delta\) (range \(-13.3\) to \(+5.5\) F1, \(9/12\) negative), so the reader’s use of an injected gold is position-sensitive: prefix-injected gold lifts F1 in the direction that removing the gold lowered it, but mid-context injection does not.

4.0.0.3 Sentinel-fragility (companion).

Table 2 reports the audit on S1 and S2. On S1, all five sentinels collapse post-mask F1 below raw retrieval and \(4/4\) alternatives pass C2a (sentinel-robust). On S2 the [MASK] sentinel reports a \(+4.12\) F1 “non-leakage residual” that the four alternatives invert to between \(-3.33\) and \(-7.81\) F1 (\(1/4\) pass), judging the residual a [MASK]-token artifact. Both cells pass C2b. Because \(\Delta_{\text{causal}}\) in Table 1 is computed against the matched placebo and not against the [MASK]-residual, it does not inherit this sentinel-token exposure.

2.5pt

Table 2: Sentinel-fragility audit on cells S1 and S2 (paired\(\mathtt{ans\_in\_compile}{=}\mathrm{True}\) strata), token-F1\(\times 100\). \(^{*}\) marks \(95\%\) bootstrap CI excluding zero;\(^{\dagger}\) the PLACEBO \(\Delta\) column is reported vs B\(_2\) sothat C2b directly compares perturbation to compile. C2a passes if\(\geq 3/4\) alternative sentinels have \(\Delta\) vs [MASK]with \(95\%\) CI containing zero, \(|\Delta|<1.0\) F1, or \(|\Delta|<0.20\times\) the original [MASK]-vs-B\(_2\) effect; C2bpasses if the B\(_2\)-vs-PLACEBO \(\Delta\) has \(95\%\) CI containingzero or \(|\text{B2}-\text{PLACEBO}|<0.50\times\) the same effect.This table reports the sentinel-layer audit; the causal layer isTable 1.
HotpotQA \(N{=}477\) 2Wiki \(N{=}829\)
2-3 (lr)4-5 Condition F1 \(\Delta_{\text{B1}}\) F1 \(\Delta_{\text{B1}}\)
B1 raw 23.93
17.52
B2 compile 54.38 \(+30.45\) 62.15 \(+44.64\)
19.95 \(-3.98^{*}\) 21.63 \(+4.12^{*}\)
15.08 \(-8.85^{*}\) 13.21 \(-4.31^{*}\)
NATURAL 17.25 \(-6.67^{*}\) 11.16 \(-6.36^{*}\)
WORD 14.86 \(-9.07^{*}\) 9.71 \(-7.81^{*}\)
SYMBOL 17.34 \(-6.59^{*}\) 14.19 \(-3.33^{*}\)
PLACEBO\(^{\dagger}\) 50.64 \(-3.74^{*}\) 60.22 \(-1.93^{*}\)
C2a sentinel-equiv. PASS (4/4) FAIL (1/4 pass)
C2b placebo PASS PASS

4.0.0.4 Identity sanity check.

We first rule out rerun instability as an explanation. When the gold answer is absent from the compiled context (\(\mathtt{ans\_in\_compile}{=}0\)), the remove edit changes nothing. Rerunning the reader on these unchanged contexts reproduces the original compile F1, with median per-question \(|\Delta|{=}0.000\) on both datasets. The intervention deltas are therefore not artifacts of a second reader call.

5 Discussion↩︎

Across twelve (cell, baseline) intervention runs, the remove-minus-placebo \(\Delta_{\text{causal}}\) in Table 1 lies in \([-64.1,-28.2]\) F1 with the same sign in every cell; even accepting the upper-end placebo collapse as residual confounding, the gold answer is a necessary input to the bulk of the F1 lift the rewriter delivers on these multi-hop benchmarks. The \(0{\rightarrow}0\) insertion results (prefix positive in \(10/12\) (cell, baseline) combinations, midpoint mostly non-positive: \(9/12\) negative) are the symmetric statement: when the rewriter fails to surface the gold, prefix-injecting it recovers between \(+0.7\) and \(+9.7\) F1, a nontrivial fraction of the \(\sim\!30\) F1 B\(_2\) lift. We do not interpret these as the entire story—rewriters plausibly also de-clutter evidence—but they bound how much of the lift can be credited to “curation quality” without further controlled evidence: most of it cannot. The sentinel-fragility audit (Table 2) rules out a simpler “do the older masking diagnostic bigger” rebuttal: on 2Wiki the [MASK] probe’s positive “non-leakage residual” flips under four alternative sentinels and fails C2a, so the design’s reliance on a remove-vs-placebo paired contrast—rather than on a [MASK]-residual vs raw retrieval—is necessary. For deployment audits, claims of a non-answer-string compile channel should be paired with both layers (sentinel + placebo on the masking side; remove vs.placebo on the \(\mathtt{ans\_in\_compile}{=}1\) stratum); the released audit kit (scripts/p0_intervention.py and the sentinel runner) supplies the standard.

6 Related Work↩︎

6.0.0.1 Leakage and perturbation in QA/RAG.

Train–test overlap and exploitation of contaminated data have been documented and debated in open-domain QA [6][8]; in RAG, entity perturbation [9], when-does-retrieval-help analyses [10], [11], and noise-sensitivity audits [12], [13] characterize context-vs-parametric reliance. Counterfactual data [14], contrast sets [15], behavioral testing [16], and distractor-sensitivity probes [17] provide the methodological tradition our placebo condition continues. The missing piece our paper supplies is an in-passage remove-vs-placebo intervention on the rewriter’s output, on the same paired stratum, identifying the causal effect of answer-string surfacing.

6.0.0.2 Sentinel sensitivity and statistical practice.

Prompt- and format-fragility is well-attested [18][22]; [23] treats [MASK] as an information-gathering token in pre-training, the only close neighbour to our sentinel-flip result. On the statistical side, we follow standard rigour arguments [24][26]; paired bootstrap CIs adapt [27], and the equivalence thresholds follow TOST [28]. We combine these tools into a single audit for one specific RAG failure mode.

Limitations↩︎

The intervention audit covers four (reader, compiler, dataset) cells—three reader families, two datasets, three compiler arrangements—over twelve (cell, baseline) intervention runs. We do not claim \(\Delta_{\text{causal}}\) magnitudes transfer outside this grid. The remove/insert interventions are string-level: aliases, paraphrasings, and entity-mediated cues are not edited, so a rewriter that consistently restates the gold in different words would still pass the remove condition (paraphrastic leakage is not detected). Our scope is restricted to online, per-query rewriting; in offline LLM-curated corpora [29][33] the rewriter is query-agnostic and cannot selectively surface a specific gold span, so our magnitudes do not transfer, though we view analogous answer-removal/placebo controls as a reasonable precondition for attributing such gains to curation quality. We do not propose a new rewriter, mitigation, or alias-aware masking scheme; the contribution is diagnostic.

6.0.0.3 Reproducibility.

Exact prompts, decoding parameters, model endpoint identifiers, and the suite-ID to log-file mapping are listed in Appendix 19. The intervention runner and sentinel panel are released as part of the audit kit (scripts/p0_intervention.py and the sentinel-ablation runner).

Supplementary Material↩︎

This appendix collects supplementary experiments around the controlled intervention audit reported in the main text. None is required for the main-text tables, but together they provide the wider evidence base that motivated and constrains it. The sections cover: pipeline-level numbers — full main-suite results (§7), reader-scale attenuation (§8), and cross-rewriter sweeps (§9); mechanism probes — verification-mode ablations (§10), length-controlled regressions on answer preservation (§11), the V\(_5\)-vs-Control length-quartile breakdown (§12), per-question oracle headroom and the selection gap (§13), and the question-blind containment audit (§14); and descriptive / reproducibility material — operator-by-reader pattern (§15), the full answer-mask ablation and dashboard cross-walk (§16), the 2Wiki alias spot-check (§17), prompts (§18), and model endpoints with run-ID and log-file mapping (§19).

6.0.0.4 Suite heterogeneity warning.

The appendix collates experiments that differ from the main-text answer-mask cells along several axes; their absolute numbers are not interchangeable with the main text. The main-text S1/S2 results (Table 2) use the B\(_2\) compile rewriter on a paired \(1{,}000\)-question subset of each dataset with the Qwen2.5-7B reader at \(\texttt{temperature}{=}0.01\). The appendix departs from this baseline in three ways: (i) the scale sweep (§8) and the length / oracle / OLS analyses (§§1113) substitute the V\(_5\) quote-first rewriter and run on the full \(N{=}7{,}405\) HotpotQA / \(N{=}1{,}005\) Qasper sets; (ii) the cross-rewriter sweep (§9) additionally swaps the rewriter model; (iii) the verification-mode ablations (§10) add a verifier stage. The resulting differences in rewriter setting, sample, and reader produce different absolute F1s (e.g.raw HotpotQA \(=23.0\) on the main-text 1k subset but \(65.13\) on the cross-rewriter full set), so appendix tables should be read for their within-cell deltas, not against main-text numbers. The S1/S2/S3/S5 cells in §7 correspond to the suites used in the main-text intervention audit; the masked-ablation tables in §16 share the S1/S2 answer-mask baseline.

7 Full Main-Suite Pipeline Results↩︎

Table 3 reports the full pipeline F1 across all suites we ran (S1–S5 on HotpotQA/2Wiki, Q1/Q2 on Qasper). The short-paper main text uses S1 (Qwen-7B / HotpotQA), S2 (Qwen-7B / 2Wiki), S3 (GLM-4.7 / HotpotQA), and S5 (Qwen3.5-35B / HotpotQA) for the intervention audit, and S1, S2 for the sentinel-fragility companion. The remaining suites (S4 verifier pilot, Q1, Q2 on Qasper) document that the per-cell rewriter effect can shrink toward zero or flip sign as the reader strengthens or the dataset changes; this is the broader empirical context for the sentinel fragility we report on HotpotQA vs.2Wiki.

3pt

Table 3: Main-suite pipeline effects across reader regimes. \(^{*}\)S4uses a GLM-5 verifier in place of DeepSeek-V3. Compile (B\(_2\)) helpsa small Qwen2.5 reader on multi-hop QA (S1/S2), is near-null ornegative for a strong GLM reader (S3/S4), helps a Qwen3.5-familyreader (S5), and slightly hurts both 7B and 72B Qwen2.5 readers onQasper (Q1/Q2). Numbers from full-suite logs;logs/S{1..5}_*.jsonl, logs/Q{1,2}_*.jsonl.
Suite Dataset Reader B\(_1\) B\(_2\) \(\Delta\)F1
S1 HotpotQA Qwen2.5-7B 0.230 0.502 \(+0.272\)
S2 2Wiki Qwen2.5-7B 0.153 0.540 \(+0.387\)
S3 HotpotQA GLM-4.7 0.737 0.721 \(-0.016\)
S4 HotpotQA GLM-4.7\(^{*}\) 0.726 0.705 \(-0.021\)
S5 HotpotQA Qwen3.5-35B 0.399 0.477 \(+0.078\)
Q1 Qasper Qwen2.5-7B 0.383 0.367 \(-0.015\)
Q2 Qasper Qwen2.5-72B 0.403 0.378 \(-0.025\)

8 Reader-Scale Attenuation↩︎

To isolate a within-family reader effect, we hold the rewriter setting fixed (V\(_5\) quote-first, Qwen2.5-72B rewriter) and sweep Qwen2.5 reader scale from 0.5B to 72B on both HotpotQA and Qasper. Table 4 reports, at each reader scale, the paired F1 delta between the rewriter output and raw retrieval.

6pt

Table 4: V\(_5\) quote-first rewriter setting held fixed while Qwen2.5reader scale is swept. HotpotQA: positive at every scale; effectbroadly attenuates with reader strength (non-monotonic at the smallend: 3B peaks at \(+0.212\) above 0.5B’s \(+0.197\)). Qasper: the effectis negative at every scale from 1.5B through 72B except 3B. The signof the rewriting effect is determined by dataset \(\times\) readerrather than by the rewriter alone. HotpotQA: \(N{=}7{,}405\) per scale;Qasper: \(N{=}1{,}005\) per scale; both paired.
Reader scale HotpotQA \(\Delta\)F1 Qasper \(\Delta\)F1
(V5\(-\)Raw) (V5\(-\)Raw)
Qwen2.5-0.5B \(+0.1966\) \(+0.0257\)
Qwen2.5-1.5B \(+0.1465\) \(-0.0118\)
Qwen2.5-3B \(+0.2121\) \(+0.0105\)
Qwen2.5-7B \(+0.0931\) \(-0.0154\)
Qwen2.5-14B \(+0.0260\) \(-0.0562\)
Qwen2.5-32B \(+0.0133\) \(-0.0071\)
Qwen2.5-72B \(+0.0103\) \(-0.0250\)

Two consequences for the main-text intervention. First, the attenuation curve in HotpotQA explains why the main-text mask_applied=True stratum compile lift (Table 2, \(+30.45\) F1 for Qwen2.5-7B) is much larger than the equivalent lift for a 72B reader (a near-null \(+1.03\) F1 from the sweep): the audit verdicts are therefore specific to the 7B reader cell, and we do not extrapolate them across reader scales. Second, the Qasper column shows that a uniform compile policy already fails the sign-monotonicity test on a third dataset; the answer-mask intervention is not performed on Qasper because its free-form, abstractive answers do not admit clean substring masking (Limitations).

9 Cross-Rewriter Sweep: Stronger Rewriter Helps but Does Not Close the Reader-Dataset Gap↩︎

One alternative account of the negative Qasper lifts in Appendix 8 is that the rewriter is underpowered. We test this by swapping Qwen2.5-72B-Instruct for Qwen3-235B-A22B-Instruct-2507 under the same question-conditioned Control rewriter setting and the same reader (Qwen2.5-7B). The stronger rewriter improves both datasets: on HotpotQA, Control rewrite F1 moves from \(74.86\) to \(75.50\) (\(+10.37\) over the raw baseline of \(65.13\)); on Qasper, from \(38.50\) to \(40.94\) (\(+2.69\) over \(38.25\)). Rewriter scale is not irrelevant. With the same reader, however, the HotpotQA / Qasper gap persists: HotpotQA remains a high-gain setting and Qasper remains a low-gain one, ruling out the strongest version of a writer-only account in the range we can measure. The mediating factor must lie outside rewriter capacity alone — which is consistent with the dataset-dependent residual reported in the main text under a single rewriter.

10 Verification-Mode Ablations↩︎

The main-text intervention grid covers B\(_2\), B\(_3\), and B\(_4\). For completeness, this section ablates the verification mode applied to the compiled context: Table 5 reports three downstream verification variants — hard rewriting (B\(_4\), the verifier may delete or rewrite sentences from the compile output), soft annotation (B\(_{4s}\), the verifier tags but does not modify), and label-only verification (B\(_{4lr}\), the verifier classifies each compile-output sentence as supported or unsupported but copies it verbatim either way).

3pt

Table 5: Verification-mode ablations on HotpotQA. AblF and AblF2contrast Qwen2.5 versus Qwen3.5 reader families; AblE3 isolates thelabel-only variant. Soft annotation (B\(_{4s}\)) is worse than hardrewriting (B\(_4\)) in both reader families: keeping more text is notwhat helps. Label-only verification (B\(_{4lr}\)) recovers most of thehard-rewrite loss against compiler-only, i.e.much of the verifierdamage comes from rewriting compiler sentences rather than fromjudging them. Hallucination rates are LLM-judge diagnostics, notthe basis for the claim. \(N{=}1{,}000\) per row.
Suite Variant EM F1 Hall%
AblF, Qwen2.5 B\(_2\) compiler-only 0.287 0.499 19.1
B\(_4\) hard rewrite 0.227 0.440 18.3
B\(_{4s}\) soft annotate 0.148 0.356 18.4
AblF2, Qwen3.5 B\(_2\) compiler-only 0.266 0.480 14.9
B\(_4\) hard rewrite 0.353 0.578 15.8
B\(_{4s}\) soft annotate 0.254 0.459 13.3
AblE3, Qwen2.5 B\(_2\) compiler-only 0.270 0.487 19.7
B\(_4\) hard rewrite 0.224 0.431 17.2
B\(_{4lr}\) label-only 0.265 0.473 18.2

These ablations are reported here only as the broader experimental context within which the answer-mask intervention sits: they do not themselves identify answer surfacing as the operative mechanism. That identification is made by the main-text intervention together with the legibility regression in Appendix 11.

11 Length-Controlled Regression of Per-Question F1 on Answer Surfacing↩︎

As a correlational complement to the main-text intervention, we regress per-question F1 on (i) the rewriter setting (Baseline / Control / V5), (ii) log rewriter-output length, (iii) an answer-in-rewrite indicator (substring presence of any normalised gold alias), and setting\(\times\)length interactions, with cluster-robust SEs on qid. Table 6 and Table 7 report the coefficients for HotpotQA and Qasper across two readers each. The answer-in-rewrite indicator carries a coefficient of \(+0.29\) to \(+0.35\) at \(p<10^{-50}\) in every cell, an order of magnitude larger than any setting-only coefficient (all \(|\hat{\beta}_{\text{setting}}| \le 0.09\)). This is the correlational counterpart to the main-text intervention: when the answer is in the rewrite the reader scores about 30 F1 points higher per question at the same rewrite length, regardless of which rewriter setting produced it.

3pt

Table 6: HotpotQA OLS: \(\mathrm{F1}\sim\mathrm{setting}+\log(\mathrm{len})+\mathrm{ans\_in}+\mathrm{setting}{\times}\log(\mathrm{len})\).
Predictor Coef SE \(p\)
Reader = Qwen2.5-7B-Instruct (\(n{=}22{,}215\), \(R^2{=}0.094\))
Setting \(=\) Control \(-0.0590\) 0.0367 \(0.108\)
Setting \(=\) V5 \(+0.0173\) 0.0352 \(0.624\)
\(\log(\text{len})\) \(-0.0579\) 0.0181 \(1.4\!\times\!10^{-3}\)
Answer-in-rewrite \(\mathbf{+0.3464}\) 0.0119 \(\mathbf{4.6\!\times\!10^{-187}}\)
Control \(\times \log(\text{len})\) \(-0.0385\) 0.0214 \(0.072\)
V5 \(\times \log(\text{len})\) \(+0.0492\) 0.0216 \(0.023\)
Reader = Qwen3-8B (\(n{=}22{,}215\), \(R^2{=}0.087\))
Setting \(=\) Control \(-0.0899\) 0.0354 \(0.011\)
Setting \(=\) V5 \(-0.0196\) 0.0343 \(0.567\)
\(\log(\text{len})\) \(-0.0685\) 0.0175 \(9.2\!\times\!10^{-5}\)
Answer-in-rewrite \(\mathbf{+0.3297}\) 0.0123 \(\mathbf{9.7\!\times\!10^{-158}}\)
Control \(\times \log(\text{len})\) \(-0.0188\) 0.0208 \(0.364\)
V5 \(\times \log(\text{len})\) \(+0.0660\) 0.0207 \(1.4\!\times\!10^{-3}\)

3pt

Table 7: Qasper OLS: same specification as Table 6,plus setting\(\times\)answer-type interactions (with the extractiveanswer type as the reference level; interaction columns omitted forspace). The coefficient on the answer-in-rewrite indicator is similarin sign and magnitude across both readers and both datasets.
Predictor Coef SE \(p\)
Reader = Qwen2.5-7B-Instruct (\(n{=}3{,}015\), \(R^2{=}0.218\))
Setting \(=\) Control \(-0.2303\) 0.0791 \(0.004\)
Setting \(=\) V5 \(-0.1794\) 0.0852 \(0.035\)
\(\log(\text{len})\) \(-0.0784\) 0.0273 \(4.0\!\times\!10^{-3}\)
Answer-in-rewrite \(\mathbf{+0.2874}\) 0.0193 \(\mathbf{5.2\!\times\!10^{-50}}\)
Reader = Qwen3-8B (\(n{=}3{,}015\), \(R^2{=}0.239\))
Setting \(=\) Control \(-0.1576\) 0.0778 \(0.043\)
Setting \(=\) V5 \(-0.0410\) 0.0852 \(0.630\)
\(\log(\text{len})\) \(-0.0657\) 0.0269 \(0.015\)
Answer-in-rewrite \(\mathbf{+0.2975}\) 0.0185 \(\mathbf{3.0\!\times\!10^{-58}}\)

12 Length-Quartile Breakdown of V5 vs.Control on HotpotQA↩︎

The interaction term \(\text{V}_5 \times \log(\text{len})\) in Table 6 is positive and significant in both HotpotQA panels. Table 8 stratifies the V5\(-\)Control delta by length quartile of the joint Control+V5 length distribution, confirming that V\(_5\) underperforms Control on short rewrites and reverses on long ones for both readers.

4pt

Table 8: Length-matched V5\(-\)Control comparison on HotpotQA, binned byquartile of the joint Control+V5 length distribution.
Bin \(n\) Avg len \(\Delta\)F1 Ctrl V5
Reader = Qwen2.5-7B-Instruct
Q1 (short) 1890 58 \(-2.55\) 79.04 76.48
Q2 1822 77 \(-1.04\) 76.75 75.71
Q3 1858 91 \(+1.33\) 73.32 74.64
Q4 (long) 1835 117 \(+0.61\) 70.25 70.86
Reader = Qwen3-8B
Q1 (short) 1890 58 \(-1.77\) 79.16 77.39
Q2 1822 77 \(-1.27\) 77.33 76.05
Q3 1858 91 \(+0.82\) 75.24 76.06
Q4 (long) 1835 117 \(+0.17\) 71.56 71.74

13 Per-Question Oracle Headroom and the Selection Gap (Qasper)↩︎

Even on Qasper, where a fixed rewriter setting does not yield reliable aggregate gains, there is substantial per-question variation in which rewrite helps. We quantify this with a per-question oracle over rewrite variants and contrast it with a representative LLM-based router that uses only the question text to select.

4pt

Table 9: Per-question oracle versus router baselines on Qasper(\(N{=}1{,}005\)). The 2-action oracle picks per question betweenControl and V5; the 6-action oracle further adds Raw, Ctrl-235B,V6, and V7. The LLM router selects within the same expandedspace.
Reader (Qasper) Qwen2.5-7B Qwen3-8B
Raw 38.25 39.50
Control freeform 38.50 39.91
V5 quote-first 36.72 39.10
LLM router (Qwen2.5-72B) 38.88 40.11
Per-question oracle (2-action) 46.63 47.72
Per-question oracle (6-action) 58.66 58.65

The 2-action oracle leaves \(+8.13\) F1 of reachable headroom over the better single policy on Qwen2.5-7B (\(+7.81\) on Qwen3-8B); the 6-action oracle bounds the reachable variation at roughly \(+20\) F1 over raw. The LLM router (Qwen2.5-72B) recovers \(+0.38\) F1 (\(p{=}0.30\)) over the better single policy and lies \(-7.75\) F1 below the 2-action oracle and \(-19.78\) F1 below the 6-action oracle (\(p{<}0.001\) on both). The selection problem is therefore nontrivial and is not solved by writer scaling: a stronger Qwen3-235B Control rewrite as single policy reaches \(40.94\) F1, which still leaves a \(+5.69\) F1 oracle gap.

14 Question-Blind Containment Audit↩︎

If question-conditioning is the operational mechanism that produces answer surfacing in the compile output, removing the question from the rewriter prompt should cut answer-string containment substantially. Table 10 reports the audit for both compilers and both multi-hop / long-document datasets.

2.5pt

Table 10: Containment audit: question-conditioned vs.question-blindrewriters. “Cont.%” = fraction of rewrites containing the goldanswer string; “Ans-only%” = fraction of rewrites under 50 tokensthat also contain it (a near-extractive form); “Len” = averagelength in tokens. Removing the question halves containment in threeof four cells and zeroes the answer-only rate in all four; blindrewrites are also nearly four times longer than the conditionedcounterparts. HotpotQA: \(N{=}7{,}405\); Qasper: \(N{=}1{,}005\) percell.
Setting Dataset Compiler Cont.% Ans-only% Len
Question-conditioned
HotpotQA Qwen2.5-72B 79.3 20.0 66.5
HotpotQA Qwen3-235B 78.4 38.8 55.9
Qasper Qwen2.5-72B 39.0 3.0 111.9
Qasper Qwen3-235B 39.7 2.0 129.6
Question-blind
HotpotQA Qwen2.5-72B 49.8 0.0 246.6
HotpotQA Qwen3-235B 54.4 0.0 305.9
Qasper Qwen2.5-72B 20.5 0.0 192.8
Qasper Qwen3-235B 24.3 0.0 244.1

15 Descriptive Operator-by-Reader Pattern↩︎

Table 11 compresses the observed sign and rough magnitude of compile (\(B_2\)) and verifier-edit (\(B_4\)) effects across the reader \(\times\) dataset cells we ran. This is descriptive only; no rule is fit, and we discourage reading any single cell as a deployment recommendation without independent in-domain validation.

3pt

Table 11: Descriptive recap of the sign and rough magnitude of eachoperator’s per-cell effect. Observational only; the per-questionoracle in Appendix 13 shows substantial within-cellvariation that this table does not capture.
Setting Compile (\(B_2\)) Verifier-edit (\(B_4\))
Weak Qwen2.5 (0.5–3B), Hotpot/2Wiki strongly helps (\(+19\) to \(+21\)) mostly hurts
Mid Qwen2.5 (7–14B), Hotpot/2Wiki helps (\(+1\) to \(+5\)) mixed
Large Qwen2.5 (72B), Hotpot/2Wiki near-null near-null
Weak Qwen2.5 (0.5–3B), Qasper small/mixed hurts
Mid+large Qwen2.5 (7B+), Qasper mostly hurts (\(-0.7\) to \(-5.6\)) mostly hurts
Qwen3.5-35B, HotpotQA helps (\(+0.078\), S5)

16 Answer-Mask Ablation: Full Table and Cross-Walk↩︎

16.0.0.1 Procedure.

For every \(B_2\) compile record on HotpotQA and 2Wiki we (i) extract the question and the compile-output context from the prompt sent to the Qwen2.5-7B reader; (ii) case-insensitively substring-replace the gold answer string in the context with the literal token [MASK], excluding records with gold length \(<2\) characters; (iii) re-render with the standard reader prompt and re-call Qwen2.5-7B (\(\texttt{temperature}{=}0.01\), \(\texttt{max\_tokens}{=}512\)); and (iv) score F1 against the original gold. We stratify on mask_applied: True when the gold string was present in the compile output (the interventional test), False when masking is the identity (sanity check).

16.0.0.2 Full table.

Table 12 adds the all and mask=False strata to the main-text [MASK] row of Table 2. The mask=False aggregates do not match the original \(B_2\) lift exactly on HotpotQA because reader rerun phrasing varies non-deterministically on yes/no questions; the per-question median absolute difference on the non-yes/no subset is \(<0.0001\) F1 (cf.the identity sanity-check paragraph in the main text).

3pt

Table 12: Full answer-mask ablation including the all-records andmask_applied=False strata that are absent from themain-text [MASK] row of Table 2. The HotpotQAmask_applied=False row is omitted because the reader’sfree-form rerun phrasing on yes/no questions (\(n{=}252\) of \(363\) inthat stratum) drifts non-deterministically between the originallogged call and the masked-rerun call, which would dominate theaggregate; on the gold-length\(\geq 3\), non-yes/no subset of the samestratum the per-question median \(|\Delta|\) is \(0.0000\) F1(Sec. 4, “Identity sanity check”). The 2Wikimask_applied=False original_f1 andmasked_f1 columns match because no yes/no rerun driftexists in that stratum.
Stratum \(n\) \(\Delta_{B_2\text{vs}B_1}\) \(\Delta_{\text{mask vs }B_1}\)
HotpotQA
all 994 \(+27.15\) \(-8.13\)
mask_applied=True 631 \(+29.75\) \(\mathbf{-5.43}\)
2Wiki
all 1000 \(+38.72\) \(+5.13\)
mask_applied=True 829 \(+44.64\) \(\mathbf{+4.12}\)
mask_applied=False 171 \(+10.04\) \(+10.04\)

17 Alias Spot-Check: Reproducibility Details↩︎

The main-text alias spot-check uses a deliberately permissive heuristic detector. For each 2Wiki mask=True record, after the gold answer string is replaced with [MASK], we test whether any of the following surface forms still appears case-insensitively in the masked compile context:

  1. The gold answer with leading “the” stripped (e.g.”the United States” \(\rightarrow\) “united states”).

  2. The last token of a multi-word gold answer, lower-cased and stripped of trailing punctuation, with length \(\geq 3\) (e.g.”Ridley Scott” \(\rightarrow\) “scott”).

  3. A capital-initial acronym of a multi-word gold answer with length \(\geq 2\), lower-cased (e.g.”National Basketball Association” \(\rightarrow\) “nba”).

  4. A 4-digit year extracted from a date-form gold (e.g.”June 12, 1987” \(\rightarrow\) “1987”).

Variants identical to the lower-cased full gold are removed; any variant shorter than 3 characters is discarded. The detector fires on a record if any variant occurs as a case-insensitive substring of the masked context.

17.0.0.1 Result.

On the \(n{=}829\) 2Wiki mask=True stratum, \(96\) records (\(11.6\%\)) are flagged. The remaining \(733\) records have masked-vs-\(B_1\) lift \(+5.20\) F1 (95% CI \([+2.67, +7.70]\), \(2{,}000\)-resample bootstrap, \(\text{seed}{=}42\)). The flagged-subset mean is \(\approx -4.13\) F1, so dropping it mechanically pulls the clean-subset mean above the \(+4.12\) F1 of the full set; we treat the clean-subset value as a robustness check, not an adjusted effect estimate.

17.0.0.2 Permissiveness.

Manual inspection of detector fires shows two recurrent patterns: (a) true alias preservation (“scott” surviving for “Ridley Scott”, “united states” for “the United States”); and (b) generic-last-token false positives (“heart” surviving for “Heart attack”, “school” for “High school”). Pattern (b) means the \(11.6\%\) figure is an upper bound on heuristically-detectable alias leakage, and the clean-subset residual is therefore an underestimate of the surviving non-answer-string component.

17.0.0.3 Reproducibility.

The full alias-spot-check script is at scripts/99d_2wiki_alias_check.py; it reads the released S2_2wiki.jsonl and S3_answer_masked_2wiki.jsonl logs, re-derives the masked context per record, applies the detector, and prints the firing rate plus the clean-subset bootstrap CI used above.

18 Prompts↩︎

18.0.0.1 Compiler (B\(_2\)/V\(_5\)).

The rewriter receives the question and all raw passages:

Identify all facts in the source documents that are relevant to the query. Rewrite those facts into a concise, logically structured summary. Do not fabricate information not present in the source documents.

18.0.0.2 Reader.

The reader prompt is the same for \(B_1\) (raw), \(B_2\) (compile), and the masked \(B_2\) context. Only the Context: field changes:

Context: <evidence>
Question: <question>
Answer concisely:

18.0.0.3 Hard verifier (used in Appendix 10 only).

Compare the summary against the source documents. If the summary contains entities or claims not present in the source documents, output a revised version with unsupported claims removed. If it is fully faithful, output the summary as is.

18.0.0.4 Soft / label-only verifiers (used in Appendix 10 only).

The soft verifier keeps all content but prefixes uncertain or unsupported claims with [UNCERTAIN] or [UNSUPPORTED]. The label-only verifier classifies each sentence as [SUPPORTED] or [UNSUPPORTED] but copies the sentence verbatim.

19 Model Endpoints, Decoding, and Run-ID Mapping↩︎

19.0.0.1 Decoding parameters.

Rewriter calls: \(\texttt{temperature}{=}0.2\), \(\texttt{top\_p}{=}0.95\), \(\texttt{max\_tokens}{=}2048\). Reader calls: \(\texttt{temperature}{=}0.01\), \(\texttt{top\_p}{=}0.95\), \(\texttt{max\_tokens}{=}512\) (default) or \(\texttt{max\_tokens}{=}32\) (strict 1–5-word reader-scale sweep). Failed calls were retried up to 3 times with exponential backoff; examples where any variant failed after all retries were excluded from the paired comparison for that suite. Paired bootstrap intervals use NumPy with \(\texttt{seed}{=}42\), \(1{,}000\) resamples for the main-text intervention audit (\(2{,}000\) in the per-question headroom analysis of Appendix 13, \(10{,}000\) in the long-form mechanism analyses of Appendix 11).

19.0.0.2 Model endpoints.

Table 13 lists the exact API model-field strings used. These are submitted field values, not guaranteed immutable checkpoint names; the table documents the evaluated endpoints but does not remove service-side reproducibility risk. Full-suite runs were produced between April 21 and April 26, 2026 on the same provider platform.

4pt

Table 13: Exact API endpoint identifiers used in the experiments.
Paper name API model field
Qwen2.5-3B qwen2.5-3b-instruct
Qwen2.5-7B qwen2.5-7b-instruct
Qwen2.5-14B qwen2.5-14b-instruct
Qwen2.5-32B qwen2.5-32b-instruct
Qwen2.5-72B qwen2.5-72b-instruct
Qwen3-8B qwen3-8b
Qwen3-14B qwen3-14b
Qwen3-235B qwen3-235b-a22b
Qwen3.5-27B qwen3.5-27b
Qwen3.5-35B-A3B qwen3.5-35b-a3b
GLM-5 glm-5
GLM-4.7 glm-4.7
DeepSeek-V3 deepseek-v3
Qwen-Max qwen-max

19.0.0.3 Run-ID mapping.

Table 14 maps the suite IDs used throughout the appendix to the on-disk JSONL log files released alongside the code. Every numeric claim in the paper is derived from these files via the aggregation scripts in scripts/.

2pt

Table 14: Suite-ID to log-file mapping. Each suite is one(reader, rewriter, verifier, dataset, \(N\)) cell. Filenames includethe rewriter / reader endpoints (cf.Table 13)and a date stamp.
Suite ID Log-file pattern
S1 (Hotpot) logs/S1_hotpotqa_*.jsonl
S2 (2Wiki) logs/S2_2wiki_*.jsonl
S3, S4 (Hotpot, GLM) logs/S{3,4}_*.jsonl
S5 (Hotpot, Qwen3.5) logs/S5_*.jsonl
Q1, Q2 (Qasper) logs/Q{1,2}_qasper_*.jsonl
Scale-Hotpot logs/scale_hotpotqa_qwen25-*b_*.jsonl
Scale-Qasper logs/scale_qasper_qwen25-*b_*.jsonl
AblF, AblF2, AblE3 logs/abl{F,F2,E3}_*.jsonl
AblE6 oracle logs/ablE6_*_oracle6_*.jsonl
Qblind logs/qblind_*_{72b,235b}_*.jsonl
OLS panels logs/lr_panel_*_*.jsonl
Answer-mask logs/S3_answer_masked_{hotpot,2wiki}.jsonl

References↩︎

[1]
Patrick Lewis, Ethan Perez, Aleksandra Piktus, Fabio Petroni, Vladimir Karpukhin, Naman Goyal, Heinrich Küttler, Mike Lewis, Wen-tau Yih, Tim Rocktäschel, and 1 others. 2020. Retrieval-augmented generation for knowledge-intensive nlp tasks. Advances in neural information processing systems, 33:9459–9474.
[2]
Tianyu Gao, Howard Yen, Jiatong Yu, and Danqi Chen. 2023. Enabling large language models to generate text with citations. In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing, pages 6465–6488.
[3]
Akari Asai, Zeqiu Wu, Yizhong Wang, Avi Sil, and Hannaneh Hajishirzi. 2024. Self-rag: Learning to retrieve, generate, and critique through self-reflection. In International conference on learning representations, volume 2024, pages 9112–9141.
[4]
Zhilin Yang, Peng Qi, Saizheng Zhang, Yoshua Bengio, William Cohen, Ruslan Salakhutdinov, and Christopher D Manning. 2018. Hotpotqa: A dataset for diverse, explainable multi-hop question answering. In Proceedings of the 2018 conference on empirical methods in natural language processing, pages 2369–2380.
[5]
Xanh Ho, Anh-Khoa Duong Nguyen, Saku Sugawara, and Akiko Aizawa. 2020. Constructing a multi-hop qa dataset for comprehensive evaluation of reasoning steps. In Proceedings of the 28th International Conference on Computational Linguistics, pages 6609–6625.
[6]
Patrick Lewis, Pontus Stenetorp, and Sebastian Riedel. 2021. Question and answer test-train overlap in open-domain question answering datasets. In Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics: Main Volume, pages 1000–1008.
[7]
Inbal Magar and Roy Schwartz. 2022. Data contamination: From memorization to exploitation. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), pages 157–165.
[8]
Oscar Sainz, Jon Campos, Iker Garcı́a-Ferrero, Julen Etxaniz, Oier Lopez de Lacalle, and Eneko Agirre. 2023. Nlp evaluation in trouble: On the need to measure llm data contamination for each benchmark. In Findings of the Association for Computational Linguistics: EMNLP 2023, pages 10776–10787.
[9]
Shayne Longpre, Kartik Perisetla, Anthony Chen, Nikhil Ramesh, Chris DuBois, and Sameer Singh. 2021. Entity-based knowledge conflicts in question answering. In Proceedings of the 2021 conference on empirical methods in natural language processing, pages 7052–7063.
[10]
Alex Mallen, Akari Asai, Victor Zhong, Rajarshi Das, Daniel Khashabi, and Hannaneh Hajishirzi. 2023. When not to trust language models: Investigating effectiveness of parametric and non-parametric memories. In Proceedings of the 61st annual meeting of the association for computational linguistics (volume 1: Long papers), pages 9802–9822.
[11]
Bosi Wen, Pei Ke, Xiaotao Gu, Lindong Wu, Hao Huang, Jinfeng Zhou, Wenchuang Li, Binxin Hu, Wendy Gao, Jiaxin Xu, and 1 others. 2024. Benchmarking complex instruction-following with multiple constraints composition. Advances in Neural Information Processing Systems, 37:137610–137645.
[12]
Florin Cuconasu, Giovanni Trappolini, Federico Siciliano, Simone Filice, Cesare Campagnano, Yoelle Maarek, Nicola Tonellotto, and Fabrizio Silvestri. 2024. The power of noise: Redefining retrieval for rag systems. In Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval, pages 719–729.
[13]
Ori Yoran, Tomer Wolfson, Ori Ram, and Jonathan Berant. 2023. Making retrieval-augmented language models robust to irrelevant context. arXiv preprint arXiv:2310.01558.
[14]
Divyansh Kaushik, Eduard Hovy, and Zachary C Lipton. 2019. Learning the difference that makes a difference with counterfactually-augmented data. arXiv preprint arXiv:1909.12434.
[15]
Matt Gardner, Yoav Artzi, Victoria Basmov, Jonathan Berant, Ben Bogin, Sihao Chen, Pradeep Dasigi, Dheeru Dua, Yanai Elazar, Ananth Gottumukkala, and 1 others. 2020. Evaluating models’ local decision boundaries via contrast sets. In Findings of the Association for Computational Linguistics: EMNLP 2020, pages 1307–1323.
[16]
Marco Tulio Ribeiro, Tongshuang Wu, Carlos Guestrin, and Sameer Singh. 2020. Beyond accuracy: Behavioral testing of nlp models with checklist. In Proceedings of the 58th annual meeting of the association for computational linguistics, pages 4902–4912.
[17]
Freda Shi, Xinyun Chen, Kanishka Misra, Nathan Scales, David Dohan, Ed H Chi, Nathanael Schärli, and Denny Zhou. 2023. Large language models can be easily distracted by irrelevant context. In International Conference on Machine Learning, pages 31210–31227. PMLR.
[18]
Melanie Sclar, Yejin Choi, Yulia Tsvetkov, and Alane Suhr. 2024. Quantifying language models’ sensitivity to spurious features in prompt design or: How i learned to start worrying about prompt formatting. In International Conference on Learning Representations, volume 2024, pages 25055–25083.
[19]
Albert Webson and Ellie Pavlick. 2022. Do prompt-based models really understand the meaning of their prompts? In Proceedings of the 2022 conference of the north american chapter of the association for computational linguistics: Human language technologies, pages 2300–2344.
[20]
Yao Lu, Max Bartolo, Alastair Moore, Sebastian Riedel, and Pontus Stenetorp. 2022. Fantastically ordered prompts and where to find them: Overcoming few-shot prompt order sensitivity. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 8086–8098.
[21]
Anton Voronov, Lena Wolf, and Max Ryabinin. 2024. Mind your format: Towards consistent evaluation of in-context learning improvements. In Findings of the Association for Computational Linguistics: ACL 2024, pages 6287–6310.
[22]
Nelson F Liu, Kevin Lin, John Hewitt, Ashwin Paranjape, Michele Bevilacqua, Fabio Petroni, and Percy Liang. 2024. Lost in the middle: How language models use long contexts. Transactions of the association for computational linguistics, 12:157–173.
[23]
Baohao Liao, David Thulke, Sanjika Hewavitharana, Hermann Ney, and Christof Monz. 2022. Mask more and mask later: Efficient pre-training of masked language models by disentangling the [mask] token. In Findings of the Association for Computational Linguistics: EMNLP 2022, pages 1478–1492.
[24]
Dallas Card, Peter Henderson, Urvashi Khandelwal, Robin Jia, Kyle Mahowald, and Dan Jurafsky. 2020. With little power comes great responsibility. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 9263–9274.
[25]
Jesse Dodge, Suchin Gururangan, Dallas Card, Roy Schwartz, and Noah A Smith. 2019. Show your work: Improved reporting of experimental results. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP), pages 2185–2194.
[26]
Rotem Dror, Gili Baumer, Segev Shlomov, and Roi Reichart. 2018. The hitchhiker’s guide to testing statistical significance in natural language processing. In Proceedings of the 56th annual meeting of the association for computational linguistics (volume 1: Long papers), pages 1383–1392.
[27]
Philipp Koehn. 2004. Statistical significance tests for machine translation evaluation. In Proceedings of the 2004 conference on empirical methods in natural language processing, pages 388–395.
[28]
Daniël Lakens. 2017. Equivalence tests: A practical primer for t tests, correlations, and meta-analyses. Social psychological and personality science, 8(4):355–362.
[29]
Suriya Gunasekar, Yi Zhang, Jyoti Aneja, Caio César Teodoro Mendes, Allie Del Giorno, Sivakanth Gopi, Mojan Javaheripi, Piero Kauffmann, Gustavo de Rosa, Olli Saarikivi, and 1 others. 2023. Textbooks are all you need. arXiv preprint arXiv:2306.11644.
[30]
Loubna Ben Allal, Anton Lozhkov, and Daniel van Strien. 2024. Cosmopedia: how to create large-scale synthetic data for pre-training. Hugging Face Blog, page 56.
[31]
Pratyush Maini, Skyler Seto, Richard Bai, David Grangier, Yizhe Zhang, and Navdeep Jaitly. 2024. Rephrasing the web: A recipe for compute and data-efficient language modeling. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 14044–14072.
[32]
Dan Su, Kezhi Kong, Ying Lin, Joseph Jennings, Brandon Norick, Markus Kliegl, Mostofa Patwary, Mohammad Shoeybi, and Bryan Catanzaro. 2025. Nemotron-cc: Transforming common crawl into a refined long-horizon pretraining dataset. In Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 2459–2475.
[33]
Lin Long, Rui Wang, Ruixuan Xiao, Junbo Zhao, Xiao Ding, Gang Chen, and Haobo Wang. 2024. On llms-driven synthetic data generation, curation, and evaluation: A survey. In Findings of the Association for Computational Linguistics: ACL 2024, pages 11065–11082.

  1. All authors contributed equally.↩︎

  2. Corresponding author: liyuejie.lyj@antgroup.com↩︎