arXiv is now an independent nonprofit! Learn more
License: arXiv.org perpetual non-exclusive license
arXiv:2607.01240v2 [cs.CL] 29 Jul 2026

Prompt Framing Distorts Count-Based Evaluation of LLM Error Detection: Evidence from Numeric Anchoring

Dekun Yang
Zhejiang University
pauliyangwork@gmail.com
Abstract

Count-based F1 can improve even when an error detector does not localize errors more accurately. ErrorBench tests this evaluation failure with six LLMs, five prompt conditions, and 3,690 retained responses to 123 CoNLL-2014 passages. Changing a supplied count from N2N-2 to N+2N+2 moves the reported count by 3.28–3.74 errors for the four GPT and Claude systems, or 82–94% of the four-error prompt difference; the two Gemini systems move by 0.14–0.21. In an 83-passage corrected-text replication, changing the prompt from Blind to one that states the true count raises Count-F1 by 0.22 on average but raises an ERRANT-based, two-reference edit F0.5F_{0.5} by only 0.04. Paired bootstrap intervals place the difference between these changes above zero for five of six models. A description-derived M2-style analysis on all 123 passages shows the same mismatch. Because the prompt supplies the target used by the count metric, high count agreement is not evidence of better localization. Evaluations of LLM proofreading should avoid supplying expected error counts and pair count metrics with edit- or span-aware scores.

Prompt Framing Distorts Count-Based Evaluation of LLM Error Detection: Evidence from Numeric Anchoring

Dekun Yang Zhejiang University pauliyangwork@gmail.com

1 Introduction

Large language models (LLMs) increasingly serve as proofreaders, code reviewers, and factual checkers. Evaluations of these systems sometimes reduce error detection to a single question: does the reported error count match the reference count? A system can then receive an F1 near 1.01.0 even when it poorly identifies which errors occur. We call this discrepancy the count–span gap. A single sentence in the prompt can widen the gap enough to change a count-only evaluation. The problem lies in exposing expected counts during evaluation, not in the relative quality of any one model family.

Comparable cues already appear in error-correction evaluations. MEDIQA-CORR 2024 defines each clinical note as containing one or no medical error, and its GPT-4 baseline states that constraint in the prompt (Ben Abacha et al., 2024). A system submitted to the same task injects an upstream model’s predicted error span into the correction prompt as a hint (Gema et al., 2024). Both designs serve their stated task, but they put count or location information into a downstream model’s input. If an evaluation rewards agreement with that information, its score can mix detection quality with prompt compliance.

We isolate the count component by changing only the number stated in the prompt while holding the passage and task fixed. We use anchoring as a behavioral description: humans often adjust insufficiently from salient reference values (Tversky and Kahneman, 1974; Epley and Gilovich, 2006), and related effects have been reported for LLMs (Macmillan-Scott and Musolesi, 2024). Our design does not separate anchoring from output imitation or instruction following. For evaluation, the relevant test is whether a supplied count improves count agreement without a commensurate improvement in localization.

We ask whether a supplied count shifts the number of errors reported, whether a true-count prompt improves Count-F1 more than edit quality, and how the response varies across model families. The paper makes three contributions. (1) A direct comparison of conflicting high and low count cues shows large reported-count shifts for the sampled GPT and Claude systems. (2) An 83-passage corrected-text replication uses ERRANT-based edit extraction and two CoNLL-2014 references. Blind\toAnchored Count-F1 rises by 0.22 on average, compared with 0.04 for edit F0.5F_{0.5}; the paired-bootstrap contrast is positive at the 95% level for five of six models. (3) A 123-passage analysis provides Count Bias (CB), a descriptive Anchoring Sensitivity Index (ASI), and description-derived M2-style diagnostics. ErrorBench audits an evaluation protocol; it is not a model ranking or a test of internal mechanism.

2 Related Work

2.1 LLM Evaluation and Error Detection

A growing body of work evaluates LLMs on structured proofreading and fact-checking tasks. Fang et al. (2023) report competitive grammatical-error-correction results for ChatGPT in some settings, together with systematic over-correction. BEA-2019 (Bryant et al., 2019), CoNLL-2014 (Ng et al., 2014), and the broader GEC literature (Bryant et al., 2023) also show why count agreement alone is an incomplete measure of correction quality. In scientific reviewing, pilot studies find that targeted error-finding prompts can work better than holistic review prompts (Liu and Shah, 2023); related work studies AI-assisted peer review and review corpora (Checco et al., 2021; Dycke et al., 2023).

This sensitivity to how the error-finding request is framed raises a further question: what happens when the prompt supplies a specific expected count?

2.2 Prompt Sensitivity and Sycophancy

LLM outputs vary with prompt wording, instruction order, and demonstration selection (Zhao et al., 2021; Lu et al., 2022; Min et al., 2022). Sycophancy is especially relevant here: models may agree with a user’s stated belief even when it is false (Perez et al., 2023; Sharma et al., 2024). Perez et al. (2023) observe this behavior across several knowledge domains, indicating that a prompt can override information available to the model. Positional and social biases also affect LLM-as-judge assessments (Ye et al., 2025). We study a narrower case in which the prompt supplies a number and the model estimates an error count.

2.3 Numeric Cues and Evaluation Contamination

The anchoring effect is well established in cognitive psychology (Tversky and Kahneman, 1974). Under the anchoring-and-adjustment account, people begin with a salient reference value and stop adjusting before reaching an independent estimate (Epley and Gilovich, 2006). LLM studies have reported related effects in reasoning, forecasting, and numerical-judgment tasks (Macmillan-Scott and Musolesi, 2024; Nguyen, 2024; Huang et al., 2025; Lou and Sun, 2026); recent evidence further relates susceptibility to model confidence and post-training (Owusu and Feldman, 2026). Our setting differs in one important respect: the supplied number is also the target used by the count metric. We therefore focus on prompt-induced count movement and score distortion rather than the internal mechanism.

3 Methodology

3.1 Dataset Construction

We build ErrorBench from the CoNLL-2014 Shared Task data (Ng et al., 2014). Consecutive sentences are grouped into non-overlapping four-sentence windows, and passage counts and gold edits come from Annotator 0. The initial stratified sample contained 143 windows with 3–7 errors. A post-collection integrity audit aligned the ordered M2 sentences to the 50 <DOC> blocks in the official SGML source and found that 20 sampled windows crossed an essay boundary. We excluded those windows without inspecting model outputs, leaving 123 passages: 25, 28, 23, 26, and 21 in the 3–7 error buckets. The original sample and exclusion list remain in the release for auditability.

Each passage stores raw text, its Annotator-0 count, M2 categories, and token-indexed annotations. The initial corrected-text subset contained 100 passages; the same audit excluded 17 boundary-crossing windows, leaving 83. ERRANT 3.0.0 extracts edits from model corrections (Bryant et al., 2017). We then apply exact tuple matching against Annotator 0 and a two-reference sensitivity rule using Annotators 0 and 1 (Section 4.6).

