REVIEW 4 major objections 6 minor 1 cited by
Evaluating and Calibrating LLM Confidence on Questions with Multiple Correct Answers
T0 review · 4 major / 6 minor · reviewed 2026-08-03 · deepseek-v4-flash
Pith's one-line read Summing response probabilities fixes LLM confidence calibration
desk verdict Useful benchmark and a plausible cardinality effect, but SCA's calibration claim needs ECE and the Math domain construction is broken. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
SCA (Semantic Confidence Aggregation): sample N responses, optionally group them into semantic clusters, and take the question's confidence as the sum of token-level sequence generation probabilities over all clusters (or all responses when threshold τ=0). The key move is aggregating absolute probabilities rather than normalizing or counting agreement; absolute token probabilities already assign low weight to spurious answers, so the total reflects the model's belief across all valid answers instead of punishing disagreement. The other machinery is MACE, a benchmark built from Wikidata triplets and rule-synthesized math questions with exactly 1, 2, 4, or 6 ground-truth answers, which makes t
What would settle it
Compute confidence on a new set of questions where answer cardinality is known by construction (e.g., generated from a database with explicit answer sets) and check whether the accuracy/confidence divergence and SCA's advantage persist; alternatively, re-annotate a random sample of MACE to see whether any 1a/2a/4a/6a questions actually have a different number of valid answers, and if the mismatch is large enough, the reported trends would disappear.
Extended reading notes
Core claim
The central discovery is that consistency-based confidence estimates conflate answer-space diversity with model uncertainty. On questions with multiple valid answers, a model that samples several different but equally correct answers appears to 'disagree with itself,' producing low confidence scores indistinguishable from genuine doubt. The paper shows this failure extends beyond consistency methods to token-probability and verbalized methods, and that larger models suffer sharper confidence drops because they know a wider set of correct answers and therefore alternate among more of them. The correction proposed is SCA: sum the per-token generation probabilities of all sampled responses (opt
Load-bearing premise
The MACE benchmark's ground-truth answer sets are complete and exactly 1, 2, 4, or 6 correct answers; if any answer list is missing valid answers—especially in the Math domain, whose construction is described inconsistently (uniform sampling vs interval templates)—the measured decline in confidence and the gains from SCA could be artifacts rather than properties of multi-answer questions.
Editorial extensions
If this is right
- In real-world deployments where questions can have several valid answers, existing confidence scores (consistency, verbalized, token-probability) systematically under-report certainty, which can mislead hallucination detection and retrieval-augmentation triggers.
- Larger models are more susceptible to this underestimation because they know more correct answers; calibration comparisons between model sizes that ignore answer cardinality will be biased.
- Simple summation of token-level probabilities across samples gives strong calibration without clustering or threshold tuning, meaning the correction is cheap to compute.
- SCA preserves single-answer calibration while fixing mixed-answer settings, so it can replace existing training-free estimators without sacrificing previous gains.
- Confidence on multi-answer questions should be interpreted as a sum over valid alternatives, not as the probability of one specific answer.
Reading between the lines
- The same accuracy–confidence divergence should appear in other 'multiple acceptable output' settings, such as open-ended QA, code generation, and summarization; a testable extension is whether SCA-style aggregation improves calibration for tasks with a set of acceptable outputs rather than a single reference.
- The threshold-free result suggests that token-level probability mass is already concentrated on 'the set of things the model is willing to say'; summing absolute probabilities effectively computes a lower bound on the model's total belief over its answer space. One could test whether a closed-form Bayesian posterior over answer clusters reproduces SCA without sampling.
- If answer sets in MACE are incomplete, the observed accuracy-increase/confidence-decrease pattern would be confounded by label noise; a stress test that re-annotates a random subset and measures robustness would clarify how much of the effect is real.
- The 'larger models drop more' result implies that scaling up a model can worsen calibration on open questions even as accuracy improves; a practical consequence is that calibration targets should be conditioned on expected answer-set size, not just on question type.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper introduces MACE, a 12,000-question benchmark with 1/2/4/6 correct answers across six factual domains, and uses it to evaluate 15 training-free confidence calibration methods on four LLM families. The main empirical claim is that as the number of valid answers increases, QA accuracy rises while estimated confidence falls, causing miscalibration on mixed answer-count questions. The paper proposes Semantic Confidence Aggregation (SCA), which sums token-level generation probabilities over sampled responses (optionally filtered by a threshold), and reports that SCA achieves the best AUROC on mixed-answer settings while remaining competitive on single-answer questions.
Significance. The paper targets a real and understudied problem: existing calibration methods are designed for single-answer QA, and multi-answer questions create a systematic mismatch between consistency-based uncertainty and correctness. The trend documented in Table 3 is nontrivial and potentially useful; the benchmark, if carefully constructed, would be a valuable resource. A particular strength is that the main SCA result at tau=0 has no fitted parameters, so the comparison is not a tuning artifact; the authors also include a wide set of baselines and model families. However, the current evidence is not yet sufficient for the paper's strongest claims: the Math domain construction is internally inconsistent, and SCA is evaluated only by AUROC, not by probability-scale calibration, so the 'state-of-the-art calibration' claim is not demonstrated.
major comments (4)
- [Appendix A.5 vs. Table 5 / Section 3.4] The Math-domain construction is internally inconsistent and undermines the cardinality control that drives both main results. Section 3.4 and Table 5 promise questions of the form 'Name one {number type} number between {lower_num} and {upper_num}' with exactly 1, 2, 4, or 6 correct answers, but Appendix A.5 states that 'we do not construct natural questions explicitly' and instead 'generate queries by uniformly sampling numbers from the interval [0,1,000,000]'. No rule is given for converting a sampled number into an interval containing exactly the labeled number of primes/squares/cubes/Fibonacci/triangular numbers; a random interval in [0,10^6] will typically contain far more than 6 such numbers. As written, the Math answer-count labels are not reproducible, so the observed accuracy/confidence trends and SCA gains may be driven by label noise or uncontrolled difficulty. Please provide t
- [Section 6.3, Table 4, Table 18, Eq. (1)-(2)] SCA is claimed to 'achieve state-of-the-art calibration performance', but the paper reports only AUROC for SCA. AUROC is a rank-based discrimination metric and is invariant to monotone transformations of the confidence score; it does not measure whether confidence equals accuracy on the probability scale. Moreover, Eq. (2) sums absolute token-level probabilities over sampled responses and is not normalized to [0,1]; depending on N and duplicate responses, the score can exceed 1. No ECE or reliability diagram is reported for SCA in Table 18 (which lists ECE only for the 15 baselines). Please add ECE/reliability analysis for SCA (and ideally for the other models) and specify how the raw sum is rescaled; otherwise the central contribution is a ranking heuristic, not a calibrated confidence.
- [Section 6.3, Table 4, Appendix D.1] The SCA advantage over existing methods is small and is not accompanied by significance testing. On LLaMA-3.1-70B, SCA(tau=0) AUROC is 80.5 vs. 80.9 for Perplexity on [1], 81.2 vs. 80.3 on [1,2], 79.2 vs. 78.1 on [1,2,4], and 76.7 vs. 75.3 on [1,2,4,6]; on Qwen-2.5-72B the pattern is similar. Thus on the single-answer setting SCA is actually below the best baseline, and the mixed-setting gains are within 1-2 AUROC points. No confidence intervals, multiple runs, or paired significance tests are reported, and SCA is evaluated on only two of the model families used elsewhere. Please provide variability estimates and test the mixed-setting advantage against the best baseline.
- [Section 4.1, Appendix B, Tables 3/8-15] The central trend that 'estimated confidence decreases' requires a common confidence scale, but the paper never defines how the entropy/perplexity quantities in Appendix B are converted to the 'Confidence' percentages in Tables 3 and 8-15. Equations (3), (4), (7), and (12) define uncertainties U, not confidences C; without the transformation, the reported 1a->6a declines for Prob Entropy, N-Prob Entropy, Sem Entropy, and Perplexity cannot be interpreted. Please state the explicit monotone mapping used (or, if raw values are reported, correct the tables), since this mapping is load-bearing for the paper's first finding.
minor comments (6)
- [Section 5.2] Typo: 'exisiting' should be 'existing'.
- [Figure 3] The x-axis labels '[1]', '[1,2]', etc. are not defined in the caption. Please explain that they denote mixed sets of answer counts.
- [Section 1 / Dataset links] The placeholders '/githubCode' and 'Datasets' appear without URLs. Please provide the actual code and data links.
- [References] Several references are malformed or incomplete (e.g., 'Joue-An Hu and 1 others', 'Hurst et al.' with truncated author lists). Use a consistent, complete reference format.
- [Appendix D.1] The text says results for other models are reported in Appendix D.1, but only Qwen-2.5-72B is actually shown. Clarify which models were tested and where the remaining results are.
- [Appendix C.2] Minor formatting issues: 'over70%' should read 'over 70%'; also the threshold discussion would benefit from a reference to the figure or table that shows the cluster probability distribution.
Circularity Check
Central claims are empirically self-contained; only minor definitional and post-hoc elements appear in the consistency-mechanism framing and the knowledge-coverage threshold.
-
self definitional
[Introduction (para. 2); Appendix §B.1 Eq. (10); Table 3]
"Response-consistency–based approaches rely on the implicit assumption that higher agreement among generated responses indicates greater correctness. While this assumption often holds for single-answer questions, it breaks down for questions with multiple valid answers... disagreement among equally correct responses can lead to low confidence estimates, even when the model possesses the relevant knowledge. ... Consistency score measures the proportion of model samples that agree with the aggregated prediction ˜Y among M sampled outputs: C_consistency = 1/M Σ I{ ˆYi = ˜Y}"
For consistency-based methods, the reported confidence collapse on multi-answer questions (Table 3: Consis 51.3 at 1a to 35.9 at 6a) is largely a restatement of the metric's definition: consistency is defined as the fraction of samples agreeing with the aggregate answer, so whenever several answers are valid and the model alternates among them, the score must drop unless the model always emits the same answer. The paper itself names this mechanism, so the framed 'discovery' is partially forced by construction. This is not load-bearing for the full claim, since the accuracy rise and confidence decline are also shown for token-probability and verbalized methods, which are not definitionally tied to agreement.
-
other
[§5.3 (Definition of Knowledge Coverage); Appendix §C.2]
"Specifically, we apply a token-level probability–based filter and retain only clusters whose cumulative probability exceeds a threshold of τ = 0.1. ... Motivated by the empirical distribution, we retain only clusters whose cumulative probability satisfies P(C_m) ≥ 0.1."
The τ=0.1 threshold that defines 'knowledge coverage' is selected from the same cluster-probability distribution it is then used to characterize, and the same token-level probabilities underlie both the coverage measure and the confidence estimates being 'explained.' The §5.3 explanation of the sharper confidence decline in larger models (broader knowledge coverage → wider answer diversity → lower consistency) therefore partly restates the observations from which the threshold and clusters were derived. This is an auxiliary analysis, not the central calibration claim, and the SCA results do not depend on it.
full rationale
The paper's core contributions—the MACE benchmark, the observation that accuracy rises while estimated confidence falls as ground-truth cardinality increases, and the SCA calibration method—are supported by held-out empirical evaluation rather than by derivation from their own outputs. SCA is evaluated on a test set distinct from the development set, and the paper shows τ=0 matches or nearly matches the dev-tuned optimum (Table 4), so the central result does not hinge on the fitted threshold; the tuned-τ reporting is therefore not a 'fitted input called prediction.' The self-citations (Ni et al. 2024, 2025a, 2025b) are contextual and non-load-bearing. The two mild circular elements are: (1) for consistency-based methods, low confidence under multiple valid answers is a built-in consequence of the agreement metric (Eq. 10), though the paper explicitly acknowledges this mechanism and the finding extends to non-consistency methods; and (2) the knowledge-coverage threshold τ=0.1 in §5.3 is chosen post hoc from the very distribution it summarizes, making that explanatory analysis partially restate its input. Neither element forces the central claims, which would stand or fall on benchmark quality and test-set AUROC. The internal inconsistency in MACE Math construction (Table 5 interval template vs. §A.5 uniform sampling) is a ground-truth-quality/correctness risk, not circularity, and is outside this pass's scope.
Assumptions & free parameters
free parameters (4)
- Sampling count N =
20
- SCA threshold τ (non-zero variant) =
0 recommended; 0.05 (LLaMA-70B dev), 0.3 (Qwen-72B dev) when tuned
- Knowledge-coverage cluster threshold τ =
0.1
- K-means sampling cluster count k =
500
assumptions (6)
- domain assumption Wikidata relationships are complete and correct for the chosen domains (award winners, office holders, subdivisions, rivers, languages).
- domain assumption Human annotators can certify exact answer cardinality (1, 2, 4, 6) via manual verification.
- domain assumption GPT-4o is a valid judge of answer correctness and semantic consistency.
- domain assumption Token-level generation probability p(s) is a meaningful confidence signal when summed across sampled responses.
- domain assumption Questions with different answer counts are comparable in difficulty except for the number of valid answers.
- ad hoc to paper Math questions can be generated with exactly 1, 2, 4, or 6 correct answers.
Cite this review
Pith. "Pith review of Evaluating and Calibrating LLM Confidence on Questions with Multiple Correct Answers." pith.science (2026). https://pith.science/paper/ZAH67EVV
@misc{pith2026260207842,
author = {Pith},
title = {Pith review of: Evaluating and Calibrating LLM Confidence on Questions with Multiple Correct Answers},
year = {2026},
howpublished = {\url{https://pith.science/paper/ZAH67EVV}},
note = {Machine review of arXiv:2602.07842}
}
read the original abstract
Confidence calibration is essential for making large language models (LLMs) reliable, yet existing training-free methods have been primarily studied under single-answer question answering. In this paper, we show that these methods break down in the presence of multiple valid answers, where disagreement among equally correct responses leads to systematic underestimation of confidence. To enable a systematic study of this phenomenon, we introduce MACE, a benchmark of 12,000 factual questions spanning six domains with varying numbers of correct answers. Experiments across 15 representative calibration methods and four LLM families (7B-72B) reveal that while accuracy increases with answer cardinality, estimated confidence consistently decreases, causing severe miscalibration for questions with mixed answer counts. To address this issue, we propose Semantic Confidence Aggregation (SCA), which aggregates confidence over multiple high-probability sampled responses. SCA achieves state-of-the-art calibration performance under mixed-answer settings while preserving strong calibration on single-answer questions.
Figures
Figures from the paper (5 more)
Forward citations
Cited by 1 Pith paper
-
Can LLM Rerankers Predict Their Own Ranking Performance?
LLM rerankers can internally predict ranking quality via self-consistency of sampled outputs, matching SOTA external QPP while direct confidence is overconfident; supervised token-efficient methods improve calibration.
Reference graph
Works this paper leans on
-
[2023]
InProceedings of EMNLP 2023, pages 530–543
Selectively answering ambiguous questions. InProceedings of EMNLP 2023, pages 530–543. DeepSeek-AI. 2024. Deepseek-v3: Scaling open-source language models with dense and mixture-of-experts architecture.arXiv preprint arXiv:2412.19437. Shrey Desai and Greg Durrett. 2020. Calibra- tion of pre-trained transformers.arXiv preprint arXiv:2003.07892. Yanai Elaza...
arXiv 2023
-
[2024]
When do llms need retrieval augmentation? mitigating llms’ overconfidence helps retrieval aug- mentation.arXiv preprint arXiv:2402.11457. Shiyu Ni, Keping Bi, Jiafeng Guo, Minghao Tang, Jing- tong Wu, Zengxin Han, and Xueqi Cheng. 2025a. Annotation-efficient universal honesty alignment. arXiv preprint arXiv:2510.17509. Shiyu Ni, Keping Bi, Jiafeng Guo, Lu...
arXiv 2023
Reviewed August 3, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.