LLM Confidence Estimates Are Broken — And So Is How We Evaluate Them
New ACL 2026 paper reveals LLM verbalized confidence is dangerously sparse, and AUARC interpolation flips method rankings. Operators must rethink trust signals.
What Happened
On August 5, 2026, researchers Elena Merdjanovska, Omar Zaidan, and Andreas Rücklé published a paper at ACL 2026 Findings that exposes two compounding problems in how the AI industry estimates and evaluates LLM confidence for classification tasks.
Problem 1: Verbalized confidence is extremely sparse. When you ask an LLM to state its confidence as a percentage, it doesn't produce a smooth distribution. Qwen3-32B, for example, outputs only eight unique confidence values on the SST-2 sentiment dataset — and over half of all predictions land at exactly 95%. This isn't a quirk of one model or one dataset: the researchers observed the same pattern across four datasets and two different LLMs.
This matters because confidence scores are supposed to help you decide which predictions to trust and which to send for human review. If most predictions cluster at 95%, you have no meaningful way to rank them by difficulty.
Problem 2: The evaluation metric itself is unreliable. The standard metric for evaluating confidence methods is AUARC (area under the accuracy-rejection curve). The paper shows that the choice of interpolation — how you fill in the gaps between discrete confidence values — dramatically changes which method wins. Consistency sampling, for instance, ranked best under linear interpolation but dropped to worst under stepwise interpolation. This means published benchmark comparisons may be artifacts of the interpolation method, not reflections of actual method quality.
The authors advocate for standardizing stepwise interpolation, which they argue provides fairer comparisons. Under this standardized evaluation, they introduce a method called verbalization logprobs: weighting the verbalized digits by their token probabilities. This approach breaks the sparsity problem and achieves the best AUARC — +2.3 points over vanilla verbalization — with zero additional inference cost.
Why It Matters
If you're operating an LLM-based classification pipeline, this paper challenges two assumptions you're likely making.
First, you probably assume that when your LLM says "95% confident," it's meaningfully more confident than when it says "90% confident." The data says otherwise. The model is likely outputting a small set of cached-feeling values, and the difference between them carries little signal about actual prediction reliability.
Second, if you chose your confidence estimation method based on published benchmarks, those rankings may be wrong. The interpolation sensitivity in AUARC means a method that looked best on paper could actually be worst in practice. This is particularly relevant given prior MasterNodeAI coverage of LLM evaluation methodology — including work on encoder vs. decoder safety judges and uncertainty-based decontamination — where evaluation metric choice has repeatedly surfaced as a hidden variable.
The verbalization logprobs fix is immediately actionable. If you're already accessing token logprobs from your LLM API (most major providers expose this), you can weight verbalized confidence digits by their probabilities without any additional API calls. It's a free upgrade to your confidence signal quality.
Who Is Affected
AI startups building human-in-the-loop classification systems are the most directly affected. If your product routes low-confidence LLM predictions to human reviewers, sparsity in confidence scores means your routing logic is likely miscalibrated — either overwhelming reviewers with cases that don't need attention or missing cases that do.
Enterprise teams evaluating confidence methods should re-run their benchmarks using stepwise interpolation. If the ranking changes, you may be deploying an inferior method based on a flawed comparison.
Open-source evaluation tooling maintainers should update AUARC implementations to default to stepwise interpolation and flag linear interpolation as potentially misleading.
Strategic Implications
For AI startup founders
Audit your confidence score distribution today. Pull the last 1,000 predictions and plot a histogram of verbalized confidence values. If you see heavy clustering at a few values — especially 95% — your human-in-the-loop routing is operating on a near-binary signal, not a graded one. Implement verbalization logprobs as an immediate fix: it requires no architecture changes, no extra inference calls, and the paper shows a 2.3-point AUARC improvement.
For developers building with AI APIs
Stop treating AUARC rankings from papers as ground truth. The interpolation method is a confounding variable that can flip results entirely. When evaluating confidence methods in your own pipeline, use stepwise interpolation and document the choice. If you're already pulling logprobs from your API, combining them with verbalized digits is a one-day engineering task with measurable payoff.
For non-technical business owners evaluating AI tools
Ask your vendor a specific question: "What distribution of confidence scores does your model produce on our data type?" If the answer is that most predictions cluster at a few values, the confidence signal isn't doing what you think it is. A system that says "95% confident" on 60% of inputs is not discriminating — it's giving you a false sense of precision that could lead to over-automating decisions that still need human judgment.
What to Watch Next
Watch for adoption of verbalization logprobs in open-source evaluation frameworks like LM-Evaluation-Harness and OpenCompass. If major tooling adopts stepwise interpolation as the default, expect a wave of re-evaluations that may reshuffle published confidence method rankings. Also monitor whether API providers (OpenAI, Anthropic, Google) begin offering calibrated confidence natively, which would make verbalization-based methods obsolete.
Frequently Asked Questions
Q: What is verbalization sparsity in LLM confidence estimation?
A: When LLMs are asked to state their confidence as a percentage, they tend to output only a small number of unique values rather than a smooth distribution. For example, Qwen3-32B produces only 8 unique confidence values on SST-2, with over half being exactly 95%. This makes it difficult to meaningfully rank predictions by confidence.
Q: How does verbalization logprobs fix the sparsity problem?
A: Verbalization logprobs weights each digit in the verbalized confidence score by its token probability from the LLM. This breaks the sparsity by introducing continuous variation based on how uncertain the model is about each digit it outputs. It requires no additional inference calls — just access to the logprobs that most LLM APIs already expose.
Q: Why does AUARC interpolation matter?
A: AUARC measures how well confidence scores enable you to reject low-confidence predictions. When confidence values are sparse, the metric must interpolate between points. Linear interpolation can make a method appear superior when it's actually worse — the paper shows consistency sampling ranking best under linear but worst under stepwise interpolation. The authors recommend standardizing on stepwise interpolation for fairer comparisons.