3.2 Prompt Conditions

We design five prompt conditions as our primary independent variable, shown in Table 1. All conditions share a fixed system prompt instructing the model to respond using a structured format (“ERROR N: [description]” followed by “TOTAL ERRORS FOUND: N”) so that outputs can be parsed automatically. Temperature is fixed at 0 to reduce sampling variation; this does not make remote model inference deterministic.

Table 1: Five prompt conditions used in ErrorBench, varying the prior information provided about error count.
Condition Prompt framing Prior info given Cue tested
Blind Does this text have errors? None No-count baseline
Informed This text has errors—find them. Errors exist Existence cue
Anchored This text has exactly NN errors—find them. True count NN True-count cue
Mislead-Over This text has exactly N+2N+2 errors—find them. Over-count (N+2N+2) Inflated count cue
Mislead-Under This text has exactly max(1,N2)\max(1,N-2) errors—find them. Under-count (max(1,N2)\max(1,N-2)) Deflated count cue

For the Misleading conditions, we set M=N+2M=N+2 (Mislead-Over) and M=max(1,N2)M=\max(1,N-2) (Mislead-Under), where NN is the true error count. The supplied value therefore differs from the truth by exactly 2 in both directions.

3.3 Models

We evaluate GPT-4o and GPT-5.4 (OpenAI, 2024, 2026), Claude Haiku 4.5 and Claude Sonnet 4.6 (Anthropic, 2025, 2026), and Gemini 2.5 Flash and Gemini 3.1 Pro Preview (Google DeepMind, 2025; Google, 2026). The labels follow the requested model identifiers at an OpenAI-compatible proxy; cross-family comparisons are descriptive. The initial collection planned 143×6×5=4,290143\times 6\times 5=4{,}290 cells. All post-audit main analyses use the complete 123×6×5=3,690123\times 6\times 5=3{,}690 grid and a keep-last-success rule for retries. The main prompt uses an 800-token output limit; the corrected-text replication uses 1,400 tokens.

3.4 Evaluation Metrics

ErrorBench is a controlled stress test. For passage ii, let N^i\hat{N}_{i} be the reported count and NiN_{i} the reference count. Count Bias is CBi=N^iNi\mathrm{CB}_{i}=\hat{N}_{i}-N_{i}. For condition cc, ASIi(c)=|CBi(c)CBi(Blind)|/Ni\mathrm{ASI}_{i}(c)=|\mathrm{CB}_{i}(c)-\mathrm{CB}_{i}(\mathrm{Blind})|/N_{i}; we report its mean and SD over parseable condition–Blind pairs. We call this descriptive measure the Anchoring Sensitivity Index (ASI); the name refers to the prompt manipulation and does not identify an internal mechanism. Count-F1 uses count overlap without span matching: TPi=min(N^i,Ni)\mathrm{TP}_{i}=\min(\hat{N}_{i},N_{i}), FPi=max(0,N^iNi)\mathrm{FP}_{i}=\max(0,\hat{N}_{i}-N_{i}), and FNi=max(0,NiN^i)\mathrm{FN}_{i}=\max(0,N_{i}-\hat{N}_{i}). We average passage-level Count-F1. An unparseable count receives Count-F1 0; CB and paired count analyses use parseable pairs and report their effective sample size nn. We also compare Mislead-Over directly with Mislead-Under. Because all retained passages have Ni3N_{i}\geq 3, these prompts differ by exactly four errors.

The main span diagnostic is description-derived and M2-style; it is not the official M2 scorer. We parse quoted source/correction fragments from each error description, localize them in the passage, and form (sentence,start,end,correction)(\mathrm{sentence},\mathrm{start},\mathrm{end},\mathrm{correction}) tuples. Unlocalized descriptions are false positives in the primary analysis. Repository-local strict, detection, and overlap matching produce corpus micro F0.5F_{0.5} scores; Appendix B.2 gives definitions and a sensitivity analysis. The corrected-text replication avoids description parsing: ERRANT extracts predicted and reference edits, followed by our documented exact-matching and two-reference selection rules. Missing corrected text is scored as an empty prediction. Because Count-F1 and edit F0.5F_{0.5} are not commensurate scales, inference focuses on their changes under the same prompt contrast, not only on their raw difference.

For reproducibility, the appendix reports the prompts, model identifiers, decoding settings, and scoring variants needed to audit the experiment. The full code, prompts, and raw model outputs will be released upon publication in an anonymized research repository; all figures are generated from the passage-level model-output records using the same analysis scripts described in the appendix.

4 Experiments and Results

4.1 Main Results

Table 2 reports Count Bias and Count-F1. GPT-5.4 follows the Mislead-Over count with zero variance (CB =+2=+2), while Claude H.4.5 is closest to the true count in the Anchored condition (CB =0.016=-0.016, SD =0.180=0.180). Near-perfect Anchored Count-F1 is partly built into the prompt. Blind behavior differs sharply: GPT-5.4 over-reports by 7.3 errors on average, Claude S.4.6 by 2.9, and Claude H.4.5 by 0.2. The two Gemini systems instead undercount across conditions. This is lower count responsiveness in this protocol, not evidence of greater general robustness.

Table 2: Count Bias (mean and SD over parseable counts) and mean passage-level Count-F1. Count-F1 uses all 123 passages, assigning 0 to an unparseable count. CB uses n=123n=123 except for Gemini 3.1 (n=117,118,120,120,121n=117,118,120,120,121 in table order).
Model Condition CB Mean CB SD Count-F1
GPT-4o Blind +1.244 2.338 0.814
GPT-4o Informed +2.146 5.572 0.811
GPT-4o Anchored +0.033 0.254 0.996
GPT-4o Mislead-Over +2.000 0.000 0.821
GPT-4o Mislead-Under -1.740 0.818 0.737
GPT-5.4 Blind +7.268 3.105 0.582
GPT-5.4 Informed +7.886 3.252 0.563
GPT-5.4 Anchored +0.146 0.786 0.988
GPT-5.4 Mislead-Over +2.000 0.000 0.821
GPT-5.4 Mislead-Under -1.285 2.201 0.721
Claude H.4.5 Blind +0.163 1.826 0.858
Claude H.4.5 Informed +0.715 1.831 0.853
Claude H.4.5 Anchored -0.016 0.180 0.999
Claude H.4.5 Mislead-Over +1.976 0.271 0.821
Claude H.4.5 Mislead-Under -1.634 0.934 0.754
Claude S.4.6 Blind +2.862 3.712 0.758
Claude S.4.6 Informed +2.667 3.666 0.770
Claude S.4.6 Anchored -0.016 0.384 0.993
Claude S.4.6 Mislead-Over +1.854 0.796 0.819
Claude S.4.6 Mislead-Under -1.683 0.862 0.741
Gemini 2.5 Blind -2.146 1.721 0.702
Gemini 2.5 Informed -2.252 1.607 0.707
Gemini 2.5 Anchored -2.374 1.596 0.696
Gemini 2.5 Mislead-Over -2.398 1.551 0.694
Gemini 2.5 Mislead-Under -2.610 1.303 0.647
Gemini 3.1 Blind -2.752 1.666 0.582
Gemini 3.1 Informed -2.737 2.040 0.582
Gemini 3.1 Anchored -2.833 1.463 0.599
Gemini 3.1 Mislead-Over -2.892 1.340 0.589
Gemini 3.1 Mislead-Under -3.033 1.147 0.546
Refer to caption
Figure 1: Count Bias distributions across prompt conditions. Boxes show the median and IQR; whiskers extend to 1.5×1.5\timesIQR. When the prompt supplies a count, GPT-5.4 and both Claude models track it closely, whereas both Gemini models continue to undercount.
Refer to caption
Figure 2: Count-F1 by condition and model. The Anchored condition achieves near-perfect Count-F1 for GPT-5.4, Claude H.4.5, and Claude S.4.6 because the prompt supplies the target count; both Gemini systems show little count response under a persistent undercount prior.

