Memory Retrieval in Transformers: Insights from The Encoding Specificity Principle
Viet Hung Dinh, Ming Ding, Youyang Qu, Kanchana Thilakarathna
TL;DR
This paper investigates memory retrieval in transformer-based LLMs through the lens of the Encoding Specificity Principle, positing that attention implements cue-based, content-addressable memory via $Q$ as retrieval cues, $K$ as memory indices, and $V$ as content storage. It provides empirical support across two experiments: (1) attention-swapping experiments showing that manipulating $V$ and/or $K$ drives memory retrieval errors and hallucinations consistent with a memory-structured attention system, and (2) K-matrix perturbations demonstrating that keywords act as retrieval cues and that disabling them impairs memory recall; a small subset of neurons appears specialized for keyword-driven memory. The work identifies model-specific memory neurons and demonstrates a method to extract keywords, enabling downstream use in unlearning and privacy-preserving applications, while acknowledging limitations in perturbation scope and multi-word cue handling. Overall, it argues that attention in transformers behaves in memory-like, ESP-consistent ways, offering a pathway to targeted memory manipulation and improved interpretability. $Attention = softmax\left( \frac{QK^T}{\sqrt{d_k}} \right) V$ captures the core computation linking cues, traces, and content within this memory framework.
Abstract
While explainable artificial intelligence (XAI) for large language models (LLMs) remains an evolving field with many unresolved questions, increasing regulatory pressures have spurred interest in its role in ensuring transparency, accountability, and privacy-preserving machine unlearning. Despite recent advances in XAI have provided some insights, the specific role of attention layers in transformer based LLMs remains underexplored. This study investigates the memory mechanisms instantiated by attention layers, drawing on prior research in psychology and computational psycholinguistics that links Transformer attention to cue based retrieval in human memory. In this view, queries encode the retrieval context, keys index candidate memory traces, attention weights quantify cue trace similarity, and values carry the encoded content, jointly enabling the construction of a context representation that precedes and facilitates memory retrieval. Guided by the Encoding Specificity Principle, we hypothesize that the cues used in the initial stage of retrieval are instantiated as keywords. We provide converging evidence for this keywords-as-cues hypothesis. In addition, we isolate neurons within attention layers whose activations selectively encode and facilitate the retrieval of context-defining keywords. Consequently, these keywords can be extracted from identified neurons and further contribute to downstream applications such as unlearning.
