Papers › Auditing Forgetting in Limited Memory Language Models

Auditing Forgetting in Limited Memory Language Models

1 Jul 2026arXiv:2607.00605added by Syntology

Arya Raeesi, Hanna Roed

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Limited Memory Language Models (LMLMs) externalize factual knowledge to a database to enable deletion-based unlearning without retraining. Existing evaluations measure post-deletion correctness in aggregate and cannot tell whether a deleted fact persists through residual parametric memory, alternative retrieval paths, or near-neighbor retrieval artifacts. We propose a causal auditing framework that holds the model fixed and varies the database state at inference time across three interventions: FULL, DEL-ON, and DEL-OFF. The framework decomposes post-deletion behavior into parametric leakage L(f), retrieval-mediated correctness R(f), and a retrieval artifact rate grounded in the inference-time retrieval trace. We apply it to 12,228 alias-closure deletions across thirteen databases, including four adversarial topologies (Base, Alias, Noise, Collision) we construct in three domains, and six prompt formulations. Parametric leakage is near zero in every variant and every prompt style: the model rarely returns the deleted answer in the absence of retrieval. The residual that does survive lives in the retrieval graph: retrieval-mediated correctness and the retrieval artifact rate match within rounding everywhere, so post-deletion correctness is, in our audit, predominantly reconstituted from near-neighbor retrieval. This residual ranges from 0.7% on the released LMLM database to 13.6% on the most adversarial variant, and prompt formulation does not independently control how much of a deleted fact survives. These results suggest that, for this class of LMLM and deletion procedure, the unlearning boundary is drawn primarily by the database administrator rather than by the model.

PaperPDFCode 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="2607.00605")

Code

Syntology Ran 20 of 26 code samples harvested from 1 repository linked to this paper; 6 have no recorded run. Of those that ran: 4 ran · violated contract; 12 ran · our draft was wrong; 4 ran with no contract checked.

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

raeesiarya/LMLMAudit found in paper text by Syntology report

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

26 samples harvested; 20 ran; 0 honoured the contract we drafted; 6 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.

4ran · violated contract
12ran · our draft was wrong
4ran
6unverified

Licence: 0 of the 26 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 raeesiarya/LMLMAudit. “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.

_default_retrieval_trace raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · bf84ec4bafaa142c · report
_flatten_alias_values raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 9fd2a6d4256cac2e · report
_unique_preserving_order raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · d75287169d8f8eff · report
build_alias_set raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 10a3c23b4e022f14 · report
candidate_supports_target_fact raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · violated contract MIT (permissive) · b240caf9e4324995 · report
choose_answer raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran MIT (permissive) · 2625b513a8784327 · report
clean_answer raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · e78ccae7868d860d · report
compute_generation_budget raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran MIT (permissive) · ab09f379e654b1e5 · report
extract_lookup_query raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 0373bc411296aa7d · report
extract_lookup_values raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 9c4e338ec3112dee · report
is_deleted_triplet raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · violated contract MIT (permissive) · 656b381216db2a07 · report
normalize_text raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · c1f14f57e9136ea6 · report
prepare_prompt raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · f7a44c18a1cf3b39 · report
prompt_row_aliases raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 23910038515b997b · report
retrieval_enabled raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · violated contract MIT (permissive) · 09d4a1065936f6a3 · report
retrieve_lookup_value raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran MIT (permissive) · c5f599a0ba29237c · report
retrieve_triplet_candidates raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran MIT (permissive) · 3daeab8516d2d741 · report
target_fact_from_prompt_row raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 65fdf054022cc6b8 · report
tokenize raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 56c931802f771660 · report
values_equivalent raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology ran · violated contract fingerprinted MIT (permissive) · 6d58c6065b37de13 · report
AuditDatabaseManager raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology unverified MIT (permissive) · 6ae72e492d22758d · report
DatabaseState raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology unverified MIT (permissive) · 5372af2c232205bf · report
TargetFact raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology unverified MIT (permissive) · bef54e1f3b6ad335 · report
build_state_db_manager raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology unverified MIT (permissive) · a3789f0f9efa93ad · report
generate_answer raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology unverified MIT (permissive) · 1908bdfde38728bb · report
run_prompt_audit raeesiarya/LMLMAudit/src/lmlm-audit/run_audit.py found in paper text by Syntology unverified MIT (permissive) · 69563b95bc69fdff · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2607.00605, was issued in July 2026, after that date, so the archive has no leaderboard rows for it.

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