4.2 Response to Conflicting Count Cues

Mislead-Over and Mislead-Under differ only in the supplied count, by four errors. Their paired contrast therefore avoids using the true-count condition as the sole evidence of a count-cue response. The mean reported-count shift is 3.740 for GPT-4o, 3.285 for GPT-5.4, 3.610 for Claude H.4.5, and 3.537 for Claude S.4.6 (Figure 3). These values are 82–94% of the prompt difference. The shifts for Gemini 2.5 and Gemini 3.1 are 0.211 and 0.144. All six paired shifts differ from zero after BH correction over these six tests (q<.01q<.01), although the Gemini effect sizes are small. The high count is repeated exactly in 93–100% of GPT/Claude outputs and 0% of Gemini outputs.

Refer to caption
Figure 3: Paired reported-count shift from Mislead-Under to Mislead-Over. Error bars are 95% t intervals. The dashed line is the four-error difference between the prompts. Gemini 3.1 uses 118 parseable pairs; all other models use 123.

4.3 Anchoring Sensitivity Index

Table 3 relates each prompted condition to Blind. GPT-5.4 has the largest value: Mislead-Under ASI =1.928=1.928. Claude S.4.6 reaches 1.073, compared with 0.751 for GPT-4o and 0.456 for Claude H.4.5. Gemini 2.5 remains at or below 0.187 and Gemini 3.1 at or below 0.120. Because low ASI co-occurs with undercounting, it is not a clean estimate of resistance to count cues.

Table 3: Anchoring Sensitivity Index (ASI, passage-level mean ±\pm SD) by model and prompt condition.
Model ASI (Anchored) ASI (Mislead-Over) ASI (Mislead-Under)
GPT-4o 0.490 ±\pm 0.517 0.417 ±\pm 0.360 0.751 ±\pm 0.609
GPT-5.4 1.625 ±\pm 0.949 1.234 ±\pm 0.873 1.928 ±\pm 1.069
Claude H.4.5 0.304 ±\pm 0.292 0.427 ±\pm 0.259 0.456 ±\pm 0.406
Claude S.4.6 0.772 ±\pm 0.845 0.598 ±\pm 0.662 1.073 ±\pm 0.980
Gemini 2.5 0.187 ±\pm 0.218 0.170 ±\pm 0.216 0.170 ±\pm 0.221
Gemini 3.1 0.083 ±\pm 0.249 0.075 ±\pm 0.239 0.120 ±\pm 0.299
Refer to caption
Figure 4: Mean ASI over the 123-passage analysis set (115 parseable pairs for each displayed Gemini 3.1 condition except Mislead-Over, n=114n=114).

4.4 Statistical Significance

We compare each condition with Blind using paired passage-level t-tests and one Benjamini–Hochberg correction over the 24 tests. Mislead-Under is significant for every model (q.0033q\leq.0033). Mislead-Over is significant for the four GPT/Claude systems (q.0043q\leq.0043), but not for Gemini 2.5 or 3.1 (q=.057q=.057 and .131.131). The true-count Anchored contrast is significant for GPT-4o, GPT-5.4, and Claude S.4.6, but not Claude H.4.5 or either Gemini model. Informed differs from Blind only for GPT-5.4 (Δ\DeltaCB =+0.618=+0.618, q=.012q=.012) and Claude H.4.5 (+0.553+0.553, q<105q<10^{-5}).

Paired effect sizes give the scale of these shifts. For GPT-5.4, dzd_{z} is 2.54-2.54 for Mislead-Under, 2.32-2.32 for Anchored, and 1.70-1.70 for Mislead-Over. Mislead-Under is also large for GPT-4o (1.34-1.34), Claude H.4.5 (1.05-1.05), and Claude S.4.6 (1.21-1.21). The Gemini values are smaller (|dz|0.35|d_{z}|\leq 0.35 for Gemini 2.5 and 0.30\leq 0.30 for Gemini 3.1). Appendix B.1 reports all paired effects and effective sample sizes.

4.5 Count Agreement and Description-derived Edits

Table 4 compares Count-F1 with the description-derived M2-style overlap score. The raw gap is not a scale-free effect because the metrics have different matching rules. The within-metric change is more informative: averaged over models, Blind\toAnchored raises Count-F1 by 0.163 and overlap F0.5F_{0.5} by 0.059. For GPT-5.4, Count-F1 changes from 0.582 to 0.988 while overlap F0.5F_{0.5} stays near 0.20. For Claude H.4.5 the changes are 0.8580.9990.858\to 0.999 and 0.4340.4610.434\to 0.461. Under strict matching, the largest Anchored count–edit gap is 0.954 (Appendix B.2).

