Papers › Lookback Lens: Detecting and Mitigating Contextual Hallucinations in Large Language...

Lookback Lens: Detecting and Mitigating Contextual Hallucinations in Large Language Models Using Only Attention Maps

9 Jul 2024arXiv:2407.07071archive 2025-07-28

Yung-Sung Chuang, Linlu Qiu, Cheng-Yu Hsieh, Ranjay Krishna, Yoon Kim, James Glass

When asked to summarize articles or answer questions given a passage, large language models (LLMs) can hallucinate details and respond with unsubstantiated answers that are inaccurate with respect to the input context. This paper describes a simple approach for detecting such contextual hallucinations. We hypothesize that contextual hallucinations are related to the extent to which an LLM attends to information in the provided context versus its own generations. Based on this intuition, we propose a simple hallucination detection model whose input features are given by the ratio of attention weights on the context versus newly generated tokens (for each attention head). We find that a linear classifier based on these lookback ratio features is as effective as a richer detector that utilizes the entire hidden states of an LLM or a text-based entailment model. The lookback ratio-based detector -- Lookback Lens -- is found to transfer across tasks and even models, allowing a detector that is trained on a 7B model to be applied (without retraining) to a larger 13B model. We further apply this detector to mitigate contextual hallucinations, and find that a simple classifier-guided decoding approach is able to reduce the amount of hallucination, for example by 9.6% in the XSum summarization task.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2407.07071")

Code

Syntology Ran 5 of 20 code samples harvested from 1 repository linked to this paper; 15 have no recorded run. Of those that ran: 1 ran · fixture could not drive it; 4 ran with no contract checked.

By repository: official repository: 20 samples from 1 repository, 5 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

voidism/lookback-lens officialmentioned in papermentioned on GitHubjax report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

20 samples harvested; 5 ran; 0 honoured the contract we drafted; 15 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran · fixture could not drive it
4ran
15unverified

Licence: 20 of the 20 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from voidism/lookback-lens. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

best_subspan_em voidism/lookback-lens/eval_exact_match.py official repository ran no licence file found · pointer only · 10af7cdbc53df7e5 · report
convert_to_token_level voidism/lookback-lens/step03_lookback_lens.py official repository ran no licence file found · pointer only · f10a909a93d528cf · report
extract_time_series_features voidism/Lookback-Lens/step03_lookback_lens.py official repository ran · fixture could not drive it no licence file found · pointer only · e6ade772c4fc8437 · report
load_nq_open voidism/lookback-lens/eval_exact_match.py official repository ran no licence file found · pointer only · 746e55bc216a6a60 · report
load_summarization voidism/lookback-lens/step02_eval_gpt4o.py official repository ran no licence file found · pointer only · 491bdf9d170e0f42 · report
gelu_fast voidism/lookback-lens/transformers-4.32.0/src/transformers/activations_tf.py official repository unverified no licence file found · pointer only · 37a5eed2dbd663ca · report
get_architectures_from_config_class voidism/lookback-lens/transformers-4.32.0/utils/create_dummy_models.py official repository unverified no licence file found · pointer only · b176efb26f72e507 · report
get_config_class_from_processor_class voidism/lookback-lens/transformers-4.32.0/utils/create_dummy_models.py official repository unverified no licence file found · pointer only · 3d999b95009c7537 · report
get_processor_types_from_config_class voidism/lookback-lens/transformers-4.32.0/utils/create_dummy_models.py official repository unverified no licence file found · pointer only · 0c0b81b081919d8e · report
load_jsonl voidism/lookback-lens/step02_eval_gpt4o.py official repository unverified no licence file found · pointer only · 93fb30bbe389d023 · report
load_nq_open voidism/lookback-lens/step01_extract_attns.py official repository unverified no licence file found · pointer only · 124e3218c2d64455 · report
load_nq_open voidism/lookback-lens/step02_eval_gpt4o.py official repository unverified no licence file found · pointer only · 3abd09dee278805a · report
load_nq_open voidism/lookback-lens/step04_run_decoding.py official repository unverified no licence file found · pointer only · d10fb7dd76f75e3b · report
mish voidism/lookback-lens/transformers-4.32.0/src/transformers/activations_tf.py official repository unverified no licence file found · pointer only · cc8c8c3ebf0c343f · report
normalize_answer voidism/lookback-lens/eval_exact_match.py official repository unverified no licence file found · pointer only · 9706a9a0b961096b · report
num_tokens_from_message voidism/lookback-lens/step01_extract_attns.py official repository unverified no licence file found · pointer only · b3a67ee5030c2ffe · report
num_tokens_from_message voidism/lookback-lens/step04_run_decoding.py official repository unverified no licence file found · pointer only · aba17adf1edf4960 · report
quick_gelu voidism/lookback-lens/transformers-4.32.0/src/transformers/activations_tf.py official repository unverified no licence file found · pointer only · e2d56cb91f999bef · report
truncate_message voidism/lookback-lens/step01_extract_attns.py official repository unverified no licence file found · pointer only · 00d2f6a6c8b0f564 · report
truncate_message voidism/lookback-lens/step04_run_decoding.py official repository unverified no licence file found · pointer only · 0eaabf1df4cdff46 · report

Tasks

ArticlesHallucination

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

AttentionSoftmax

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections