Ecosystem & Emerging Terms

Calibrated Confidence

Also called: model calibration · probability calibration · calibration

A model's confidence is calibrated when the probabilities it states match reality: among all the answers it gives at 80% confidence, about 80% should be correct.

Calibration is about honesty, not accuracy. A model can be right 70% of the time and perfectly calibrated if it says 70% every time, and a highly accurate model can be badly calibrated if it says 99% when it is right 85% of the time.

This matters as soon as software acts on confidence. Deciding to auto-approve above a threshold, or to send anything below it to a person, assumes the numbers mean something (see confidence-threshold-routing). Language models are often poorly calibrated when they state confidence in words: they tend to sound sure regardless of whether they are right, which is one route to a confident hallucination.

Some decision models, such as jev, are trained specifically to output probabilities that are calibrated (rlcd).

How it works

To check calibration you need labelled examples. Collect the model's predicted probability and whether it was actually correct for each one, group the predictions into confidence bands (for example 0.5–0.6, 0.6–0.7, and so on), and compare each band's average stated confidence with its real hit rate. A plot of this is called a reliability diagram. A single summary number such as expected calibration error or the Brier score is often reported. Calibration should be checked on data that looks like your production traffic, because it can drift when the input distribution changes.

Example

A team routes support tickets by an automatic classifier and lets it act alone above 0.9 confidence. Before trusting that, they label 500 past tickets and find that among predictions at 0.9 or higher the classifier was right 97% of the time, but among those at 0.6–0.7 only 41%. The high band is safe to automate; the low band should go to a person.

Common misconceptions

Often assumed: A confident model is a correct model.
Actually: Confidence and correctness are separate. Calibration measures how well the first predicts the second, and many models are overconfident.
Often assumed: If a vendor says its probabilities are calibrated, you can skip your own test.
Actually: Calibration is measured on a particular data distribution. Confirm it on your own labelled examples before setting thresholds.

FAQ

What does calibrated confidence mean?
That the model's stated probabilities match how often it is really right, so answers given at 80% confidence are correct about 80% of the time.
How do you measure model calibration?
Group predictions by confidence on labelled data and compare each group's average confidence with its actual accuracy, often shown as a reliability diagram or summarised by expected calibration error or the Brier score.
Are LLMs well calibrated?
Often not when they state confidence in words; they tend to be overconfident. Models trained specifically for calibrated probabilities aim to do better, but it should still be checked on your own data.

Part of the Jev topic guide — read the full explainer →

Last checked: 2026-09-21

Related terms