Table 4: Mean passage Count-F1, description-derived M2-style overlap F0.5F_{0.5}, and their diagnostic difference. The raw difference compares metrics with different matching rules.
Model Condition Count-F1 M2 F0.5F_{0.5} Difference
GPT-4o Blind 0.814 0.364 0.450
GPT-4o Anchored 0.996 0.375 0.621
GPT-4o Mislead-Over 0.821 0.326 0.495
GPT-4o Mislead-Under 0.737 0.436 0.301
GPT-5.4 Blind 0.582 0.201 0.381
GPT-5.4 Anchored 0.988 0.202 0.786
GPT-5.4 Mislead-Over 0.821 0.170 0.651
GPT-5.4 Mislead-Under 0.721 0.276 0.445
Claude H.4.5 Blind 0.858 0.434 0.424
Claude H.4.5 Anchored 0.999 0.461 0.538
Claude H.4.5 Mislead-Over 0.821 0.408 0.413
Claude H.4.5 Mislead-Under 0.754 0.498 0.256
Claude S.4.6 Blind 0.758 0.277 0.481
Claude S.4.6 Anchored 0.993 0.509 0.484
Claude S.4.6 Mislead-Over 0.819 0.462 0.357
Claude S.4.6 Mislead-Under 0.741 0.559 0.182
Gemini 2.5 Blind 0.702 0.269 0.433
Gemini 2.5 Anchored 0.696 0.253 0.443
Gemini 2.5 Mislead-Over 0.694 0.255 0.439
Gemini 2.5 Mislead-Under 0.647 0.287 0.360
Gemini 3.1 Blind 0.582 0.246 0.336
Gemini 3.1 Anchored 0.599 0.342 0.257
Gemini 3.1 Mislead-Over 0.589 0.299 0.290
Gemini 3.1 Mislead-Under 0.546 0.398 0.148

4.6 Corrected-text Edit Replication

The 83-passage replication asks for a full corrected passage, uses ERRANT to extract edits, and scores exact edit tuples against both CoNLL annotators. Our two-reference sensitivity rule selects the higher-F0.5F_{0.5} reference separately for each sentence; this is not the official M2 max-match scorer. Every model–condition cell contains all 83 passages. One missing call and any missing corrected-text blocks are empty predictions.

Across models, Blind\toAnchored raises corpus Count-F1 by 0.218 on average and two-reference edit F0.5F_{0.5} by 0.042. In a paired passage bootstrap (1,000 draws, seed 42), the difference between these metric changes is positive at the 95% level for GPT-4o, GPT-5.4, both Claude systems, and Gemini 2.5 (Figure 5). Gemini 3.1 has a positive point estimate but its interval crosses zero. The bootstrap treats the missing call and unparseable counts as failures. Appendix B.3 gives the model-level bootstrap contrasts and full Path-B condition scores.

Refer to caption
Figure 5: Paired bootstrap on 83 passages. Bars show the mean Blind\toAnchored change with 95% percentile intervals. The contrast between Count-F1 and edit F0.5F_{0.5} is above zero for five models; the Gemini 3.1 contrast crosses zero.

4.7 Case Studies

Case A gives the clearest qualitative failure. On conll_0238 (N=4N=4), GPT-4o reports only the valid theirselves\tothemselves correction under Blind. Under Mislead-Over (M=6M=6), it repeats that correction and adds five unsupported claims: four nonexistent spaces before punctuation and an unnecessary article before depression. It reaches the supplied count by inventing errors rather than recovering the other three gold edits. Appendix A.4 gives the passage and verbatim output, together with two contrasting cases. Under a low count, Claude H.4.5 drops from 11 reported errors to two on conll_0160 (N=4N=4); Gemini 2.5, by contrast, still reports two errors when given a high count of five on conll_0201 (N=3N=3).

5 Discussion

The experiment identifies evaluation contamination, not a cognitive mechanism. For four systems, the stated number largely determines the reported count even when two conflicting counts are applied to identical passages. GPT-5.4, for example, over-reports under Blind (CB =+7.27=+7.27) but repeats every Mislead-Over count. The pattern resembles anchoring-and-adjustment (Epley and Gilovich, 2006), but output imitation and instruction following are also plausible. The evaluation result is the same under any of these accounts: the prompt supplies part of the answer scored by Count-F1 while edit quality improves far less.

The within-family differences are sizable. Mislead-Under ASI is 1.928 for GPT-5.4 and 0.751 for GPT-4o; the corresponding values are 1.073 for Claude S.4.6 and 0.456 for Claude H.4.5. Gemini 2.5 and Gemini 3.1 remain below 0.187 and 0.120. Their low ASI coincides with under-reporting and frequent corrected-text omissions, so the data do not separate low count-cue responsiveness from a prior toward fewer reported edits.

The MEDIQA-CORR examples show that count and span hints already occur in at least one clinical error-correction setting. We do not claim that such cues are widespread. The risk arises whenever a review prompt contains a target count, including document review or code auditing. The 83-passage corrected-text study shows that the present result is not limited to description parsing or one reference; transfer to other domains remains an empirical question.

Absolute scores should not be compared with published GEC systems because our passages, prompts, missing-output policy, and two-reference rule differ. The within-model prompt contrast is the relevant evidence: Anchored Count-F1 is at least 0.906 for every model, whereas two-reference edit F0.5F_{0.5} remains within 0.068 of Blind in five of six cases.

5.1 Practical Recommendations for LLM Error-Detection Evaluation

The results suggest four safeguards for LLM proofreading and document review. Use blind prompts by default: do not disclose an expected error count unless the evaluation is specifically testing count-cue sensitivity. Treat count metrics as auxiliary: Count-F1 and exact-count accuracy measure coarse calibration, not localization. Report span-aware metrics: M2, ERRANT, or an equivalent localization score should accompany count results. Monitor exact count matching: deployed systems should track how often model outputs reproduce counts supplied by users, templates, or upstream tools.

6 Conclusion

Supplying an error count can distort count-based evaluation. Conflicting high and low counts move four systems by 82–94% of the count difference. In the corrected-text replication, Blind\toAnchored changes Count-F1 by 0.218 on average and two-reference edit F0.5F_{0.5} by 0.042; the paired contrast is supported for five of six models. Count agreement obtained by stating the reference count should therefore not be read as better error localization. ErrorBench measures a weakness in the evaluation protocol, not overall model quality or an internal cognitive mechanism.

Limitations

Span scoring.

The 123-passage analysis extracts edits from short descriptions and applies custom M2-style matching, not the official M2 scorer. The stronger corrected-text analysis covers 83 passages and uses ERRANT for edit extraction followed by custom exact matching. Extending that protocol to all 123 passages would reduce uncertainty.

Missing outputs and instruction compliance.

Gemini 2.5 and Gemini 3.1 omit a corrected-text block in 22–68 of 83 trials per condition. These are empty edit predictions, so their absolute edit scores combine localization and format compliance. The main log also contains 19 unparseable Gemini 3.1 counts; these receive Count-F1 0 and are excluded from CB. One Path-B call is missing and is scored as a failure.

References and matching.

Reference counts and supplied prompt values use Annotator 0. The corrected-text sensitivity analysis also uses Annotator 1, selecting the higher-F0.5F_{0.5} reference per sentence. This permissive local rule is not the official M2 max-match procedure and can raise absolute scores.

Single inference and fixed decoding.

Each cell has one remote inference at temperature 0. The output limit is 800 tokens in the main run and 1,400 in Path B. Temperature 0 reduces but does not eliminate run-to-run variation, and a shared setting may depart from provider-specific recommendations.

