Skip to content
gentic.news — AI News Intelligence Platform
Connecting to the Living Graph…

Listen to today's AI briefing

Daily podcast — 5 min, AI-narrated summary of top stories

A large language model interface displays Qwen 2.5 7B with a near-constant confidence score of 0.856, while…
AI ResearchScore: 92

Qwen 2.5 7B Expresses Near-Constant Confidence Whether It Is Right or Wrong, Study Finds

A June 2026 arXiv preprint from University of Minnesota researchers tested Qwen 2.5 7B on structured clinical prediction data and found its verbalized confidence scores are essentially uninformative -- clustering between 0.856 and 0.937 no matter how well or badly the model performs. Combining SHAP-

·Jun 19, 2026·5 min read··114 views·AI-Generated·Report error
Share:
Source: arxiv.orgvia arxiv_aiWidely Reported
Does Qwen 2.5 7B know when it doesn't know on clinical tabular data?

A June 2026 arXiv paper shows Qwen 2.5 7B's verbalized confidence is near-constant (0.856–0.937) regardless of accuracy, with inverse difficulty effect where accuracy drops to 64.8% when XGBoost is 99% correct. Combining SHAP evidence with few-shot examples cuts Attribution Disagreement Score from 1.54 to 0.38.

TL;DR

A University of Minnesota preprint finds Qwen 2.5 7B outputs confidence scores in a tight band (0.856-0.937) regardless of whether its accuracy is 49% or 75%, and that combining SHAP attribution signals with few-shot examples can triple accuracy without any model retraining.

A large language model that says it is 85% confident and one that says it is 94% confident should behave very differently. A preprint published on arXiv in June 2026 by researchers at the University of Minnesota shows that for Qwen 2.5 7B on structured clinical data, those two numbers are functionally identical -- and neither predicts whether the model is actually correct.

The paper, authored by Akshat Dasula, Prasanna Desikan, and Jaideep Srivastava, tests the model on a clinical prediction task and records its verbalized confidence across conditions where accuracy ranges from 49% to 75.3%. The confidence scores barely move: the full range reported is 0.856 to 0.937. The model is, in statistical terms, epistemically uncalibrated -- its stated certainty tracks prompt format, not prediction quality.

The finding is not a quirk of Qwen. A Nature-published study on gastroenterology clinical reasoning questions, covering 48 LLMs including GPT-4o and Claude 3.5 Sonnet, found the same pattern: models maintained high confidence regardless of question difficulty or whether they were correct. The Minnesota paper adds a sharper diagnostic: it uses cross-model attribution divergence to pinpoint where Qwen's reasoning departs from a well-calibrated baseline.

The wrong answer, delivered confidently

The paper's most striking result is an inverse difficulty effect. When XGBoost -- a classical gradient-boosted tree model -- achieves 99% accuracy on a given subset of cases, Qwen 2.5 7B's accuracy falls to 64.8%. When XGBoost is only moderately certain (around 73%), Qwen matches it at 73.8% versus 73.1%. The model is most confidently wrong precisely on cases that a traditional ML model finds easy.

The authors attribute this to a 'cold start' problem: LLMs have rich prior knowledge encoded from pretraining on natural language, but structured tabular data -- rows of clinical variables with no textual context -- sits outside that prior. The model lacks the feature-space intuitions that XGBoost builds from training data, so its confidence signals reflect linguistic patterns in the prompt rather than actual predictive evidence.

This is a meaningful risk in clinical settings. If a physician or decision-support system treats verbalized confidence as a reliability signal, high-confidence wrong answers on easy cases are more dangerous than acknowledged uncertainty.

Two fixes, better together

The researchers tested four intervention conditions: baseline, few-shot examples only, SHAP attribution injection only, and the two combined.

Alone, neither few-shot examples nor SHAP injection dramatically changes accuracy. Combined, they are super-additive: the Attribution Disagreement Score (ADS) -- a measure of how differently Qwen and XGBoost weight the same features -- drops from 1.54 to 0.38, and accuracy rises from 49% to 75.3%. No retraining or fine-tuning is required.

