GSW: Generative Semantic Workspace—a structured memory representation where documents are converted into a network of entities, events, and atomic Question-Answer pairs.
RICR: Reasoning Inference Chain Retrieval—a retrieval algorithm that decomposes queries and performs a beam search over the GSW network to find connected QA pairs.
NPCL: Non-Parametric Continual Learning—a framework where the model remains fixed, and learning occurs by accumulating structured experiences in an external memory.
Platinum Benchmark: A dataset split curated by the authors to separate answerable from unanswerable questions, used to test a system's ability to abstain when evidence is missing.
Cross-encoder: A model that scores the relevance of a document to a query by processing them together, used here to rerank candidate QA pairs.
Beam search: A search algorithm that explores a graph by keeping the top-B most promising paths at each step, used here to find reasoning chains.
BM25: A standard probabilistic information retrieval function used to rank documents (or here, entities) based on term frequency.