On Early Detection of Hallucinations in Factual Question Answering
Ben Snyder, Marius Moisescu, Muhammad Bilal Zafar
TL;DR
This work tackles the problem of factual hallucinations in open-ended question answering by leveraging generation artifacts from the input, output, and internal states of Transformer-based models. It proposes four artifact families—Softmax probabilities, Integrated Gradients attributions, self-attention scores, and fully-connected activations—and trains four binary classifiers to detect hallucinations, achieving robust AUROC scores (often above $0.70$, with peaks near $0.80$) and demonstrating that signals can appear before the first generated token. The study systematically analyzes two datasets (T-REx and TriviaQA) and three model families (LAM, OPT, Falcon), showing that internal-state-based detectors, especially self-attention and FC activations, are highly predictive across tasks, while IG-based signals are less reliable. The results suggest that attaching lightweight hallucination detectors to deployed systems could flag potentially incorrect factual content in real time, though the approach requires access to model internals and gradients, and future work should extend to broader datasets and more complex retrieval settings.
Abstract
While large language models (LLMs) have taken great strides towards helping humans with a plethora of tasks, hallucinations remain a major impediment towards gaining user trust. The fluency and coherence of model generations even when hallucinating makes detection a difficult task. In this work, we explore if the artifacts associated with the model generations can provide hints that the generation will contain hallucinations. Specifically, we probe LLMs at 1) the inputs via Integrated Gradients based token attribution, 2) the outputs via the Softmax probabilities, and 3) the internal state via self-attention and fully-connected layer activations for signs of hallucinations on open-ended question answering tasks. Our results show that the distributions of these artifacts tend to differ between hallucinated and non-hallucinated generations. Building on this insight, we train binary classifiers that use these artifacts as input features to classify model generations into hallucinations and non-hallucinations. These hallucination classifiers achieve up to $0.80$ AUROC. We also show that tokens preceding a hallucination can already predict the subsequent hallucination even before it occurs.