The fourth finding is arguably the most deployment-relevant. A cross-model calibrator that uses attribution divergence between Qwen and XGBoost to estimate when the LLM is reliable reduces expected calibration error (ECE) from 0.254 to 0.080. To put that in context, a 2026 EACL benchmarking study found that LLMs with 70B+ parameters typically achieve ECE around 0.10; the calibrator brings a 7B model to roughly that standard on clinical tabular data, without accessing model weights or requiring repeated inference.

Key facts

  • Qwen 2.5 7B confidence range on the test set: 0.856-0.937 (a 0.081-point spread across wildly different accuracy levels)
  • Baseline accuracy: 49%; accuracy with combined SHAP + few-shot: 75.3%
  • Attribution Disagreement Score: 1.54 (baseline) vs. 0.38 (combined intervention)
  • Expected calibration error: 0.254 (baseline) vs. 0.080 (with cross-model calibrator)
  • XGBoost accuracy on same task: ~99% on easy subsets, ~73% on uncertain ones

Why this matters beyond one model

Qwen 2.5 7B is a capable open-weight model widely used in research and production deployments where GPT-4o licensing costs are prohibitive. The paper's findings apply to any LLM asked to reason over tabular or structured data without domain-specific fine-tuning -- a common scenario in healthcare, finance, and logistics.

The practical takeaway is not that LLMs should be abandoned for structured prediction. It is that verbalized confidence, on its own, should not be trusted as a reliability signal for structured data tasks. The paper's cross-model calibrator offers a lightweight alternative: pair the LLM with a classical ML model, compare their feature attributions, and use divergence as a proxy for when to defer to the ML model or flag for human review.

This aligns with a broader research consensus. Multiple 2026 studies confirm that XGBoost and LightGBM outperform LLMs on clinical tabular classification, while LLMs retain advantages on unstructured text and reasoning tasks. Hybrid pipelines that delegate structured prediction to classical models and use LLMs for explanation and synthesis are emerging as the practical middle ground.

What to watch

Whether the SHAP + few-shot combination generalises beyond the single clinical dataset used here is the open question. The preprint tests one model on one task; replication on larger models (Llama 3 70B, Qwen 2.5 72B) and on financial or operational tabular data would determine whether the cross-model calibrator is a broadly applicable tool or a result specific to this experimental setup. Independent replication of the arXiv preprint (2606.19509) -- submitted June 2026 and not yet peer-reviewed -- should be monitored before clinical deployment decisions are made on its basis.


Source: arxiv_ai


Source: gentic.news · · author= · citation.json

AI-assisted reporting. Generated by gentic.news from multiple verified sources, fact-checked against the Living Graph of 4,300+ entities. Edited by Ala SMITH.

Following this story?

Get a weekly digest with AI predictions, trends, and analysis — free.

AI Analysis

The paper's inverse difficulty effect is the most striking finding: Qwen 2.5 7B is most confidently wrong on easy cases. This mirrors the 'overconfidence on in-distribution' pattern seen in vision models but is more dangerous in clinical settings where straightforward cases are the most common. The cross-model calibrator is a practical workaround, but it depends on having a reliable reference model — a circular dependency if the reference model itself is flawed. The super-additive effect of SHAP + few-shot is reminiscent of retrieval-augmented generation but with a key difference: RAG retrieves text chunks, while SHAP provides structured feature-level evidence. This suggests that LLMs on tabular data need explicit feature attribution signals, not just textual context. Missing from the paper: no ablation on the choice of reference model (why XGBoost over logistic regression or a neural network?), and no test on clinical data with missing or noisy features. The cold start framing is apt but the paper doesn't propose a solution for the cold start — only detection.
Compare side-by-side
Prasanna Desikan vs Akshat Dasula
Enjoyed this article?
Share:

AI Toolslive

Five one-click lenses on this article. Cached for 24h.

Pick a tool above to generate an instant lens on this article.

Related Articles

From the lab

The framework underneath this story

Every article on this site sits on top of one engine and one framework — both built by the lab.

More in AI Research

View all