paper-with-me

홈 › Papers

A Parametric Memory Head for Continual Generative Retrieval

2026-04-25 · Kidist Amde Mekonnen, Yubao Tang, Maarten de Rijke arxiv

Generative information retrieval (GenIR) consolidates retrieval into a single neural model that decodes document identifiers (docids) directly from queries. While this model-as-index paradigm offers architectural simplicity, it is poorly suited to dynamic document collections. Unlike modular systems, where indexes are easily updated, GenIR's knowledge is parametrically encoded in its weights; consequently, standard adaptation methods such as full and parameter-efficient fine-tuning can induce catastrophic forgetting. We show that sequential adaptation improves retrieval on newly added documents but substantially degrades performance on earlier slices, exposing a pronounced stability-plasticity trade-off. To address this, we propose post-adaptation memory tuning (PAMT), a memory-only stabilization stage that augments an adapted model with a modular parametric memory head (PMH). PAMT freezes the backbone and attaches a product-key memory with fixed addressing. During prefix-trie constrained decoding, decoder hidden states sparsely query PMH to produce residual corrections in hidden space; these corrections are mapped to score adjustments via the frozen output embedding matrix, computed only over trie-valid tokens. This guides docid generation while keeping routing and backbone parameters fixed. To limit cross-slice interference, PAMT updates only a fixed budget of memory values selected using decoding-time access statistics, prioritizing entries frequently activated by the current slice and rarely used in prior sessions. Experiments on MS MARCO and Natural Questions under sequential, disjoint corpus increments show that PAMT substantially improves retention on earlier slices with minimal impact on retrieval performance for newly added documents, while modifying only a sparse subset of memory values per session.

📄 PDF Abstract BibTeX arXiv:2604.23388

Code (0)

등록된 구현이 없습니다.

Tasks

parameter-efficient fine-tuningInformation RetrievalNatural Questions

Similar Papers 제목 키워드 기반

Continual Learning for Generative Retrieval over Dynamic Corpora

2023-08-29 · Jiangui Chen, Ruqing Zhang, Jiafeng Guo, Maarten de Rijke 외

Generative retrieval (GR) directly predicts the identifiers of relevant documents (i.e., docids) based on a parametric model. It has achieved solid performance on many ad-hoc retrieval tasks. So far, these tasks have ass…

Continual LearningQuantizationRetrieval

Nonparametric Decoding for Generative Retrieval

2022-10-05 · Hyunji Lee, Jaeyoung Kim, Hoyeon Chang, Hanseok Oh 외

The generative retrieval model depends solely on the information encoded in its model parameters without external memory, its information capacity is limited and fixed. To overcome the limitation, we propose Nonparametri…

DecoderLanguage ModellingRetrievalText Retrieval

When Continual Learning Moves to Memory: A Study of Experience Reuse in LLM Agents

2026-04-29 · Qisheng Hu, Quanyu Long, Wenya Wang arxiv

Memory-augmented LLM agents offer an appealing shortcut to continual learning: rather than updating model parameters, they accumulate experience in external memory, seemingly sidestepping the stability-plasticity dilemma…

Continual Learning

Generative Kernel Continual learning

2021-12-26 · Mohammad Mahdi Derakhshani, XianTong Zhen, Ling Shao, Cees G. M. Snoek

Kernel continual learning by \citet{derakhshani2021kernel} has recently emerged as a strong continual learner due to its non-parametric ability to tackle task interference and catastrophic forgetting. Unfortunately its s…

Continual Learning

From RAG to Memory: Non-Parametric Continual Learning for Large Language Models

2025-02-20 · Bernal Jiménez Gutiérrez, Yiheng Shu, Weijian Qi, Sizhe Zhou 외

Our ability to continuously acquire, organize, and leverage knowledge is a key feature of human intelligence that AI systems must approximate to unlock their full potential. Given the challenges in continual learning wit…

Continual LearningKnowledge GraphsRAGRetrieval+1