<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>hallucination detection &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/hallucination-detection/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sat, 12 Sep 2026 14:55:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>hallucination detection &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>AI Learns to Check Itself: New Framework Makes Language Models Honest About Their Own Confidence</title>
		<link>https://scienmag.com/ai-learns-to-check-itself-new-framework-makes-language-models-honest-about-their-own-confidence/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Sat, 12 Sep 2026 14:55:33 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[addressing AI hallucinations]]></category>
		<category><![CDATA[AI confidence calibration]]></category>
		<category><![CDATA[AI trustworthiness]]></category>
		<category><![CDATA[CLAIM-CAL model for fact verification]]></category>
		<category><![CDATA[confidence estimation]]></category>
		<category><![CDATA[decomposing AI responses into atomic claims]]></category>
		<category><![CDATA[enhancing reliability of AI-generated information]]></category>
		<category><![CDATA[Expected Calibration Error]]></category>
		<category><![CDATA[hallucination detection]]></category>
		<category><![CDATA[handling mixed accuracy in AI outputs]]></category>
		<category><![CDATA[improving AI honesty and transparency]]></category>
		<category><![CDATA[independent claim verification in AI systems]]></category>
		<category><![CDATA[isotonic regression]]></category>
		<category><![CDATA[large language models]]></category>
		<category><![CDATA[natural language processing]]></category>
		<category><![CDATA[reliability estimation]]></category>
		<category><![CDATA[selective answering]]></category>
		<category><![CDATA[self-assessment mechanisms for AI accuracy]]></category>
		<category><![CDATA[self-checking AI frameworks]]></category>
		<category><![CDATA[self-verification]]></category>
		<category><![CDATA[truthfulness in large language models]]></category>
		<category><![CDATA[TruthfulQA]]></category>
		<category><![CDATA[uncertainty calibration]]></category>
		<category><![CDATA[verifying factual claims in language models]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=195575</guid>

					<description><![CDATA[A new claim-level self-verification framework called CLAIM-CAL decomposes AI answers into atomic factual claims and applies isotonic calibration, cutting expected calibration error from 0.212 to 0.038 on TruthfulQA while enabling reliable selective answering.]]></description>
										<content:encoded><![CDATA[<p>Large language models have a confidence problem. They can produce fluent, polished, persuasive answers that are simply wrong, and they deliver those answers with the same commanding tone they use when they are right. For the millions of people now relying on AI systems for factual information, this mismatch between fluency and truthfulness has become one of the field&#8217;s most pressing unsolved challenges. A new study published in Discover Artificial Intelligence proposes a deceptively simple remedy: make the model break its own answer into tiny pieces, interrogate each piece separately, and then honestly recalculate how sure it should be.</p>
<p>The framework, called CLAIM-CAL, was developed by Abhigyan Pal, an independent researcher based in New Delhi, India. Rather than treating a model&#8217;s entire response as a single object to be trusted or doubted, CLAIM-CAL decomposes each answer into atomic factual claims, the smallest independently checkable statements an answer contains. A response such as &#8216;The Eiffel Tower is in Paris and was completed in 1889&#8217; is split into two distinct claims, each of which is then verified on its own merits. This granular approach reflects a core insight of the research: a single answer can be a mixture of accurate and inaccurate statements, and assigning one blanket confidence score to the whole response obscures exactly the information users need most.</p>
<p>The technical pipeline works in five stages. First, an answer model generates an initial response to a question without any external retrieval, deliberately isolating the contribution of self-verification. Second, gpt-4o-mini operating at temperature 0.0 extracts atomic claims using a structured JSON-format prompt, capping extraction at eight claims per answer with a sentence-splitting fallback if extraction fails. Third, each claim is interrogated by three differently framed verification probes: a balanced probe, a support-seeking probe, and a contradiction-seeking probe. Each probe labels the claim as Supported, Contradicted, or Unknown, and the deliberately adversarial framing of the contradiction probe is central to the design, because actively hunting for disconfirming evidence catches confidently wrong statements that a purely supportive check might wave through.</p>
<p>Fourth, the verdicts are converted into risk scores using a transparent hand-set heuristic. Contradiction carries the heaviest penalty because direct evidence against a claim is the strongest signal of unreliability; Unknown claims receive an intermediate penalty because they cannot be confidently verified; and lack of explicit support adds a smaller but nonzero penalty. The claim-level risks are averaged to produce an answer-level risk, which is subtracted from one to yield a raw confidence score. Crucially, the study does not stop there. The fifth stage applies isotonic regression, a non-parametric post-hoc calibration technique that learns a monotonic mapping from raw confidence scores to empirical correctness using a dedicated calibration split of sixty examples. Without this final step, even the sophisticated claim-level signal remains systematically overconfident.</p>
<p>The evaluation used the TruthfulQA generation benchmark, a dataset specifically engineered to expose cases where language models reproduce common human misconceptions. The experiment sampled 200 examples, reserving 60 for calibration and 140 for held-out testing. CLAIM-CAL was benchmarked against four alternatives: direct answering with assumed full confidence, verbal confidence where the model self-reports its certainty, self-consistency based on agreement across five independently sampled answers, and simple self-verification that judges the whole answer at once. On the held-out split, CLAIM-CAL achieved the highest observed accuracy of 0.757 among the evaluated methods, but the more striking finding concerned calibration quality rather than raw accuracy.</p>
<p>Raw CLAIM-CAL, like every other uncalibrated method, remained markedly overconfident, with an Expected Calibration Error of 0.212. ECE measures the bin-weighted gap between what a system claims to know and what it actually gets right. After isotonic calibration, that figure collapsed to 0.038, with a 95 percent bootstrap confidence interval of 0.015 to 0.106, while accuracy held steady. To rule out the possibility that calibration alone explained the advantage, the study then applied the same isotonic procedure to the variable-confidence baselines on the identical calibration split. In this fair head-to-head comparison, the calibrated claim-level method retained the strongest point estimates for both ECE and Brier Score, although the author is careful to note that paired bootstrap intervals overlapping zero mean the ECE advantage over the closest calibrated baselines should be interpreted cautiously rather than as statistically decisive superiority.</p>
<p>Where the approach truly shines is in selective answering, the practical scenario in which a deployed system must decide when to answer and when to defer. At a fixed 0.7 confidence threshold, CLAIM-CAL plus calibration achieved selective accuracy of 0.824 while retaining 0.893 coverage, meaning the system answered nearly 90 percent of questions while being right more than 82 percent of the time on the ones it chose to answer. Self-consistency, by contrast, reached comparable selective accuracy only at a coverage of 0.207, essentially answering so few questions that its apparent reliability becomes operationally useless. After calibration, self-consistency&#8217;s confidence values never exceeded 0.667, leaving it with zero coverage at the threshold entirely. This coverage-versus-accuracy trade-off is a point the study emphasizes repeatedly: a method can look trustworthy simply by refusing to engage.</p>
<p>The paper is notable as much for its methodological candor as for its results. Because the same model family handled answer generation, claim verification, and correctness judging, correlated errors could inflate apparent performance, a confound the author explicitly flags. A second-pass robustness check using an independent stricter judge prompt on 50 sampled evaluations achieved 96 percent agreement and a Cohen&#8217;s kappa of 0.896, which is strong consistency but not human validation. An ablation study confirmed that removing contradiction probing produced the worst calibration error among the variants, underscoring the value of adversarial verification, while removing claim decomposition lowered accuracy and weakened the reliability signal. The error analysis also showed the method&#8217;s honest limits: twenty-two incorrect answers still slipped through above the 0.7 confidence threshold, proving that CLAIM-CAL improves calibration and risk awareness without guaranteeing correctness.</p>
<p>The implications reach well beyond a single benchmark. The framework is designed to be complementary to prompt engineering and retrieval-augmented generation: better prompts can reduce initial errors, retrieved evidence can ground claims externally, and CLAIM-CAL can sit on top of either, estimating whether the final answer deserves user trust. A natural next step is verifying extracted claims directly against retrieved passages, converting the self-verification layer into a retrieval-grounded reliability check. Future work identified in the study includes scaling beyond 200 examples, testing multiple model families for generator, verifier, and judge roles, learning the risk weights from data rather than fixing them by hand, and integrating human review for low-confidence answers. The deeper conclusion is a reframing of what reliability means for artificial intelligence: a system should not be judged only by whether its answers are correct, but by whether its expressed confidence honestly reflects the probability of correctness. In an era when fluent language is too easily mistaken for truth, teaching models to know what they do not know may prove as important as teaching them what they do.</p>
<p><strong>Subject of Research:</strong> Claim-level self-verification and uncertainty calibration for improving the reliability of large language models</p>
<p><strong>Article Title:</strong> Improving reliability of large language models via claim-level self-verification and uncertainty calibration</p>
<p><strong>Article References:</strong> Pal, A. (2026). Improving reliability of large language models via claim-level self-verification and uncertainty calibration. <em>Discover Artificial Intelligence, 6</em>(1), Article 1132. <a href="https://doi.org/10.1007/s44163-026-02240-w" rel="noopener noreferrer">https://doi.org/10.1007/s44163-026-02240-w</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s44163-026-02240-w" rel="noopener noreferrer">10.1007/s44163-026-02240-w</a></p>
<p><strong>Keywords:</strong> large language models, uncertainty calibration, self-verification, hallucination detection, TruthfulQA, isotonic regression, selective answering, Expected Calibration Error, reliability estimation, natural language processing, AI trustworthiness, confidence estimation</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">195575</post-id>	</item>
	</channel>
</rss>
