Can You Trust Jev's Confidence?

September 19, 2026

Suppose you route decisions on a model's confidence: accept everything above 90%, send the rest to a person. That policy only works if "90%" means something. Jev returns a confidence with its answers, and in our last article we said the way to find out is to test it against labeled data. So we did.

The short version: Jev's confidence is useful, but it isn't a probability of being right until you calibrate it. And the way you set up the question in the request changes what the raw numbers look like.

Line chart of Jev's stated confidence against actual accuracy. Noul climbs toward the perfect-calibration diagonal, reaching 100% at the top. Choice stays near 50% until 93% confidence, then jumps to 90%.

The same sentiment task, asked two ways. Stated confidence runs along the bottom; how often Jev was actually right runs up the side. A perfectly calibrated model would sit on the dashed diagonal.

Three words that get mixed up

  • Accuracy is measured. It's the share of predictions that agreed with the ground-truth labels, over some set of examples.
  • Confidence belongs to a single prediction. It's how strongly the model favors the answer it gave: the probability it assigns to that answer. On its own it says nothing about whether the answer is right.
  • Calibration is how well the two line up. Among predictions made with about 90% confidence, is accuracy about 90%? Expected calibration error (ECE) is the average gap between stated confidence and observed accuracy, and it's the number we'll keep coming back to.

A model can be accurate and badly calibrated, or well calibrated and not very accurate. Routing decisions on confidence needs the second property.

The experiment

We reused the 10,000-line sentiment dataset from our earlier confidence-from-a-fine-tuned-classifier work. After dropping exact repeats it's 8,801 examples in four tiers of difficulty: strong, medium, weak, and neutral. The neutral tier has deliberately arbitrary labels (2,000 of the examples), so about 50% accuracy there is the correct result, and we report the numbers with and without it. We split the examples 60/40 into a calibration set (5,280) and an untouched test set (3,521).

Jev's interface takes some text and a set of typed questions. We used two of its question types for the main comparison:

  • Noul, a yes/no question that returns the probability of yes. Ours was "Is the overall sentiment of this text positive?"
  • Choice, which picks one option and returns a probability for each. Ours chose between positive and negative.

We also asked six other versions of the question, covering wording, polarity, option order, option descriptions, an extra "neutral" option, and a five-level Score rubric. Jev evaluates the questions in a request independently, so we sent the whole panel in a single request per example. The base run of 8,801 requests came to about 2.9 million input tokens, roughly $0.12 at TypeSafe's published $42 per billion, with a median latency of 0.24 seconds. The eight-question panel cost about $0.21 for the whole dataset. Those are our estimates from token counts, and they cover model charges only. The model version was jev-1.13.0.

Everything is in the Jev-Calibration repository, including Jev's raw responses, so you can rerun every chart without an API key.

Higher confidence does mean more likely right

The most important result is that Jev's confidence sorts right answers from wrong ones well. One way to measure that is AUROC: pick one correct and one incorrect answer at random, and ask how often the correct one had the higher confidence. A coin flip gets 0.5.

On the same 1,000 examples our earlier work ran through Llama 3.1-8B, Jev's confidence scored 0.83, against 0.72 for Llama's log-probability-based confidence. Without the neutral tier, it was 0.90 against 0.76. That comparison is against the base Llama model, not the fine-tuned one, with different prompts, so read it as the same data through two different systems.

And the pattern is visible in the raw buckets. For Noul, accuracy climbs from 47.6% for answers stated at 50 to 60% confidence to 100% above 95%.

But the numbers aren't probabilities of being right yet

Ranking well doesn't make the numbers honest. Averaged over all 8,801 examples, Noul's mean confidence was 79.0% against 72.3% accuracy: about 7 points overconfident. Choice's was 91.4% against 76.1%: about 15 points. Without the arbitrary-label neutral tier those gaps shrink to about 1 and 9 points. So Noul is modestly overconfident, and Choice is clearly overconfident.

The averages hide where the trouble is, and it's different for each question type.

Noul: solid at the extremes, shaky in the middle

Bar chart for Noul, by stated-confidence bucket. Accuracy trails stated confidence in the middle buckets (54% at 71%), and all 2,104 answers above 95% were correct.