Limited count range.

The Mislead conditions use only N±2N\pm 2. They establish a response to this perturbation but not its dose–response curve.

Post-collection boundary audit and domain scope.

We discovered after collection that 20 of 143 main windows and 17 of 100 Path-B windows crossed source-document boundaries. The exclusion rule used the official SGML boundaries and was applied without reference to outputs, but it reduced the sample and left unequal count buckets. CoNLL-2014 learner English may not represent other review domains.

Model-specific confounds.

Gemini’s low ASI coincides with persistent undercounting. The experiment cannot separate low responsiveness to count cues from a prior toward fewer edits. Cross-family differences are descriptive.

Proxy-based model access.

Queries used an OpenAI-compatible proxy. The requested identifiers are recorded, but upstream routing cannot be independently verified and may change. The results apply to the observed endpoints and dates rather than immutable provider snapshots.

Ethics Statement

CoNLL-2014 is a public shared-task dataset of learner English essays. This study collects no new human-subject data, labels no individual writers, and makes no attempt to re-identify them. The case studies reproduce passages from the public dataset. Prompt-induced count distortion could inflate reported performance in high-stakes proofreading, motivating our recommendation to avoid pre-populated counts and pair count metrics with span-aware evaluation. We do not deploy the framework itself.

Use of AI Assistance

OpenAI ChatGPT/Codex assisted with English editing, LaTeX formatting, and code during manuscript preparation. The author reviewed and verified all assisted text, code, data, citations, and results and takes responsibility for the submission.

References

  • Anthropic (2025) Claude haiku 4.5 system card. Note: https://www.anthropic.com/system-cardsModel system cards page; Claude Haiku 4.5 listed as October 2025; accessed July 22, 2026 Cited by: §3.3.
  • Anthropic (2026) Claude sonnet 4.6 system card. Note: https://www.anthropic.com/system-cardsModel system cards page; Claude Sonnet 4.6 listed as February 2026; accessed July 22, 2026 Cited by: §3.3.
  • A. Ben Abacha, W. Yim, Y. Fu, Z. Sun, F. Xia, and M. Yetisgen (2024) Overview of the MEDIQA-CORR 2024 shared task on medical error detection and correction. In Proceedings of the 6th Clinical Natural Language Processing Workshop, Mexico City, Mexico, pp. 596–603. External Links: Document, Link Cited by: §1.
  • C. Bryant, M. Felice, Ø. E. Andersen, and T. Briscoe (2019) The BEA-2019 shared task on grammatical error correction. In Proceedings of the Fourteenth Workshop on Innovative Use of NLP for Building Educational Applications, pp. 52–75. External Links: Link, Document Cited by: §2.1.
  • C. Bryant, M. Felice, and T. Briscoe (2017) Automatic annotation and evaluation of error types for grammatical error correction. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 793–805. External Links: Link, Document Cited by: §3.1.
  • C. Bryant, Z. Yuan, M. R. Qorib, H. Cao, H. T. Ng, and T. Briscoe (2023) Grammatical error correction: a survey of the state of the art. Computational Linguistics 49 (3), pp. 643–701. External Links: Link, Document Cited by: §2.1.
  • A. Checco, L. Bracciale, P. Loreti, S. Pinfield, and G. Bianchi (2021) AI-assisted peer review. Humanities and Social Sciences Communications 8 (1), pp. 25. External Links: Link, Document Cited by: §2.1.
  • N. Dycke, I. Kuznetsov, and I. Gurevych (2023) NLPeer: a unified resource for the computational study of peer review. In Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 5049–5073. External Links: Link, Document Cited by: §2.1.
  • N. Epley and T. Gilovich (2006) The anchoring-and-adjustment heuristic: why the adjustments are insufficient. Psychological Science 17 (4), pp. 311–318. External Links: Document Cited by: §1, §2.3, §5.
  • T. Fang, S. Yang, K. Lan, D. F. Wong, J. Hu, L. S. Chao, and Y. Zhang (2023) Is ChatGPT a highly fluent grammatical error correction system? a comprehensive evaluation. Note: arXiv:2304.01746 External Links: 2304.01746, Link Cited by: §2.1.
  • A. Gema, C. Lee, P. Minervini, L. Daines, T. Simpson, and B. Alex (2024) Edinburgh clinical NLP at MEDIQA-CORR 2024: guiding large language models with hints. In Proceedings of the 6th Clinical Natural Language Processing Workshop, Mexico City, Mexico, pp. 488–501. External Links: Document, Link Cited by: §1.
  • Google DeepMind (2025) Gemini 2.5 flash. Note: https://ai.google.dev/gemini-api/docs/models/gemini-2.5-flashGemini API model documentation; accessed July 22, 2026 Cited by: §3.3.
  • Google (2026) Gemini 3.1 pro preview. Note: Gemini API documentationReleased February 19, 2026; accessed July 22, 2026 External Links: Link Cited by: §3.3.
  • Y. Huang, B. Bie, Z. Na, W. Ruan, S. Lei, Y. Yue, and X. He (2025) An empirical study of the anchoring effect in LLMs: existence, mechanism, and potential mitigations. Note: arXiv:2505.15392 External Links: 2505.15392, Link Cited by: §2.3.
  • R. Liu and N. B. Shah (2023) ReviewerGPT? an exploratory study on using large language models for paper reviewing. Note: arXiv:2306.00622 External Links: 2306.00622, Link Cited by: §2.1.
  • J. Lou and Y. Sun (2026) Anchoring bias in large language models: an experimental study. Journal of Computational Social Science 9, pp. 11. External Links: Document, Link Cited by: §2.3.
  • Y. Lu, M. Bartolo, A. Moore, S. Riedel, and P. 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), pp. 8086–8098. External Links: Link, Document Cited by: §2.2.
  • O. Macmillan-Scott and M. Musolesi (2024) (Ir)rationality and cognitive biases in large language models. Royal Society Open Science 11 (6), pp. 240255. External Links: Link, Document Cited by: §1, §2.3.
  • S. Min, X. Lyu, A. Holtzman, M. Artetxe, M. Lewis, H. Hajishirzi, and L. Zettlemoyer (2022) Rethinking the role of demonstrations: what makes in-context learning work?. In Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing, pp. 11048–11064. External Links: Link, Document Cited by: §2.2.
  • H. T. Ng, S. M. Wu, T. Briscoe, C. Hadiwinoto, R. H. Susanto, and C. Bryant (2014) The CoNLL-2014 shared task on grammatical error correction. In Proceedings of the Eighteenth Conference on Computational Natural Language Learning: Shared Task, pp. 1–14. External Links: Link, Document Cited by: §2.1, §3.1.
  • J. K. Nguyen (2024) Human bias in AI models? anchoring effects and mitigation strategies in large language models. Journal of Behavioral and Experimental Finance 43, pp. 100971. External Links: Document, Link Cited by: §2.3.
  • OpenAI (2024) GPT-4o system card. Note: https://openai.com/index/gpt-4o-system-card/Accessed July 22, 2026 Cited by: §3.3.
  • OpenAI (2026) GPT-5.4 thinking system card. Note: https://openai.com/index/gpt-5-4-thinking-system-card/Accessed July 22, 2026 Cited by: §3.3.
  • H. N. Owusu and N. H. Feldman (2026) Anchoring depends on confidence and post-training in language models. In Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), San Diego, California, United States, pp. 174–180. External Links: Document, Link Cited by: §2.3.
  • E. Perez, S. Ringer, K. Lukošiūtė, K. Nguyen, E. Chen, S. Heiner, C. Pettit, C. Olsson, S. Kundu, S. Kadavath, A. Jones, A. Chen, B. Mann, B. Israel, B. Seethor, C. McKinnon, C. Olah, D. Yan, D. Amodei, D. Amodei, D. Drain, D. Li, E. Tran-Johnson, G. Khundadze, J. Kernion, J. Landis, J. Kerr, J. Mueller, J. Hyun, J. Landau, K. Ndousse, L. Goldberg, L. Lovitt, M. Lucas, M. Sellitto, M. Zhang, N. Kingsland, N. Elhage, N. Joseph, N. Mercado, N. DasSarma, O. Rausch, R. Larson, S. McCandlish, S. Johnston, S. Kravec, S. El Showk, T. Lanham, T. Telleen-Lawton, T. Brown, T. Henighan, T. Hume, Y. Bai, Z. Hatfield-Dodds, J. Clark, S. R. Bowman, A. Askell, R. Grosse, D. Hernandez, D. Ganguli, E. Hubinger, N. Schiefer, and J. Kaplan (2023) Discovering language model behaviors with model-written evaluations. In Findings of the Association for Computational Linguistics: ACL 2023, Toronto, Canada, pp. 13387–13434. External Links: Link, Document Cited by: §2.2.
  • M. Sharma, M. Tong, T. Korbak, D. Duvenaud, A. Askell, S. R. Bowman, E. Durmus, Z. Hatfield-Dodds, S. R. Johnston, S. M. Kravec, T. Maxwell, S. McCandlish, K. Ndousse, O. Rausch, N. Schiefer, D. Yan, M. Zhang, and E. Perez (2024) Towards understanding sycophancy in language models. In The Twelfth International Conference on Learning Representations, External Links: Link Cited by: §2.2.
  • A. Tversky and D. Kahneman (1974) Judgment under uncertainty: heuristics and biases. Science 185 (4157), pp. 1124–1131. External Links: Document Cited by: §1, §2.3.
  • J. Ye, Y. Wang, Y. Huang, D. Chen, Q. Zhang, N. Moniz, T. Gao, W. Geyer, C. Huang, P. Chen, N. V. Chawla, and X. Zhang (2025) Justice or prejudice? quantifying biases in LLM-as-a-judge. In The Thirteenth International Conference on Learning Representations, External Links: Link Cited by: §2.2.
  • Z. Zhao, E. Wallace, S. Feng, D. Klein, and S. Singh (2021) Calibrate before use: improving few-shot performance of language models. In Proceedings of the 38th International Conference on Machine Learning, pp. 12697–12706. External Links: Link Cited by: §2.2.

