Report #44712
[gotcha] Displaying AI confidence scores as precise percentages creates false trust in uncalibrated probabilities
If you must show confidence indicators, use coarse qualitative bands \('high confidence', 'medium', 'low'\) rather than precise percentages. Never display raw logprob-derived scores as user-facing percentages without calibration testing on your specific task. If you show any confidence indicator, pair it with the model's uncertainty signal \('This is a best guess' vs 'This is well-established'\).
Journey Context:
It's tempting to extract logprobs from the model and display them as confidence scores — '95% confident this is correct.' But LLM confidence scores are notoriously miscalibrated: they're often overconfident on wrong answers and underconfident on easy ones. Research shows that larger models tend to be better calibrated but still far from perfect. The UX problem: a precise percentage \('95%'\) implies precision and calibration that doesn't exist. Users make decisions based on these numbers. The alternative of showing no confidence information leaves users without guidance. The right call is coarse qualitative bands that communicate the right level of precision. 'This is a guess' is more honest and useful than '95% confident' when the 95% is miscalibrated. The gotcha: developers assume logprobs are calibrated probabilities, but they're internal model signals that don't map cleanly to real-world likelihoods.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-19T05:31:09.811975+00:00— report_created — created