Noul, raw values, all 8,801 examples. Grey bars are what Jev stated; blue bars are how often it was right. Under each bucket: how many answers landed there, and their share of the total.

Every one of Noul's 2,104 answers above 95% confidence was correct, and nearly all of them were the strong and medium examples: 978 strong, 1,083 medium, 42 weak, and one neutral. Between 90 and 95% it was 95.9% accurate, better than it claimed.

The middle is where it goes wrong. In the 60 to 80% bucket, the average stated confidence was 70.7% and Jev was right 54.3% of the time. Weak and neutral examples account for 1,636 of the 1,637 errors among the 3,428 answers with 55 to 80% confidence.

Choice: close to a coin flip until 95%

Bar chart for Choice, by stated-confidence bucket. Accuracy is 50–57% in every bucket below 95%, and 90% in the top bucket, which holds 63% of all answers.

The same view for Choice. Below 95% stated confidence, accuracy hovers between 50% and 57%, whatever number Jev states.

Choice tells a different story. From 50% to 95% stated confidence, it was right 50 to 57% of the time, so the stated number carries almost no information. Only the top bucket is informative, and it's huge: 5,559 answers, 63% of everything. There, Jev's average stated confidence was 99.4% and its accuracy was 90.2% (96.1% without the neutral tier). Unlike Noul's top bucket, it includes plenty of ambiguous text: 2,276 weak-tier examples and 769 neutral-tier ones. Choice hands out near-certainty freely.

If you take one practical point from this section: on this data, Noul's raw confidence above about 90% held up, and Choice's raw confidence below 95% told us almost nothing. Even Choice's top bucket overstates by about nine points (about three and a half without the neutral tier).

How you ask changes the answer

Those two patterns raised an obvious question: is it the question type or the phrasing? We had asked Jev the same sentiment question in eight ways and derived three more setups from the answers (an expected score and two averages), so we could check.

Two dot plots comparing 11 setups for the same sentiment question. Accuracy ranges from 72.3% to 76.9%, and raw calibration error from 6.4 to 16.0 percentage points.

Eleven setups for the same question, raw values, test split. Left: accuracy at the default 0.5 cutoff. Right: calibration error of the raw P(positive).

Both measures moved:

  • Accuracy ranged from 72.3% to 76.9% at the default cutoff. Rewording a single Noul question, from "is it positive?" to "does the writer express a favorable, approving, or satisfied attitude?", took it from 72.3% to 76.1%. That's a real difference (the first is significantly worse than the two-option Choice, paired exact test p = 6×10⁻⁶) while the reworded one ties it (p = 0.95). The spread across three Noul wordings is as large as the gap between the two question types, so phrasing matters as much as type.
  • The differences all live in the weak tier. Strong (1.000), medium (about 0.997), and neutral (about 0.50) are the same for every setup. Much of the gap is the cutoff: the first Noul under-calls "positive", and once we pick the cutoff on the calibration set, the setups land within about three points of each other.
  • Raw calibration error ranged from 6.4 to 16.0 points. Averaging several framings gave the best raw calibration, and the two-option Choice variants gave the worst.

Reversing the order of Choice's options changed accuracy by under a point. The same Noul question asked inside a different request differed from its earlier answer by 0.007 on average, so the results aren't an artifact of what else is in the request.

The takeaway: the setup is part of the classifier. Report accuracy with its wording and cutoff, and don't assume a calibration you learned for one setup applies to another. That last point is our inference from the fitted curves differing across setups, and we haven't tested reusing one calibration on another.

Calibration fixes it

Calibration learns a mapping from Jev's raw probability to how often that probability was actually right, fitted on the calibration set and scored on the test set. We tried the two standard methods. Platt scaling fits a smooth logistic curve with two parameters. Isotonic regression fits any never-decreasing step function to the data.

Chart of Jev's raw P(positive) against how often the label was positive, showing a smooth Platt curve and a stepped isotonic curve. The isotonic curve follows a plateau near 65% that the Platt curve misses.

What each method does to Jev's Noul answer. The dots are what actually happened. Isotonic follows the plateau; Platt bends through it.