Appendix A Category 1: Replication Details and Examples

A.1 Prompt Templates

The main experiment shares the system prompt in Figure 6 and varies only the user prompt (Figure 7). The placeholder {text} is a four-sentence passage and NN is the Annotator-0 count. Path B adds a request for a CORRECTED TEXT: block after the count response. The released runner contains the exact extended prompt.

System prompt (all conditions)
You are a grammar error detection assistant. Examine the provided English text and list every grammatical error you find. For each error, write exactly one line: ERROR N: [brief description, 10 words max]. After listing all errors, write on its own line: TOTAL ERRORS FOUND: N. Do not include any other text.
Figure 6: Shared system prompt.
Blind. Does this text have any grammatical errors? If yes, list them. {text}
Informed. This text contains grammatical errors. Please find and list all of them. {text}
Anchored. This text contains exactly NN grammatical error(s). Please find and list all of them. {text}
Mislead-Over. This text contains exactly N+2N+2 grammatical error(s). Please find and list all of them. {text}
Mislead-Under. This text contains exactly max(1,N2)\max(1,N-2) grammatical error(s). Please find and list all of them. {text}
Figure 7: User prompts for the five conditions. NN is the Annotator-0 error count of the passage.

A.2 Model Endpoints and Decoding Settings

All queries use an OpenAI-compatible proxy. Table 5 lists the requested identifiers. Every condition uses temperature 0 and one inference per cell, with exponential backoff on HTTP 429. The output limit is 800 tokens in the main run and 1,400 in Path B.

Label in paper Model identifier
GPT-4o gpt-4o
GPT-5.4 gpt-5.4
Claude H.4.5 claude-haiku-4-5-20251001
Claude S.4.6 claude-sonnet-4-6
Gemini 2.5 gemini-2.5-flash
Gemini 3.1 gemini-3.1-pro-preview
Table 5: Model labels and API identifiers used in the experiment.

A.3 Reproducibility

The release includes data preparation, runners, scoring, bootstrap, and figure scripts alongside the unchanged raw JSONL and derived CSVs. Sampling uses seed 42. M2 sentences are aligned in order to the 50 official SGML documents; a regression test fixes the 20 excluded main IDs and 17 excluded Path-B IDs. The main log has 4,310 rows: 4 failed attempts and 4,306 successes, including 16 duplicate successful keys. A keep-last-success rule yields the 4,290 originally planned keys and the complete 3,690-cell retained grid. Path B has 2,489 successful retained keys out of 2,490 planned; its missing cell is included as a failure in scoring.

A.4 Case Studies: Passages and Model Outputs

We report the source passages and relevant model outputs for the three cases in §4.7. Gold annotations are from CoNLL-2014 Annotator 0.

Case A: fabrication under inflated anchor.

Passage conll_0238, N=4N=4. GPT-4o reports 11 error under Blind and exactly 66 errors under Mislead-Over (anchor =6=6), inventing five low-salience or non-errors (spacing around punctuation, an article choice that is standard in the original) to fill the quota.

