REVIEW 3 major objections 7 minor 1 cited by
Revisiting Uncertainty Estimation and Calibration of Large Language Models
T0 review · 3 major / 7 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read This paper claims that across 80 large language models, the most reliable uncertainty signal is the model's own hedging language—words like "probably" and "might"—outperforming token probabilities and numerical self-scores on calibration…
desk verdict A genuinely broad and useful benchmark whose 'LVU consistently wins' headline is overstated; the honest version is that LVU wins on average, with judge-validity and instruction-following artifacts still to be resolved. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the LVU judge: a separate LLM, LLaMA-4-Maverick-17B-128E-Instruct, that reads a model's response and converts hedging language into a confidence score in [0,1], after the numeric confidence line has been stripped from the response. This is compared against TPU, defined as one minus the exponentiated average log-likelihood of the generated response, and NVU, the model's self-reported numeric score extracted by regular expression from a prompt that asks for confidence from 0 to 100. All three methods share the same single sampled response, prompted with a concise chain-of-thought template, and are scored by expected calibration error (ECE) with 10 bins and by AUROC for selective classification.
What would settle it
Re-evaluate LVU on a sample of MMLU-Pro responses using a different judge, or human-annotated hedging scores, and check whether LVU still beats NVU and TPU by the reported margin; if the ranking flips or the advantage shrinks to noise, the central claim fails.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that natural-language hedging is a stronger and more general uncertainty signal than either token-level likelihood or explicit numerical self-assessment. Across all 80 models and all subjects in MMLU-Pro, responses containing hedging expressions such as "probably", "might", and "possibly" are scored by a separate judge model and turn out to be better calibrated and better ranked than the two competing baselines. The paper also reports that model size, post-training, reasoning mode, and quantization each shift uncertainty quality, that reasoning tasks yield more reliable uncertainty estimates than knowledge-heavy tasks by over 10% AUROC, and that good calibration does not imply good error ranking. It takes these findings as evidence that accuracy is not a proxy for uncertainty reliability and that LVU deserves a central place in future uncertainty-aware LLM design.
Load-bearing premise
The entire LVU result rests on the judge model reading hedging words as a faithful sign of uncertainty; the paper validates that judge on only 20 crafted sentences and concedes its general reliability is unclear.
Editorial extensions
If this is right
- LVU can be used out-of-the-box with any API-only model, since it needs no logits, hidden states, or multiple generations.
- Reasoning-enhanced models are better calibrated without necessarily being more accurate, so reasoning mode is a practical lever for improving uncertainty.
- Accuracy should not be used as a proxy for reliability: high-accuracy models can be poorly calibrated, while moderate-accuracy models can have top-tier uncertainty estimates.
- Calibration and selective classification are distinct capabilities, so deployment evaluation needs both metrics rather than either one alone.
- Uncertainty signals are more trustworthy on reasoning tasks than on knowledge-heavy tasks, implying that abstention policies should be task-aware.
Reading between the lines
- If the LVU advantage comes partly from a judge that flags format violations as uncertainty, then models that follow instructions poorly may look uncertainty-aware for the wrong reasons; this is a testable failure mode the paper notes only for small models under LVU AUROC.
- If hedging language genuinely tracks uncertainty, a natural next step the paper leaves implicit is to train models to hedge appropriately during post-training, rather than only detecting hedges after generation.
- A different judge model—or human-annotated hedging scores—could reverse the reported LVU advantage, so the headline result should be read as contingent on the specific judge used.
- Because the judge was validated on only 20 non-verifiable sentences, extending LVU to open-ended generation or new domains would require a standardized judge-evaluation protocol before deployment.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents a large empirical benchmark of uncertainty estimation for 80 LLMs on MMLU-Pro, comparing token probability-based uncertainty (TPU), numerical verbal uncertainty (NVU), and linguistic verbal uncertainty (LVU). The authors report that LVU consistently outperforms TPU and NVU in calibration (ECE) and selective classification (AUROC), and they examine the effects of model scale, post-training, reasoning mode, MoE architecture, quantization, and task type. The evaluation uses a shared prompt with chain-of-thought and confidence elicitation, LLaMA-4-Maverick as the LVU judge, and includes code and full per-model results.
Significance. If the central result were established, the paper would make a valuable practical contribution: LVU is a black-box, interpretable, single-pass uncertainty signal that does not require token-level access. The benchmark's breadth (80 models, multiple families and scales, per-subject analysis, code release) is a genuine resource for the field. However, the headline conclusion is not currently supported by the evidence: the paper's own tables contain many per-model cases where LVU loses to TPU, and the authors explicitly identify an instruction-violation artifact that inflates LVU for small models. The judge validation is too thin to carry the load. The data and framing are salvageable, but the central claims need re-analysis and careful qualification.
major comments (3)
- [§3.6, Tables 3–4] The abstract and Section 3.6 state that LVU 'consistently outperforms' TPU and NVU, but Tables 3 and 4 contain numerous per-model counterexamples. For example, GPT-4.1 has TPU ECE 0.074 versus LVU ECE 0.166; Gemini-2.0-flash has TPU ECE 0.091 versus LVU ECE 0.162; Qwen3-32b-think has TPU AUROC 0.791 versus LVU AUROC 0.726 and TPU ECE 0.042 versus LVU ECE 0.092; Qwen3-14b-think has TPU AUROC 0.809 versus LVU AUROC 0.752; and Phi-4-reasoning has TPU AUROC 0.640 versus LVU AUROC 0.601. The word 'consistently' is therefore not a faithful summary of the data. I recommend reporting the full distribution of per-model differences (e.g., win rates, paired bootstrap or signed-rank tests) and either removing the word 'consistently' or explicitly discussing which model classes drive the aggregate advantage.
- [§3.1, §F.3, §G] Section 3.1 acknowledges a serious confound: for smaller models, the judge 'tends to assign high LVU uncertainty to such non-compliant outputs, many of which are indeed incorrect,' producing strong discriminative uncertainty 'not because their uncertainty estimates are intrinsically better, but because instruction violations correlate strongly with failure.' Since the 80-model roster includes many small or weak models, this artifact can dominate the average AUROC/ECE advantage claimed in Section 3.6. The concern is compounded by the extraction protocol in Appendices F.3 and G: outputs with failed extractions are dropped, and the paper reports that on average 17% of responses are dropped; because NVU requires a parsable numeric confidence value while the LVU judge can score free text, the LVU evaluation set may contain non-compliant responses that NVU/TPU exclude. I ask the authors to recompute all three methods on a common subset of responses with successful extractions for every method, and to report LVU results stratified by instruction-compliance (e.g., compliant versus non-compliant outputs) so that the artifact is separated from genuine uncertainty signal.
- [§2.1, Appendix H, §4] The validity of LVU as a general uncertainty measure rests on the LLaMA-4-Maverick judge, but the only validation (Appendix H) shows that the judge ordinally orders individual hedge words on 20 non-verifiable daily-life sentences. It does not show that judge scores track actual correctness of model responses on MMLU-Pro, nor that the mapping is stable across domains, model families, or output styles. The Conclusion explicitly says 'its general reliability across tasks, domains, and model families remains unclear,' which is in tension with the abstract's 'consistently outperforms' claim. The authors should validate the judge against correctness on the benchmark (e.g., calibration of judge scores with true accuracy per model), or provide a sensitivity analysis using an alternative LVU judge, before claiming LVU is a practical general-purpose uncertainty signal.
minor comments (7)
- [Figure 1 caption] The caption contains a typo: 'T oken Probability-Based Uncertainty' should be 'Token Probability-Based Uncertainty.'
- [Reference [8]] Reference [8] appears to be a BBC article on the US debt ceiling, but the text cites it for the story of a lawyer relying on ChatGPT for legal research; please replace it with the correct source.
- [§3.4, Table 4] The statement that Qwen3-30B-A3B 'consistently outperforms' Qwen3-32B in both reasoning and non-reasoning tasks under LVU is contradicted by Table 4 for the non-reasoning pair, where LVU ECE is 0.243 for Qwen3-30b-a3b versus 0.218 for Qwen3-32b; please adjust the claim.
- [§3.5, Table 4] Section 3.5 describes Qwen3-235B-A22B (Reasoning) as having 'moderate accuracy (67%),' but Table 4 lists its accuracy as 0.880 for the think variant and 0.728 for the non-think variant; please reconcile the numbers.
- [Tables 3–4] The '/' entries for TPU values are not explained in the table captions; Appendix E notes that DeepSeek does not provide valid token probabilities, but a general legend for missing values should be added.
- [Appendix G] The stratified-sampling validation is performed with GPT-4.1-Mini only; the claim that 50% subsets are sufficient for all models should be presented as a single-model analysis rather than a general guarantee.
- [§3.3] The claim that reasoning mode reduces the proportion of highly overconfident predictions by 'more than 20%' is not supported by a numerical table or statistical test; please provide the underlying numbers.
Circularity Check
No significant circularity: the paper is an empirical benchmark whose headline comparison is computed from held-out MMLU-Pro responses, not derived from its own inputs.
full rationale
The paper contains no fitted-parameter derivation, no equation whose output is defined by the target claim, and no load-bearing self-citation. TPU, NVU, and LVU scores are computed from responses to MMLU-Pro prompts and benchmark labels (Eq. 3, Eq. 5, Appendix F), so the ECE/AUROC comparisons are externally falsifiable measurements rather than identities. The only author self-citation is reference [13], used as an example of an internal-state method in related work; it is not load-bearing. The judge-validation concern (Appendix H, only 20 sentences) and the acknowledged small-model artifact (Section 3.1: 'instruction violations correlate strongly with failure') are validity and confound risks, not circular derivation: they do not make the LVU number equal to another input by construction. The conclusion also acknowledges that judge reliability remains unclear. Under the stated rules, a confound or weak validation is a correctness concern, not circularity; therefore the score is 0.
Assumptions & free parameters
assumptions (4)
- domain assumption MMLU-Pro ground-truth labels are correct and answer extraction via regex identifies the model's intended choice.
- domain assumption The judge model LLaMA-4-Maverick-17B-128E-Instruct maps hedging language to confidence scores reliably beyond the small validation set.
- domain assumption ECE with 10 fixed bins and AUROC adequately capture calibration and discrimination for this comparison.
- domain assumption The shared prompt that explicitly asks models to hedge when uncertain does not invalidate comparison among LVU, NVU, and TPU.
Cite this review
Pith. "Pith review of Revisiting Uncertainty Estimation and Calibration of Large Language Models." pith.science (2026). https://pith.science/paper/CM6U2UR3
@misc{pith2026250523854,
author = {Pith},
title = {Pith review of: Revisiting Uncertainty Estimation and Calibration of Large Language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/CM6U2UR3}},
note = {Machine review of arXiv:2505.23854}
}
read the original abstract
As large language models (LLMs) are increasingly deployed in high-stakes applications, robust uncertainty estimation is essential for ensuring the safe and trustworthy deployment of LLMs. We present the most comprehensive study to date of uncertainty estimation in LLMs, evaluating 80 models spanning open- and closed-source families, dense and Mixture-of-Experts (MoE) architectures, reasoning and non-reasoning modes, quantization variants and parameter scales from 0.6B to 671B. Focusing on three representative black-box single-pass methods, including token probability-based uncertainty (TPU), numerical verbal uncertainty (NVU), and linguistic verbal uncertainty (LVU), we systematically evaluate uncertainty calibration and selective classification using the challenging MMLU-Pro benchmark, which covers both reasoning-intensive and knowledge-based tasks. Our results show that LVU consistently outperforms TPU and NVU, offering stronger calibration and discrimination while being more interpretable. We also find that high accuracy does not imply reliable uncertainty, and that model scale, post-training, reasoning ability and quantization all influence estimation performance. Notably, LLMs exhibit better uncertainty estimates on reasoning tasks than on knowledge-heavy ones, and good calibration does not necessarily translate to effective error ranking. These findings highlight the need for multi-perspective evaluation and position LVU as a practical tool for improving the reliability of LLMs in real-world settings.
Figures
Figures from the paper (10 more)
Forward citations
Cited by 1 Pith paper
-
Empirical Characterization of Inference-Time Elicited Probability Transformations in Large Language Models
Across 4,975 reasoning problems and multiple LLM families, post-evidence answer probabilities follow an approximate log-ratio relation log q̃ ≈ α(log q + log b) + c with mean R² ≈ 0.76, where α varies by prompting con...
Reference graph
Works this paper leans on
-
[1]
Large language models in medicine.Nature medicine, 29(8):1930–1940, 2023
Arun James Thirunavukarasu, Darren Shu Jeng Ting, Kabilan Elangovan, Laura Gutierrez, Ting Fang Tan, and Daniel Shu Wei Ting. Large language models in medicine.Nature medicine, 29(8):1930–1940, 2023
1930
-
[2]
Dave Van Veen, Cara Van Uden, Louis Blankemeier, Jean-Benoit Delbrouck, Asad Aali, Chris- tian Bluethgen, Anuj Pareek, Malgorzata Polacin, Eduardo Pontes Reis, Anna Seehofnerová, et al. Adapted large language models can outperform medical experts in clinical text summa- rization.Nature medicine, 30(4):1134–1142, 2024
work page 2024
-
[3]
Medec: A benchmark for medical error detection and correction in clinical notes
Asma Ben Abacha, Wen-wai Yim, Yujuan Fu, Zhaoyi Sun, Meliha Yetisgen, Fei Xia, and Thomas Lin. Medec: A benchmark for medical error detection and correction in clinical notes. arXiv preprint arXiv:2412.19260, 2024
arXiv 2024
-
[4]
Muhammad Usman Hadi, Rizwan Qureshi, Abbas Shah, Muhammad Irfan, Anas Zafar, Muham- mad Bilal Shaikh, Naveed Akhtar, Jia Wu, Seyedali Mirjalili, et al. Large language models: a comprehensive survey of its applications, challenges, limitations, and future prospects.Authorea Preprints, 1:1–26, 2023
work page 2023
-
[5]
Large language models in law: A survey.AI Open, 2024
Jinqi Lai, Wensheng Gan, Jiayang Wu, Zhenlian Qi, and Philip S Yu. Large language models in law: A survey.AI Open, 2024
2024
-
[6]
Overreliance on ai literature review.Microsoft Research, 339:340, 2022
Samir Passi and Mihaela V orvoreanu. Overreliance on ai literature review.Microsoft Research, 339:340, 2022
work page 2022
-
[7]
Understanding the eu ai act: Requirements and next steps
ISACA. Understanding the eu ai act: Requirements and next steps. https://www.isaca. org/resources/white-papers/2024/understanding-the-eu-ai-act , October 2024. Accessed: 2025-05-12
work page 2024
-
[8]
Us debt ceiling deal clears major hurdle in congress, 2023
BBC News. Us debt ceiling deal clears major hurdle in congress, 2023. URL https://www. bbc.com/news/world-us-canada-65735769. Accessed: 2025-05-10
work page 2023
Show all 55 references
-
[9]
Shifting attention to relevance: Towards the uncertainty estimation of large language models
Jinhao Duan, Hao Cheng, Shiqi Wang, Alex Zavalny, Chenan Wang, Renjing Xu, Bhavya Kailkhura, and Kaidi Xu. Shifting attention to relevance: Towards the uncertainty estimation of large language models. 2023
2023
-
[10]
Semantic calibration of llms through the lens of temperature scaling
Tom A Lamb, Desi R Ivanova, Philip Torr, and Tim GJ Rudner. Semantic calibration of llms through the lens of temperature scaling. InICLR Workshop: Quantify Uncertainty and Hallucination in Foundation Models: The Next Frontier in Reliable AI
-
[11]
Semantic entropy probes: Robust and cheap hallucination detection in llms.arXiv preprint arXiv:2406.15927, 2024
Jannik Kossen, Jiatong Han, Muhammed Razzak, Lisa Schut, Shreshth Malik, and Yarin Gal. Semantic entropy probes: Robust and cheap hallucination detection in llms.arXiv preprint arXiv:2406.15927, 2024
2024 arXiv
-
[12]
Calibrating verbal uncertainty as a linear feature to reduce hallucinations.arXiv preprint arXiv:2503.14477, 2025
Ziwei Ji, Lei Yu, Yeskendir Koishekenov, Yejin Bang, Anthony Hartshorn, Alan Schelten, Cheng Zhang, Pascale Fung, and Nicola Cancedda. Calibrating verbal uncertainty as a linear feature to reduce hallucinations.arXiv preprint arXiv:2503.14477, 2025
2025 arXiv
-
[13]
Mitigating object hallucinations in large vision-language models via attention calibration.arXiv preprint arXiv:2502.01969, 2025
Younan Zhu, Linwei Tao, Minjing Dong, and Chang Xu. Mitigating object hallucinations in large vision-language models via attention calibration.arXiv preprint arXiv:2502.01969, 2025
2025
-
[14]
Semantic uncertainty: Linguistic invariances for uncertainty estimation in natural language generation, 2023
Lorenz Kuhn, Yarin Gal, and Sebastian Farquhar. Semantic uncertainty: Linguistic invariances for uncertainty estimation in natural language generation, 2023. URL https://arxiv.org/ abs/2302.09664
2023 arXiv
-
[15]
Selfcheckgpt: Zero-resource black-box hallucination detection for generative large language models.arXiv preprint arXiv:2303.08896, 2023
Potsawee Manakul, Adian Liusie, and Mark JF Gales. Selfcheckgpt: Zero-resource black-box hallucination detection for generative large language models.arXiv preprint arXiv:2303.08896, 2023
2023 arXiv
-
[16]
Just ask for calibration: Strategies for eliciting calibrated confidence scores from language models fine-tuned with human feedback.arXiv preprint arXiv:2305.14975, 2023
Katherine Tian, Eric Mitchell, Allan Zhou, Archit Sharma, Rafael Rafailov, Huaxiu Yao, Chelsea Finn, and Christopher D Manning. Just ask for calibration: Strategies for eliciting calibrated confidence scores from language models fine-tuned with human feedback.arXiv preprint ar...
2023 arXiv
-
[17]
Can llms express their uncertainty? an empirical evaluation of confidence elicitation in llms, 2024
Miao Xiong, Zhiyuan Hu, Xinyang Lu, Yifei Li, Jie Fu, Junxian He, and Bryan Hooi. Can llms express their uncertainty? an empirical evaluation of confidence elicitation in llms, 2024. URL https://arxiv.org/abs/2306.13063
2024 arXiv
-
[18]
Can large language models faithfully express their intrinsic uncertainty in words?arXiv preprint arXiv:2405.16908, 2024
Gal Yona, Roee Aharoni, and Mor Geva. Can large language models faithfully express their intrinsic uncertainty in words?arXiv preprint arXiv:2405.16908, 2024
2024 arXiv
-
[19]
Perceptions of linguistic uncertainty by language models and humans.arXiv preprint arXiv:2407.15814, 2024
Catarina G Belem, Markelle Kelly, Mark Steyvers, Sameer Singh, and Padhraic Smyth. Perceptions of linguistic uncertainty by language models and humans.arXiv preprint arXiv:2407.15814, 2024
2024 arXiv
-
[20]
On the calibration of large language models and alignment.arXiv preprint arXiv:2311.13240, 2023
Chiwei Zhu, Benfeng Xu, Quan Wang, Yongdong Zhang, and Zhendong Mao. On the calibration of large language models and alignment.arXiv preprint arXiv:2311.13240, 2023
2023 arXiv
-
[21]
Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948, 2025
Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, et al. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948, 2025
2025 arXiv
-
[22]
Qwen2 and qwen3: The new generation open models.https://qwenlm.github
Qwen Team. Qwen2 and qwen3: The new generation open models.https://qwenlm.github. io/blog/qwen3/, 2024. Accessed: 2025-05-12
2024
-
[23]
Llama 4: Multimodal intelligence
Meta AI. Llama 4: Multimodal intelligence. https://ai.meta.com/blog/ llama-4-multimodal-intelligence/, April 2025. Accessed: 2025-05-10
2025
-
[24]
Introducing o3 and o4 mini
OpenAI. Introducing o3 and o4 mini. https://openai.com/index/ introducing-o3-and-o4-mini/, 2024. Accessed: 2025-05-12
2024
-
[25]
Grok-3 and the next generation of reasoning models
xAI. Grok-3 and the next generation of reasoning models. https://x.ai/news/grok-3,
-
[26]
TriviaQA: A large scale distantly supervised challenge dataset for reading comprehension
Mandar Joshi, Eunsol Choi, Daniel Weld, and Luke Zettlemoyer. TriviaQA: A large scale distantly supervised challenge dataset for reading comprehension. In Regina Barzilay and Min-Yen Kan, editors,Proceedings of the 55th Annual Meeting of the Association for Com- putational Lin...
2017 doi
-
[27]
Measuring massive multitask language understanding.arXiv preprint arXiv:2009.03300, 2020
Dan Hendrycks, Collin Burns, Steven Basart, Andy Zou, Mantas Mazeika, Dawn Song, and Jacob Steinhardt. Measuring massive multitask language understanding.arXiv preprint arXiv:2009.03300, 2020
2009 arXiv
-
[28]
Mmlu-pro: A more robust and challenging multi-task language understanding benchmark
Yubo Wang, Xueguang Ma, Ge Zhang, Yuansheng Ni, Abhranil Chandra, Shiguang Guo, Weiming Ren, Aaran Arulraj, Xuan He, Ziyan Jiang, et al. Mmlu-pro: A more robust and challenging multi-task language understanding benchmark. InThe Thirty-eight Conference on Neural Information Pro...
2024
-
[29]
Discovering latent knowledge in language models without supervision
Collin Burns, Haotian Ye, Dan Klein, and Jacob Steinhardt. Discovering latent knowledge in language models without supervision. InInternational Conference on Learning Representations, 2022
2022
-
[30]
Language models (mostly) know what they know.arXiv preprint arXiv:2207.05221, 2022
Saurav Kadavath, Tom Conerly, Amanda Askell, Tom Henighan, Dawn Drain, Ethan Perez, Nicholas Schiefer, Zac Hatfield-Dodds, Nova DasSarma, Eli Tran-Johnson, et al. Language models (mostly) know what they know.arXiv preprint arXiv:2207.05221, 2022
2022 arXiv
-
[31]
Detecting hallucinations in large language models using semantic entropy.Nature, 630(8017):625–630, 2024
Sebastian Farquhar, Jannik Kossen, Lorenz Kuhn, and Yarin Gal. Detecting hallucinations in large language models using semantic entropy.Nature, 630(8017):625–630, 2024
2024
-
[32]
On calibration of modern neural networks
Chuan Guo, Geoff Pleiss, Yu Sun, and Kilian Q Weinberger. On calibration of modern neural networks. InInternational conference on machine learning, pages 1321–1330. PMLR, 2017
2017
-
[33]
Benchmarking uncertainty disen- tanglement: Specialized uncertainties for specialized tasks.Advances in neural information processing systems, 37:50972–51038, 2024
Bálint Mucsányi, Michael Kirchhof, and Seong Joon Oh. Benchmarking uncertainty disen- tanglement: Specialized uncertainties for specialized tasks.Advances in neural information processing systems, 37:50972–51038, 2024. 12
2024
-
[34]
Measuring calibration in deep learning
Jeremy Nixon, Michael W Dusenberry, Linchuan Zhang, Ghassen Jerfel, and Dustin Tran. Measuring calibration in deep learning. InCVPR workshops, volume 2, 2019
2019
-
[35]
Predicting good probabilities with supervised learning
Alexandru Niculescu-Mizil and Rich Caruana. Predicting good probabilities with supervised learning. InProceedings of the 22nd international conference on Machine learning, pages 625–632, 2005
2005
-
[36]
The llama 3 herd of models.arXiv preprint arXiv:2407.21783, 2024
Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, et al. The llama 3 herd of models.arXiv preprint arXiv:2407.21783, 2024
2024 arXiv
-
[37]
Deepseek-v3 technical report.arXiv preprint arXiv:2412.19437, 2024
Aixin Liu, Bei Feng, Bing Xue, Bingxuan Wang, Bochao Wu, Chengda Lu, Chenggang Zhao, Chengqi Deng, Chenyu Zhang, Chong Ruan, et al. Deepseek-v3 technical report.arXiv preprint arXiv:2412.19437, 2024
2024 arXiv
-
[38]
An Yang, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chengyuan Li, Dayiheng Liu, Fei Huang, Haoran Wei, et al. Qwen2. 5 technical report.arXiv preprint arXiv:2412.15115, 2024
2024 arXiv
-
[39]
Identifying and mitigating vulnerabilities in llm-integrated applications
Fengqing Jiang. Identifying and mitigating vulnerabilities in llm-integrated applications. Mas- ter’s thesis, University of Washington, 2024
2024
-
[40]
Gemma: Open models based on gemini research and technology.arXiv preprint arXiv:2403.08295, 2024
Gemma Team, Thomas Mesnard, Cassidy Hardin, Robert Dadashi, Surya Bhupatiraju, Shreya Pathak, Laurent Sifre, Morgane Rivière, Mihir Sanjay Kale, Juliette Love, et al. Gemma: Open models based on gemini research and technology.arXiv preprint arXiv:2403.08295, 2024
2024 arXiv
-
[41]
Introducing gpt-4o: Openai’s new omni model
OpenAI. Introducing gpt-4o: Openai’s new omni model. https://openai.com/index/ hello-gpt-4o/, 2024. Accessed: 2025-05-12
2024
-
[42]
Gpt-4.1 overview
OpenAI. Gpt-4.1 overview. https://openai.com/index/gpt-4-1/ , 2024. Accessed: 2025-05-12
2024
-
[43]
Introducing the claude 3 model family
Anthropic. Introducing the claude 3 model family. https://www.anthropic.com/news/ claude-3-family, 2024. Accessed: 2025-05-12
2024
-
[44]
Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context.arXiv preprint arXiv:2403.05530, 2024
Gemini Team, Petko Georgiev, Ving Ian Lei, Ryan Burnell, Libin Bai, Anmol Gulati, Garrett Tanzer, Damien Vincent, Zhufeng Pan, Shibo Wang, et al. Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context.arXiv preprint arXiv:2403.05530, 2024
2024 arXiv
-
[45]
Qwen3 technical report
Qwen Team. Qwen3 technical report. GitHub Repository , 2024. URL https: //github.com/QwenLM/Qwen3/blob/main/Qwen3_Technical_Report.pdf. https:// github.com/QwenLM/Qwen3
2024
-
[46]
The kendall rank correlation coefficient.Encyclopedia of measurement and statistics, 2:508–510, 2007
Hervé Abdi. The kendall rank correlation coefficient.Encyclopedia of measurement and statistics, 2:508–510, 2007
2007
-
[47]
i’m not sure, but
Sunnie SY Kim, Q Vera Liao, Mihaela V orvoreanu, Stephanie Ballard, and Jennifer Wortman Vaughan. " i’m not sure, but...": Examining the impact of large language models’ uncertainty expression on user reliance and trust. InProceedings of the 2024 ACM Conference on Fairness, Ac...
2024
-
[48]
Generating with confidence: Uncertainty quantification for black-box large language models.arXiv preprint arXiv:2305.19187, 2023
Zhen Lin, Shubhendu Trivedi, and Jimeng Sun. Generating with confidence: Uncertainty quantification for black-box large language models.arXiv preprint arXiv:2305.19187, 2023
2023 arXiv
-
[49]
The internal state of an llm knows when it’s lying
Amos Azaria and Tom Mitchell. The internal state of an llm knows when it’s lying. InFindings of the Association for Computational Linguistics: EMNLP 2023, pages 967–976, 2023
2023
-
[50]
Inference- time intervention: Eliciting truthful answers from a language model
Kenneth Li, Oam Patel, Fernanda Viégas, Hanspeter Pfister, and Martin Wattenberg. Inference- time intervention: Eliciting truthful answers from a language model. InAdvances in Neural Information Processing Systems, 2023
2023
-
[51]
Uncertainty estimation and quantification for llms: A simple supervised approach.arXiv preprint arXiv:2404.15993, 2024
Linyu Liu, Yu Pan, Xiaocheng Li, and Guanting Chen. Uncertainty estimation and quantification for llms: A simple supervised approach.arXiv preprint arXiv:2404.15993, 2024. 13
2024 arXiv
-
[52]
A survey of confidence estimation and calibration in large language models.arXiv preprint arXiv:2311.08298, 2023
Jiahui Geng, Fengyu Cai, Yuxia Wang, Heinz Koeppl, Preslav Nakov, and Iryna Gurevych. A survey of confidence estimation and calibration in large language models.arXiv preprint arXiv:2311.08298, 2023
2023 arXiv
-
[53]
A survey of uncertainty estimation in llms: Theory meets practice.arXiv preprint arXiv:2410.15326, 2024
Hsiu-Yuan Huang, Yutong Yang, Zhaoxi Zhang, Sanwoo Lee, and Yunfang Wu. A survey of uncertainty estimation in llms: Theory meets practice.arXiv preprint arXiv:2410.15326, 2024
2024 arXiv
-
[54]
[Aa]nswer:?[\s]*[\n]*([A-J])
Xiaoou Liu, Tiejin Chen, Longchao Da, Chacha Chen, Zhen Lin, and Hua Wei. Uncertainty quantification and confidence calibration in large language models: A survey.arXiv preprint arXiv:2503.15850, 2025. 14 A Related Works A.1 More Uncertainty Estimation Approaches Multi-Generat...
2025 arXiv
-
[2024]
Accessed: 2025-05-12
2025
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.