There's a plateau in the data. Raw scores from about 0.31 to 0.66 all corresponded to roughly 65% positive labels. A smooth sigmoid can't bend that way, so Platt splits the difference and misses at both ends. Isotonic follows the data.

For the Noul question on the test set:

ECEBrier scoreLog loss
Raw Jev0.1170.1620.467
Platt scaling0.0520.1430.420
Isotonic regression0.0080.1380.401

Neither method changes which answers rank above which, so accuracy and AUROC barely move. Calibration makes the number mean what it says, and it can't add information the score doesn't contain.

Dot plot of calibration error for 11 setups. Raw error of 6 to 16 points falls to under 2 points after isotonic regression for every setup; Platt scaling lands in between.

Calibration error on the test set for every setup. Isotonic regression brought all eleven under two points.

That held for every setup. Raw ECE ranged from 0.064 to 0.160, Platt from 0.026 to 0.115, and isotonic from 0.006 to 0.018. Once calibrated, the way you phrase the question matters much less for calibration error, though the ranking quality still differs a little.

How much labeled data do you need?

The usual advice is that isotonic regression is data-hungry and Platt is the safer choice for small calibration sets. We tested it: draw n labeled examples from the calibration set, fit both methods, score on the test set, and repeat 200 times per size.

Two panels showing calibration error against number of calibration examples for Noul and Choice. Isotonic error keeps falling with more examples; Platt error flattens after about 200.

Calibration error as the calibration set grows, for Noul (left) and Choice (right). Lines are averages over 200 random draws; bands span the 10th to 90th percentile.

The advice didn't hold on this data. For both question types, isotonic matched or beat Platt on average at every size from 20 to 5,280 examples. Platt flattens out by about 200 examples: its shape is wrong for this data, and more examples don't fix that. Isotonic keeps improving and hadn't stopped at 5,280. With 200 examples, isotonic error on the Noul question averaged 3.8 points against 5.7 for Platt; with 500 it was 2.6 against 5.4. On Choice, Platt never got below about 9 points.

Below about 50 examples, both are noisy, and one unlucky draw can be worse than not calibrating. A few hundred is enough to get most of the benefit.

What we'd do with this

  1. Pick the question setup first, and treat its wording and options as part of the model.
  2. Label a few hundred examples from your own data, including the ambiguous ones. The results above depend heavily on how many hard cases there are.
  3. Fit isotonic regression on part of them and check it on the rest.
  4. Set thresholds in calibrated terms. "Accept above 90%" then means the accepted answers are right about 90% of the time. On the non-neutral examples, ranking by calibrated confidence let us auto-accept roughly 65 to 74% of decisions at 95% accuracy or better, depending on the setup. That range is sensitive to ties, because Jev rounds its probabilities to two decimals, so we wouldn't quote a precise figure.
  5. Refit when the wording, the data source, or the model version changes.

What we haven't tested

  • One constructed sentiment dataset and one model version. This isn't a real call-QA scorecard. The band-level patterns are more likely to carry over than the averages, which depend on our tier mix.
  • Many comparisons on one test set. Picking a best setup out of eleven candidates from the same test data is optimistic, and we haven't computed confidence intervals. The gap between Platt and isotonic is large enough to trust. The ordering among setups is weaker evidence.
  • Fine-tuned and hosted models. We compared against base Llama 3.1-8B only. We've seen concentrated log-probabilities from some commonly used hosted models in our own production work, as we noted in the last article, but we didn't rerun that comparison here, so this piece makes no claim about them.
  • Jev's own confidence field. For a two-option question it's 2·p_top − 1. That measures how peaked the distribution is and isn't a probability of being right, so we worked with the top probability instead. It may behave differently with more options.

The next test is the one we proposed last time: put Jev against a scorecard we understand, in shadow mode, with expert-adjudicated calls. If the calibration holds there with a few hundred labeled examples, the case for running whole scorecards through it gets a lot stronger.

Until then, the answer to the question in the title is: yes, with a calibration step. Jev's confidence is informative out of the box, but it's a ranking until you check it against your own labels, and it's worth checking every time you change how you ask.