Passage. Because of this, other people start to think that our lives are full of happiness with no problem at all. Other people then are influenced by us and tend to do the same. As a result, people think of theirselves lowly and may lead to depression and mental disorder. It also reduces our sympathy.
Gold (4). Nn: problem\toproblems; Pform: theirselves\tothemselves; Wci: lowly\tobadly; Pref: \emptyset\tothis.
GPT-4o, Blind (reported=1). ERROR 1: Incorrect use of "theirselves," should be "themselves." TOTAL ERRORS FOUND: 1
GPT-4o, Mislead-Over, anchor=6 (reported=6). ERROR 1: Incorrect spacing before comma, "this ,". ERROR 2: Incorrect spacing before period, "at all .". ERROR 3: Incorrect reflexive pronoun, "theirselves" should be "themselves". ERROR 4: Incorrect article usage, "a" before "depression". ERROR 5: Incorrect spacing before period, "disorder .". ERROR 6: Incorrect spacing before period, "sympathy .". TOTAL ERRORS FOUND: 6.
Table 6: Case A—GPT-4o on conll_0238.

Case B: suppression under deflated anchor.

Passage conll_0160, N=4N=4. Claude H.4.5 reports 11 errors under Blind and two under Mislead-Under (anchor =2=2).

Passage. With the welcoming of application such as Skype and Facetime, any individual can phase off most of the olden days communication methods. Aside from hearing the voice, a webcamera could also be affixed to emulate a “real” interaction with expressions and gestures. Communication would have took a different turn without the easily available social media. However, it is a good practice not to intesively use social media all the time.
Gold (4). Nn: application\toapplications; Mec: comma\to\emptyset; Npos: \emptyset\toapostrophe; Mec: intesively\tointensely.
Claude H.4.5, Blind (reported=11). application\toapplications; spacing before comma; phase off\tophase out; spacing after most; olden days; hearing the voice; webcamera; spacing around real; took\totaken; intesively\tointensively; spacing after However.
Claude H.4.5, Mislead-Under, anchor=2 (reported=2). ERROR 1: "application" should be plural "applications" to match "such as". ERROR 2: "took" should be "taken" in past perfect construction "would have taken". TOTAL ERRORS FOUND: 2
Table 7: Case B—Claude H.4.5 on retained passage conll_0160. The Blind output is compacted to its 11 descriptions.

Case C: undercount prior dominating the anchor.

Passage conll_0201, N=3N=3. Under Mislead-Over (anchor =5=5), Gemini 2.5 Flash reports only 22 errors, below both the anchor and the true count—consistent with its persistent undercount prior rather than compliance with the prompted count.

Passage. The next two paragraphs will be discussing about the advantages and disadvantages of using social media in our society. …Social media sites such as Facebook has allow us to share our pictures or even chat online with our parents while we are overseas. This approaches help the parents to communicate with their children …
Gold (3). Prep: about\to\emptyset; Vt: has\to\emptyset; Pform: This\toThese.
Gemini 2.5, Mislead-Over, anchor=5 (reported=2). ERROR 1: Redundant "about" after "discussing". ERROR 2: Incorrect verb form and subject-verb agreement ("has allow").
Table 8: Case C—Gemini 2.5 Flash on conll_0201.

A.5 Additional Scoring and Inference Details

Paired count effects are computed relative to Blind as dz=mean(ΔCB)/sd(ΔCB)d_{z}=\mathrm{mean}(\Delta\mathrm{CB})/\mathrm{sd}(\Delta\mathrm{CB}). Effective nn is 123 except for Gemini 3.1, where paired parseable counts leave n=112n=112–115.

For the description-derived scores, strict matching requires the same sentence, span, and normalized correction; detection matching omits the correction; and overlap matching requires non-empty token overlap within a sentence. Of 18,182 descriptions, 14,334 (78.8%) localize to a passage span. The primary analysis counts the remainder as false positives; the sensitivity analysis drops them.

For Path B, ERRANT 3.0.0 extracts edits from source–correction pairs. Our local exact tuple matcher scores them against Annotators 0 and 1 and, for each sentence, selects the reference with higher F0.5F_{0.5} (ties: more TP, then fewer FN). The original 100-passage sample becomes 83 passages after the boundary audit, yielding 2,490 planned cells and 2,489 successful calls. Missing calls or corrected passages are empty predictions. The GPT and Claude systems omit three corrected blocks in 1,660 cells; the two Gemini systems omit 22–68 blocks per 83-cell condition.

The paired bootstrap resamples all 83 passages with replacement (1,000 draws, seed 42), keeping Blind and Anchored paired within each draw.

Appendix B Category 2: Complementary Results

B.1 Paired Effect Sizes for Count Bias

Model Condition nn Δ\DeltaCB SD dzd_{z}
GPT-4o Informed 123 +0.90+0.90 5.375.37 +0.17+0.17
GPT-4o Anchored 123 1.21-1.21 2.342.34 0.52-0.52
GPT-4o Mislead-Over 123 +0.76+0.76 2.342.34 +0.32+0.32
GPT-4o Mislead-Under 123 2.98-2.98 2.232.23 1.34-1.34
GPT-5.4 Informed 123 +0.62+0.62 2.522.52 +0.25+0.25
GPT-5.4 Anchored 123 7.12-7.12 3.073.07 2.32-2.32
GPT-5.4 Mislead-Over 123 5.27-5.27 3.103.10 1.70-1.70
GPT-5.4 Mislead-Under 123 8.55-8.55 3.363.36 2.54-2.54
Claude H.4.5 Informed 123 +0.55+0.55 1.241.24 +0.44+0.44
Claude H.4.5 Anchored 123 0.18-0.18 1.811.81 0.10-0.10
Claude H.4.5 Mislead-Over 123 +1.81+1.81 1.821.82 +1.00+1.00
Claude H.4.5 Mislead-Under 123 1.80-1.80 1.721.72 1.05-1.05
Claude S.4.6 Informed 123 0.20-0.20 2.902.90 0.07-0.07
Claude S.4.6 Anchored 123 2.88-2.88 3.653.65 0.79-0.79
Claude S.4.6 Mislead-Over 123 1.01-1.01 3.623.62 0.28-0.28
Claude S.4.6 Mislead-Under 123 4.54-4.54 3.773.77 1.21-1.21
Gemini 2.5 Informed 123 0.11-0.11 1.311.31 0.08-0.08
Gemini 2.5 Anchored 123 0.23-0.23 1.351.35 0.17-0.17
Gemini 2.5 Mislead-Over 123 0.25-0.25 1.331.33 0.19-0.19
Gemini 2.5 Mislead-Under 123 0.46-0.46 1.321.32 0.35-0.35
Gemini 3.1 Informed 112 +0.06+0.06 1.891.89 +0.03+0.03
Gemini 3.1 Anchored 115 0.04-0.04 0.970.97 0.04-0.04
Gemini 3.1 Mislead-Over 114 0.12-0.12 0.800.80 0.15-0.15
Gemini 3.1 Mislead-Under 115 0.30-0.30 0.990.99 0.30-0.30
Table 9: Paired per-passage CB shifts relative to Blind. dzd_{z} and effective sample sizes are defined in Appendix A.5.

