REVIEW 4 major objections 4 minor 11 references
Structure and Destructure: Dual Forces in the Making of Knowledge Engines
T0 review · 4 major / 4 minor · reviewed 2026-08-05 · deepseek-v4-flash
Pith's one-line read This thesis claims that knowledge-graph models and large language models are driven by the same two forces—language modelling builds structure into model weights, and periodic embedding resets restore the plasticity needed to generalize to
desk verdict A well-written thesis whose synthesis is plausible but whose causal story on active forgetting needs an ablation that removes only the reset. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The unifying object is the embedding sandwich: any model with an input embedding layer, a central body, and an output unembedding layer. The load-bearing identity is the exact rewriting of gradient descent over entity embeddings as message-passing operations; this turns embeddings into caches of symbol-interaction messages. The other central mechanism is active forgetting—periodically resetting the embedding layer—which truncates that cache. For transformers, the corresponding object is the 2^L path decomposition of recursive residual networks, which turns the network into an ensemble of factorization models whose token-interaction databases can be read out as n-grams.
What would settle it
Take the same forgetting pretraining recipe but replace each periodic embedding reset with additive Gaussian noise of matched magnitude at the same intervals, holding everything else fixed. If the inductive graph and cross-lingual gains match the reset condition, the cache-truncation explanation is not necessary; if the gains disappear only when resets are applied to the embedding cache, the mechanism is supported.
Extended reading notes
Core claim
The central claim is that structure and destructure are complementary forces in making knowledge engines. Part I shows that a masked-language-modelling-style objective—predicting any symbol from its surrounding symbols—induces structure in both paradigms: adding relation prediction to standard entity-prediction training improves knowledge graph completion, especially on highly multi-relational graphs, and a transformer's residual computation can be decomposed into many input-to-output paths, each behaving like a factorization model, whose n-gram databases expose interpretable structure inside large language models. Part II argues that gradient descent on entity embeddings can be rewritten ex
Load-bearing premise
The claim that periodic embedding resets help generalization because they stop embeddings from caching excessive message-passing computations over symbols—rather than because the resets add noise, shrink model capacity, or interact with node-feature inputs—is the load-bearing premise; the thesis does not isolate it with an identification experiment.
Editorial extensions
If this is right
- Adding relation prediction to standard KBC training—a masked-language-modelling-style objective over triples—improves link prediction, especially on datasets with many relation types.
- A transformer's residual computation can be unrolled into many input–output paths, each resembling a factorization model; the resulting n-gram tables support data-free analysis of LLM internals, pretraining dynamics, and fine-tuning effects.
- Reinterpreting gradient descent on entity embeddings as message passing shows factorization models are a special kind of GNN with infinite layers, a global normalizer, and layer-wise training; truncating this with finite layers and node features yields ReFactor GNNs, which keep transductive performance and generalize inductively.
- Periodically resetting token embeddings during pretraining makes language models adapt faster and better to low-resource languages, with the largest gains for languages distant from the pretraining language.
- Together the results define a recipe: model the seen through structure formation, and model the unseen through active destructuring of the learned cache.
Reading between the lines
- Beyond the paper: if the cache-truncation account is right, the same periodic-reset trick should generalize to other over-trained embedding layers in continual learning or model editing, with resets scheduled by how long a symbol class has been cached rather than by a fixed interval.
- Beyond the paper: the n-gram extraction method could serve as a deployment-time audit tool—for example, checking whether fine-tuning or alignment edits actually remove undesirable knowledge, since the paper's own toxicity case study shows surface detoxification can leave embedded bigram mass almost unchanged.
- Beyond the paper: the structure/destructure dichotomy suggests a testable scaling prediction—the farther a new language or predicate is from the training distribution, the larger the relative benefit of active forgetting; the paper's cross-lingual results are consistent with this but do not establish the scaling law.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This PhD thesis proposes a unified account of two paradigms for building knowledge engines: the structured paradigm (knowledge graphs, factorization models/GNNs) and the unstructured paradigm (transformer LMs). The claimed connection is two complementary forces: 'structure'—language-modelling objectives induce recoverable symbolic structure in both paradigms—and 'destructure'—periodically resetting embedding weights ('active forgetting') improves plasticity and generalization to unseen entities/predicates/languages. Part I (Chs 2–3) presents experiments: adding relation prediction to 1vsAll training improves KGC on several benchmarks; residual-stream decomposition of transformers yields n-gram 'databases' used for interpretability case studies. Part II (Chs 4–5) reinterprets GD on FM embeddings as message passing, introduces ReFactor GNNs for inductive KGC with periodic node-state cache resets, and applies periodic token-embedding resets during PLM pretraining to improve low-resource cross-lingual adaptation. The thesis concludes by proposing a 'structure/destructure recipe' for general knowledge engines.
Significance. If the central causal mechanism were established, this would be a valuable conceptual bridge: it identifies a shared architectural abstraction (the 'embedding sandwich'), gives a formal rewriting of FM training as message passing, and connects two usually separate literatures. Strengths include benchmark-backed experimental chapters (FB15k-237, WN18RR, CoDEx, XNLI, MLQA, XQuAD), statistical significance tests in Ch2, open-source code for Ch2, and generated predictions (forgetting improves low-resource adaptation) that are in principle falsifiable. However, the 'destructure' force is currently a plausible interpretation rather than an established cause: the resets are not isolated from confounds, and the integrated recipe is not validated on a fresh benchmark. The thesis's own limitations section (§6.2.1) acknowledges the theoretical scope, but the missing identification experiment is central, not peripheral.
major comments (4)
- [Ch2, Table 2.4] The CoDEx-S/M/L rows reproduce, exactly, the WN18RR/FB15k-237/Aristo-v4 rows from Table 2.3 (e.g., CoDEx-S '0.487/0.441/0.501/0.580' equals WN18RR 'EP=on, RP=off'). Since CoDEx has different statistics, this is not plausible unless the table is mislabeled. Please correct and re-run/verify; as printed, the RQ1 claim 'relation prediction consistently improves MRR and Hits@1 across CoDEx' is unsupported by the reported data.
- [§4.4–§4.5, Fig 4.4] The formal rewriting (Eq. 4.7–4.9) shows GD updates on embeddings can be expressed as message passing. The load-bearing causal step—that converged FMs cache infinite rounds and that the periodic external cache reset improves generalization by truncating this cache—is not identified. ReFactor GNNs change several factors at once: finite L, input node features, layer-wise training, global normalizer, and reset. The inductive gains in Fig 4.4 are measured against FMs/GNNs, not against a no-reset ReFactor with identical features/capacity. The thesis should add this ablation; otherwise the performance gain could be due to reduced capacity, added noise, or node features. §6.2.1 flags scope but does not supply the experiment.
- [§5.4–§5.5, Algorithm 5] The pretraining comparison in Ch5 is standard vs forgetting PLMs. Since resetting token embeddings every K updates is a strong stochastic/regularization intervention, the observed gains in XNLI/MLQA/XQuAD do not by themselves establish the cache-truncation mechanism. Required controls include a single-reset baseline, injecting equivalent noise without resets, varying embedding capacity, and comparing reset of embeddings vs reset of other layers, plus an ablation of K. Without these, 'destructure' remains a post-hoc interpretation, not a mechanism.
- [§1.4, §6.3] The abstract and conclusion present 'a new recipe for developing general knowledge engines,' but the recipe is assembled from the author's own published experiments and is not held out against any fresh, integrated validation. The framework is therefore partly post-hoc. Either add a prospective validation of the combined structure+destructure recipe or explicitly re-frame it as an interpretive synthesis rather than a predictive recipe.
minor comments (4)
- [Figure 2.2] The caption says 'Hits@1 versus embedding size' but the body text refers to 'MRR'. Please align the axis label and the description.
- [Eq. 4.5] The notation is inconsistent: Eq. 4.4 defines relation embeddings as ψ[r], but Eq. 4.5 uses g(r). Define g consistently with the encoder notation in Eq. 4.2.
- [Impact Statement] Typo: 'fundmentally' should be 'fundamentally'.
- [Tables 5.4–5.5] The repeated caption 'Accuracy comparison of forgetting and standard PLMs on XQuAD (table continued)' is redundant; one caption with a note that the table spans pages is sufficient.
Circularity Check
No significant circularity: formal rewrites are exact, benchmarks are external, and the destructure mechanism is an underdetermined causal story rather than a self-referential derivation.
full rationale
I walked the paper's claimed derivation chain. In Chapter 2, relation prediction is an auxiliary objective term added to the standard 1vsAll objective; the evaluation is entity ranking on held-out triples against strong baselines. The entity-prediction improvement is an empirical result, not a quantity fitted by the auxiliary term by construction. In Chapter 3, the n-gram structures are extracted data-free from model weights via matrix products and softmax readouts; the paper's claim that LMs acquire these structures is supported by tracing bigram acquisition over pretraining and by comparison with corpus statistics, not merely by defining them into existence. Chapter 4's central identity (Eq. 4.7–4.9) is an exact rewriting of gradient descent over entity embeddings as message-passing; this is a mathematical equivalence, not a circular prediction. The inductive gains are evaluated on unseen graphs (e.g., FB15K237_v1_ind) against external methods (GraIL, NBFNet). ReFactor GNNs change multiple components simultaneously—finite layers, input node features, layer-wise training, a global normalizer, and the external cache reset—so the specific causal role of the reset is not isolated by an ablation that removes only the reset. That is an identification/confound concern, not circularity: no fitted parameter is renamed as a prediction, and the improvement does not reduce to the model's own training target. Chapter 5 compares forgetting pretraining with standard pretraining on XNLI, MLQA, and XQuAD; gains may come from regularization, altered capacity, or training/test distribution matching, but the outcomes are not encoded into the objective by definition. The overarching 'structure/destructure' synthesis is retrospective and partly semantic, but it does not substitute for evidence: each chapter provides its own external benchmarks and peer-reviewed provenance. Self-citations are declarations of provenance, not load-bearing arguments. The thesis itself flags theoretical scope and limitations (e.g., §6.2.1, §4.7, §3.6), which further supports treating the causal mechanism as an open interpretation rather than a circular derivation.
Assumptions & free parameters
free parameters (5)
- lambda (weight of relation prediction) =
per-dataset grid-selected value; lambda=1 in ablations
- K (forgetting interval) =
tuned per experiment; exact value not visible in truncated text (Appendix C.5 explores frequency sensitivity)
- L (number of ReFactor GNN message-passing layers) =
empirically chosen (ablation on n[v] in Ch4 Table 4.2)
- trigram sparsification threshold =
unspecified
- embedding size =
swept from 25 to 4000 in Ch2 ablations
assumptions (5)
- standard math Gradient descent on softmax scores equals message-passing; training to convergence therefore equals infinite message-passing rounds (Ch4, Section 4.4, Eqs. 4.7-4.9).
- domain assumption Language modelling objectives induce recoverable global structures in embedding-encapsulated models (Ch2, Ch3, Part I summary).
- domain assumption Transformers with nonlinearities can be decomposed into 2^L additive input-output paths for structure extraction (Ch3, Section 3.3.3).
- domain assumption The rewiring setup (frozen transformer body, relearned token embeddings, 125K adaptation steps) is a representative testbed for language plasticity (Ch5).
- standard math Unigram scores are obtained from the steady state of a bigram Markov matrix (Algorithm 2).
invented entities (2)
-
'Destructure' as a complementary force
-
'Embedding sandwich' abstraction
Cite this review
Pith. "Pith review of Structure and Destructure: Dual Forces in the Making of Knowledge Engines." pith.science (2026). https://pith.science/paper/NNNL2M5G
@misc{pith2026250900949,
author = {Pith},
title = {Pith review of: Structure and Destructure: Dual Forces in the Making of Knowledge Engines},
year = {2026},
howpublished = {\url{https://pith.science/paper/NNNL2M5G}},
note = {Machine review of arXiv:2509.00949}
}
read the original abstract
The making of knowledge engines in natural language processing has been shaped by two seemingly distinct paradigms: one grounded in structure, the other driven by massively available unstructured data. The structured paradigm leverages predefined symbolic interactions, such as knowledge graphs, as priors and designs models to capture them. In contrast, the unstructured paradigm centers on scaling transformer architectures with increasingly vast data and model sizes, as seen in modern large language models. Despite their divergence, this thesis seeks to establish conceptual connections bridging these paradigms. Two complementary forces, structure and destructure, emerge across both paradigms: structure organizes seen symbolic interactions, while destructure, through periodic embedding resets, improves model plasticity and generalization to unseen scenarios. These connections form a new recipe for developing general knowledge engines that can support transparent, controllable, and adaptable intelligent systems.
Figures
Figures from the paper (28 more)
Reference graph
Works this paper leans on
-
[1]
Componentscorrespondingtothetripletswhere v =v^ w6=v. Thesumofthese components is given by: X (v,r, w)∈T ∂logP ( wjv, r) ∂ϕ[v] = X (v,r, w)∈T " ∂Γ(v, r, w) ∂ϕ[v] X u P (ujv, r)∂Γ(v, r,u ) ∂ϕ[v] # = X (r, w)∈N 1 +[v] ϕ[ w] g(r) X (v,r, w)∈T X u P (ujv, r)g(r) ϕ[u]
-
[2]
Componentscorrespondingtothetripletswhere v6=v^ w=v. Thesumofthese components is given by: X ( v,r,v)∈T ∂ logP (vj v,r) ∂ϕ[v] = X ( v,r,v)∈T " ∂Γ( v,r,v ) ∂ϕ[v] X u P (uj v,r)∂Γ( v,r,u ) ∂ϕ[v] # = X ( v,r)∈N 1 −[v] g(r) ϕ[ v] (1P (vj v,r))
-
[3]
Componentscorrespondingtothetripletswhere v6=v^ w6=v. Thesumofthese 193 components is given by: X ( v,r, w)∈T ∂ logP ( wj v,r) ∂ϕ[v] = X ( v,r, w)∈T " 0 X u P (uj v,r)∂Γ( v,r,u ) ∂ϕ[v] # = X ( v,r, w)∈T P (vj v,r)∂Γ( v,r,v ) ∂ϕ[v] . = X ( v,r, w)∈T P (vj v,r)g(r) ϕ[ v]. Collecting these three categories, the GD operator overϕ[v], or rather the node repre-...
work page 2018
-
[4]
Eberhard Fuchs and Gabriele Flügge
URLhttps://openreview.net/forum?id=rJl-b3RcF7. Eberhard Fuchs and Gabriele Flügge. Adult neuroplasticity: more than 40 years of re- search. Neural plasticity, 2014(1):541870, 2014. 155 A Garcez, M Gori, LC Lamb, L Serafini, M Spranger, and SN Tran. Neural-symbolic computing: An effective methodology for principled integration of machine learning and reaso...
arXiv 2014
-
[8]
% TuckER (200, 100) 0.10 10 0.10 NA 0.920 %
URLhttps://arxiv.org/abs/2309.05660. Jason Wei, Maarten Bosma, Vincent Y Zhao, Kelvin Guu, Adams Wei Yu, Brian Lester, Nan Du, Andrew M Dai, and Quoc V Le. Finetuned language models are zero-shot learners. arXiv preprint arXiv:2109.01652, 2021. Laura Weidinger, John Mellor, Maribeth Rauh, Conor Griffin, Jonathan Uesato, Po-Sen Huang,MyraCheng,MiaGlaese,Bo...
arXiv 2021
-
[27]
How Does Knowledge Graph Embedding Extrapolate to Unseen Data: A Semantic Evidence View
Open Review, 62(1), 2022. 162 Seungpil Lee, Woochang Sim, Donghyeon Shin, Wongyu Seo, Jiwon Park, Seokki Lee, Sanha Hwang, Sejin Kim, and Sundong Kim. Reasoning abilities of large language models: In-depthanalysisontheabstractionandreasoningcorpus. ACMTrans.Intell. Syst.Technol., January 2025. ISSN 2157-6904. doi: 10.1145/3712701. URLhttps: //doi.org/10.1...
work page Pith review arXiv 2022
-
[2003]
DEPT: Decoupled Embeddings for Pre-training Language Models
URLhttps://doi.org/10.1016/j.websem.2003.07.001. Edward J Hu, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen, et al. Lora: Low-rank adaptation of large language models. InInter- national Conference on Learning Representations, 2021. 159 Ziniu Hu, Yuxiao Dong, Kuansan Wang, Kai-Wei Chang, and Yizhou Sun. Gpt-gnn: Generative ...
work page Pith review arXiv 2003
-
[2019]
Divyanshu Aggarwal, Ashutosh Sathe, and Sunayana Sitaram
URLhttps://api.semanticscholar.org/CorpusID:198147334. Divyanshu Aggarwal, Ashutosh Sathe, and Sunayana Sitaram. Exploring pretraining viaactiveforgettingforimprovingcrosslingualtransferfordecoderlanguagemodels. arXiv preprint arXiv:2410.16168, 2024. Jethro Akroyd, Sebastian Mosbach, Amit Bhave, and Markus Kraft. Universal digital twin - a dynamic knowled...
arXiv 2024
Show all 11 references
-
[2020]
Jerome Bruner.The Process of Education
URL https://proceedings.neurips.cc/paper_files/paper/2020/ file/1457c0d6bfcb4967418bfb8ac142f64a-Paper.pdf. Jerome Bruner.The Process of Education. Harvard University Press, 1960. Mateusz Buda, Atsuto Maki, and Maciej A Mazurowski. Imbalanced learning: A com- prehensive evalua...
2020 arXiv
-
[2023]
Alexis Conneau, Ruty Rinott, Guillaume Lample, Adina Williams, Samuel Bowman, Holger Schwenk, and Veselin Stoyanov
URL https://proceedings.neurips.cc/paper_files/paper/2023/ file/34e1dbe95d34d7ebaf99b9bcaeb5b2be-Paper-Conference.pdf. Alexis Conneau, Ruty Rinott, Guillaume Lample, Adina Williams, Samuel Bowman, Holger Schwenk, and Veselin Stoyanov. XNLI: Evaluating cross-lingual sentence re...
2023 arXiv
-
[2024]
Free eBooks from the public domain
URLhttps://www.gutenberg.org. Free eBooks from the public domain. Thomas Hartvigsen, Saadia Gabriel, Hamid Palangi, Maarten Sap, Dipankar Ray, and Ece Kamar. ToxiGen: A large-scale machine-generated dataset for adversarial and implicit hate speech detection. In Smaranda Muresa...
2022 arXiv
Reviewed August 5, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.