EN KO
← All Publications

Confidence Estimation from Epistemic Signals in LLM Reasoning Traces

KIIS 2026
Ki Jung Seo, Taeuk Kim

One-Line Summary

A confidence estimation approach that reads an LLM's own step-by-step reasoning trace — mining epistemic signals such as hedging cues, uncertainty expressions, self-assessment, and internal consistency — to infer how confident the model really is in its answer, rather than relying solely on final-answer logits or a single verbalized confidence number.

Background & Motivation

Knowing when a large language model is likely to be right is essential for deploying LLMs in high-stakes settings, for deciding when to abstain, and for routing hard cases to humans or stronger models. Two families of confidence signals dominate current practice: token-level probabilities (softmax logits over the final answer) and verbalized confidence (asking the model to state a percentage or a phrase such as "I'm fairly sure"). Both are convenient, but both are known to be poorly calibrated — logits are distorted by surface form and length, while verbalized numbers tend to be systematically overconfident and coarse.

With the rise of reasoning-oriented LLMs, answers are increasingly produced through an explicit chain of intermediate steps. This reasoning trace is far richer than the final token distribution: as the model works through a problem it naturally leaves behind traces of doubt and commitment — hedging ("this might be", "I'm not certain"), self-corrections and backtracking, competing hypotheses that are raised and discarded, and moments where multiple steps converge on the same conclusion. These epistemic signals reflect the model's evolving internal state about the problem, yet standard confidence methods that look only at the final answer discard them entirely.

Key Insight: A model's reasoning trace carries abundant epistemic signals — hedging language, self-corrections, hypothesis switches, and convergence of intermediate conclusions — that are strongly predictive of answer correctness. Standard confidence methods, which read only final-answer logits or a single verbalized number, throw this evidence away. Treating the reasoning trace itself as a source of confidence evidence offers a more faithful and interpretable estimate of how sure the model actually is.

This work builds on the lab's line of research on trustworthy confidence estimation, including ADVICE (Answer-Dependent Verbalized Confidence Estimation, ACL 2026), which improves calibration by grounding verbalized confidence in the specific answer produced. Where ADVICE conditions confidence on the final answer, this study looks one level deeper — at the reasoning process that generated that answer — and asks whether the epistemic texture of the trace itself is a usable, and better calibrated, confidence signal.

Proposed Method

The core idea is to treat confidence estimation as a two-stage pipeline over the reasoning trace: first surface the epistemic signals that the model emits while reasoning, then aggregate them into a single confidence estimate for the final answer.

1
Elicit an Explicit Reasoning Trace
The model is prompted to solve each problem by producing a step-by-step reasoning trace before committing to a final answer. This makes the model's intermediate deliberation observable, exposing where it is confident, where it hedges, and where it revises — the raw material from which epistemic signals are extracted. Because the answer and its supporting reasoning are generated together, the confidence estimate can be tied directly to the path that produced the answer.
2
Extract Epistemic Signals from the Trace
The reasoning trace is analyzed for markers of epistemic state along several complementary dimensions: hedging and uncertainty cues (expressions such as "maybe", "I'm not sure", "possibly", "it could be"), self-assessment and self-correction (moments where the model checks, doubts, or revises its own steps), and internal consistency (whether intermediate steps and any alternative lines of reasoning converge on the same conclusion or diverge). Each dimension yields a signal that is qualitatively different from a raw logit and directly reflects how the model reasoned toward its answer.
3
Aggregate Signals into a Confidence Estimate
The extracted epistemic signals are combined into a single scalar confidence for the final answer. Abundant hedging, frequent self-correction, or divergence among intermediate conclusions push the estimate down, while decisive, consistent, and mutually reinforcing reasoning pushes it up. Because the estimate is derived from interpretable trace-level evidence, a low-confidence prediction can be traced back to the specific points of doubt or inconsistency in the reasoning — making the confidence not just a number but an explanation.

Design Principles:

  • Trace as evidence, not just output: The reasoning trace is treated as a first-class source of confidence evidence rather than a byproduct to be discarded once the answer is read off.
  • Complementary to logits and verbalization: Epistemic-signal confidence captures information that final-answer logits and single verbalized numbers miss, and can be combined with them rather than replacing them outright.
  • Interpretability by construction: Because signals are grounded in observable phrases and consistency patterns, the resulting confidence is auditable — one can point to where the model expressed doubt.

Key Points

Why It Matters

As LLMs increasingly answer questions by reasoning out loud, the reasoning trace becomes one of the most information-rich artifacts a model produces — yet confidence estimation has largely ignored it. This work reframes the trace as evidence: the way a model hedges, second-guesses, and converges while thinking is itself a window into how sure it is. Reading confidence from these epistemic signals yields estimates that are more faithful to the model's actual reasoning and, crucially, interpretable — a low-confidence flag can be explained rather than merely reported.

Practically, well-grounded confidence is the foundation of safe LLM deployment: it determines when to trust an answer, when to abstain, and when to route a case to a human or a stronger model. By extracting confidence from the reasoning process rather than from final-answer probabilities alone, the approach targets exactly the failure mode that plagues conventional methods — confident-sounding but wrong answers whose doubt was visible in the reasoning but discarded at the output.

The study also extends the lab's broader agenda on trustworthy confidence estimation. Alongside ADVICE's answer-dependent verbalized confidence, it pushes the estimation target inward — from the final answer to the epistemic content of the reasoning that produced it — suggesting that the richest confidence signals may live inside the trace, not at its end.

Confidence Estimation Reasoning