B.2 Full Description-derived M2-style Tables

Model Cond. S D O
GPT-4o Bl. 0.088 0.144 0.364
GPT-4o In. 0.083 0.120 0.333
GPT-4o An. 0.100 0.156 0.375
GPT-4o MO. 0.090 0.137 0.326
GPT-4o MU. 0.118 0.189 0.436
GPT-5.4 Bl. 0.026 0.067 0.201
GPT-5.4 In. 0.030 0.069 0.209
GPT-5.4 An. 0.034 0.073 0.202
GPT-5.4 MO. 0.029 0.065 0.170
GPT-5.4 MU. 0.061 0.100 0.276
Claude H.4.5 Bl. 0.056 0.117 0.434
Claude H.4.5 In. 0.052 0.112 0.419
Claude H.4.5 An. 0.056 0.111 0.461
Claude H.4.5 MO. 0.042 0.086 0.408
Claude H.4.5 MU. 0.063 0.133 0.498
Claude S.4.6 Bl. 0.055 0.174 0.277
Claude S.4.6 In. 0.070 0.186 0.293
Claude S.4.6 An. 0.098 0.201 0.509
Claude S.4.6 MO. 0.057 0.119 0.462
Claude S.4.6 MU. 0.098 0.150 0.559
Gemini 2.5 Bl. 0.036 0.114 0.269
Gemini 2.5 In. 0.018 0.104 0.245
Gemini 2.5 An. 0.046 0.132 0.253
Gemini 2.5 MO. 0.041 0.127 0.255
Gemini 2.5 MU. 0.037 0.118 0.287
Gemini 3.1 Bl. 0.040 0.143 0.246
Gemini 3.1 In. 0.061 0.183 0.286
Gemini 3.1 An. 0.053 0.208 0.342
Gemini 3.1 MO. 0.064 0.178 0.299
Gemini 3.1 MU. 0.080 0.232 0.398
Table 10: Description-derived M2-style F0.5F_{0.5} under Strict (S), Detection (D), and Overlap (O) matching. Corpus micro-averages over 123 passages; matching rules and localization coverage are given in Appendix A.5.
Model Count O (all) O (local) Gap
GPT-4o 0.996 0.375 0.419 0.577
GPT-5.4 0.988 0.202 0.350 0.638
Claude H.4.5 0.999 0.461 0.478 0.521
Claude S.4.6 0.993 0.509 0.531 0.462
Gemini 2.5 0.696 0.253 0.337 0.359
Gemini 3.1 0.599 0.342 0.375 0.224
Table 11: Anchored sensitivity to unlocalized descriptions. The mean count–edit gap changes from 0.522 to 0.464 and remains as high as 0.638. The mean Blind\toAnchored edit change is 0.059 under either policy.

B.3 Corrected-text ERRANT-based Results

Model Δ\DeltaCountΔ-\DeltaERRM 95% CI
GPT-4o +0.224+0.224 [+0.100,+0.416][+0.100,+0.416]
GPT-5.4 +0.348+0.348 [+0.286,+0.413][+0.286,+0.413]
Claude H.4.5 +0.115+0.115 [+0.065,+0.166][+0.065,+0.166]
Claude S.4.6 +0.132+0.132 [+0.075,+0.185][+0.075,+0.185]
Gemini 2.5 +0.156+0.156 [+0.080,+0.240][+0.080,+0.240]
Gemini 3.1 +0.072+0.072 [0.018,+0.161][-0.018,+0.161]
Table 12: Paired-bootstrap contrast between the Blind\toAnchored changes in Count-F1 and multi-reference ERRANT F0.5F_{0.5}. The contrast is positive at the 95%95\% level for five of six models.
Model Cond. C-F1 D-FF noC E0 E2 Gap
GPT-4o Bl. 0.715 0.260 1 0.320 0.503 +0.211
GPT-4o In. 0.726 0.247 1 0.309 0.488 +0.238
GPT-4o An. 0.996 0.339 0 0.349 0.547 +0.449
GPT-4o MO. 0.834 0.305 0 0.312 0.501 +0.333
GPT-4o MU. 0.658 0.286 1 0.378 0.562 +0.096
GPT-5.4 Bl. 0.584 0.144 0 0.305 0.479 +0.105
GPT-5.4 In. 0.563 0.114 0 0.282 0.445 +0.118
GPT-5.4 An. 1.000 0.136 0 0.382 0.546 +0.454
GPT-5.4 MO. 0.834 0.147 0 0.371 0.563 +0.272
GPT-5.4 MU. 0.749 0.185 0 0.367 0.522 +0.228
C-H4.5 Bl. 0.870 0.432 0 0.304 0.472 +0.398
C-H4.5 In. 0.872 0.443 0 0.320 0.504 +0.368
C-H4.5 An. 0.999 0.440 0 0.322 0.484 +0.515
C-H4.5 MO. 0.837 0.378 0 0.297 0.456 +0.381
C-H4.5 MU. 0.769 0.469 0 0.322 0.464 +0.305
C-S4.6 Bl. 0.836 0.520 0 0.339 0.517 +0.319
C-S4.6 In. 0.831 0.531 0 0.339 0.511 +0.320
C-S4.6 An. 0.992 0.524 0 0.372 0.541 +0.450
C-S4.6 MO. 0.838 0.442 0 0.317 0.488 +0.350
C-S4.6 MU. 0.769 0.531 0 0.378 0.555 +0.214
Gem2.5 Bl. 0.828 0.245 23 0.333 0.533 +0.296
Gem2.5 In. 0.850 0.195 52 0.262 0.381 +0.469
Gem2.5 An. 0.929 0.205 44 0.320 0.481 +0.448
Gem2.5 MO. 0.852 0.195 52 0.242 0.397 +0.455
Gem2.5 MU. 0.766 0.208 22 0.279 0.472 +0.294
Gem3.1 Bl. 0.678 0.234 47 0.251 0.419 +0.259
Gem3.1 In. 0.624 0.227 21 0.333 0.548 +0.076
Gem3.1 An. 0.906 0.413 29 0.410 0.572 +0.334
Gem3.1 MO. 0.746 0.319 68 0.205 0.327 +0.419
Gem3.1 MU. 0.658 0.412 54 0.096 0.123 +0.535
Table 13: Path-B corpus scores over 83 passages. Claude and Gemini are shortened to C-H, C-S, and Gem; conditions are Bl., In., An., MO., and MU. C-F1 is count-overlap F1; D-FF is description-derived overlap F0.5F_{0.5}; noC counts missing corrected passages (including the missing call); E0 uses Annotator 0; E2 uses the local two-reference rule; Gap is C-F1 minus E2. Missing counts and corrections are failures.