Beyond Next Token Probabilities: Learnable, Fast Detection of Hallucinations and Data Contamination on LLM Output Distributions
Guy Bar-Shalom, Fabrizio Frasca, Derek Lim, Yoav Gelberg, Yftah Ziser, Ran El-Yaniv, Gal Chechik, Haggai Maron
TL;DR
The paper tackles detecting hallucinations and training data contamination in LLMs under gray-box access by introducing the LLM Output Signature (LOS), which combines Token Distribution Sequences (TDS) and Actual Token Probabilities (ATP). It proposes LOS-Net, a lightweight attention-based model that encodes LOS via top-$K$ row-sorting and a rank-encoded ATP, then processes the sequence with a Transformer to produce fast, accurate detections. The authors prove LOS-Net can approximate broad classes of gated scoring functions, unifying prior gray-box methods, and demonstrate superior performance and very low latency across multiple datasets and models with strong cross-model and cross-dataset transfer. They also show robust runtime efficiency and meaningful transfer even with restricted API access. The work provides a practical, scalable framework for auditing LLM outputs and promoting safer deployment, with code available publicly.
Abstract
The automated detection of hallucinations and training data contamination is pivotal to the safe deployment of Large Language Models (LLMs). These tasks are particularly challenging in settings where no access to model internals is available. Current approaches in this setup typically leverage only the probabilities of actual tokens in the text, relying on simple task-specific heuristics. Crucially, they overlook the information contained in the full sequence of next-token probability distributions. We propose to go beyond hand-crafted decision rules by learning directly from the complete observable output of LLMs -- consisting not only of next-token probabilities, but also the full sequence of next-token distributions. We refer to this as the LLM Output Signature (LOS), and treat it as a reference data type for detecting hallucinations and data contamination. To that end, we introduce LOS-Net, a lightweight attention-based architecture trained on an efficient encoding of the LOS, which can provably approximate a broad class of existing techniques for both tasks. Empirically, LOS-Net achieves superior performance across diverse benchmarks and LLMs, while maintaining extremely low detection latency. Furthermore, it demonstrates promising transfer capabilities across datasets and LLMs. Full code is available at https://github.com/BarSGuy/Beyond-next-token-probabilities.
