Reliable Decision Making via Calibration Oriented Retrieval Augmented Generation
Chaeyun Jang, Deukhwan Cho, Seanie Lee, Hyungi Lee, Juho Lee
TL;DR
CalibRAG addresses the problem that LLM-guided decision-making can be poorly calibrated when relying on retrieved content. It introduces a forecasting function f(t, q, d) that produces calibrated confidence signals, trained via synthetic supervision from a surrogate user and integrated into a RAG pipeline with temperature-aware conditioning. Empirical results across general-domain and domain-specific datasets show substantial improvements in calibration (ECE, Brier/NLL) and accuracy over uncertainty calibration baselines, reranking approaches, and robust RAG methods, with ablations confirming the value of temperature conditioning and query reformulation. The approach enables safer, more trustworthy decision support in practice, at the cost of synthetic data generation and added inference steps that can be tuned via Stage 3 reformulation and the epsilon threshold.
Abstract
Recently, Large Language Models (LLMs) have been increasingly used to support various decision-making tasks, assisting humans in making informed decisions. However, when LLMs confidently provide incorrect information, it can lead humans to make suboptimal decisions. To prevent LLMs from generating incorrect information on topics they are unsure of and to improve the accuracy of generated content, prior works have proposed Retrieval Augmented Generation (RAG), where external documents are referenced to generate responses. However, previous RAG methods focus only on retrieving documents most relevant to the input query, without specifically aiming to ensure that the human user's decisions are well-calibrated. To address this limitation, we propose a novel retrieval method called Calibrated Retrieval-Augmented Generation (CalibRAG), which ensures that decisions informed by RAG are well-calibrated. Then we empirically validate that CalibRAG improves calibration performance as well as accuracy, compared to other baselines across various datasets.
