MemDefrag: Latent Memory Defragmentation for Large Language Models
About
Latent memory, which stores past knowledge fragments as per-layer hidden states, has emerged as a promising paradigm (e.g., MemoryLLM and M+) for long-term memory in large language models (LLMs). However, the paradigm suffers from significant performance degradation during memory updates, due to positional encoding misalignment and the absence of any tracing mechanism to distinguish target memory fragments from irrelevant ones. To discover such a tracing mechanism, we probe the layer-wise attention density over stored memory fragments, and find that a small set of middle transformer layers consistently concentrates the highest density on the target fragment - exposing an inherent tracing signal. In light of this, we propose MemDefrag, a training-free and model-agnostic framework that (1) uses a middle-layer tracing signal to conduct memory defragmentation (rank, reorder, and filter memories), and (2) applies an informativeness-guided proportional forgetting mechanism once capacity is exceeded. Experiments show that MemDefrag substantially outperforms MemoryLLM and M+ on knowledge retention (e.g., 43.0% vs. 17.4%/17.6% after 50 memory updates) and long-context benchmarks, and generalizes well across various LLMs and latent-memory variants. The code is available at github.com/ryehr/MemDefrag.
Related benchmarks
| Task | Dataset | Result | Rank | |
|---|---|---|---|---|
| Question Answering | SQuAD (test) | -- | 156 | |
| Question Answering | NaturalQA (test) | Accuracy67.4 | 39 | |
| Long-context Question Answering | 2WikiMultihopQA LongBench (test) | String Match36 | 3 | |
| Long-context Question Answering | HotpotQA LongBench (test) | String Match39 | 3 | |
| Long-context Question Answering | MuSiQue LongBench (test) | String Match20 | 3 | |
| Long-context Question Answering | NarrativeQA LongBench (test) | String Match11.48 | 3 | |
| Long-context Question Answering | Qasper LongBench (test) | String Match18.27 | 3 | |
| Long-context Question Answering | MultiFieldQA-en LongBench (test) | String Match6 | 3 |