From Retrieval to Weights: Parametric Individualization of Small Language Models with Individual Text Corpora

arXiv cs.CL Papers

Summary

This paper explores parametric individualization of small language models by consolidating individual text corpora into model weights via DoRA fine-tuning, finding measurable individuality effects but limited alignment improvements in generalized knowledge tests.

arXiv:2609.10155v1 Announce Type: new Abstract: We approach a cognitive simulation perspective on episodic and semantic memory in multiple-choice question answering by incorporating text from individual text corpora (ITC) into retrieval-augmented generation and DoRA fine-tuning. We web-crawl the search histories of 515 participants who answered 36 multiple-choice knowledge items and analyze a stratified subsample of 150 participants. For each participant, one DoRA adapter consolidates their ITC into a small language model (SLM) whose baseline correctness falls below the participants' lowest quartile. The adapter measurably writes the ITC into the weights: it fits its own participant's held-out text better than other participants' texts (dz =1.27), an individuality effect that increases with ITC size in rank order. On the generalized knowledge test, however, the adapter adds knowledge rather than alignment with the individual: log-loss match improves, whereas match accuracy under a bias-corrected PMI readout does not, and retrieval adds nothing on top. Our results demonstrate that ITCs can be consolidated into the weights of SLMs, an encouraging basis for individualized tutoring agents, and we discuss how to move from there toward a realistic simulation of episodic and semantic memory at the individual level.
Original Article
View Cached Full Text

Cached at: 09/10/26, 08:20 AM

# From Retrieval to Weights: Parametric Individualization of Small Language Models with Individual Text Corpora
Source: [https://arxiv.org/html/2609.10155](https://arxiv.org/html/2609.10155)
###### Abstract

We approach a cognitive simulation perspective on episodic and semantic memory in multiple\-choice question answering by incorporating text from individual text corpora \(ITC\) into retrieval\-augmented generation and DoRA fine\-tuning\. We web\-crawl the search histories of515515participants who answered3636multiple\-choice knowledge items and analyze a stratified subsample of150150participants\. For each participant, one DoRA adapter consolidates their ITC into a small language model \(SLM\) whose baseline correctness falls below the participants’ lowest quartile\. The adapter measurably writes the ITC into the weights: it fits its own participant’s held\-out text better than other participants’ texts \(dz=1\.27d\_\{z\}\{=\}1\.27\), an individuality effect that increases with ITC size in rank order\. On the generalized knowledge test, however, the adapter adds knowledge rather than alignment with the individual: log\-loss match improves, whereas match accuracy under a bias\-corrected PMI readout does not, and retrieval adds nothing on top\. Our results demonstrate that ITCs can be consolidated into the weights of SLMs, an encouraging basis for individualized tutoring agents, and we discuss how to move from there toward a realistic simulation of episodic and semantic memory at the individual level\.

## 1Introduction

A key objective in both cognitive science and natural language processing \(NLP\) is to either reproduce or extract human knowledge from language models \(LMs\)\. Most of this effort operates at the population level: aggregate human knowledge is recovered from word and text embeddings\([Grand et al\., 2022](https://arxiv.org/html/2609.10155#bib.bib10)\), LMs are probed as generic cognitive subjects\([Binz and Schulz, 2023](https://arxiv.org/html/2609.10155#bib.bib3)\), and their outputs are aligned with knowledge distributed over populations\([He\-Yueya et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib12)\)\. However, what a person knows varies greatly from one individual to another\([Rolfhus and Ackerman, 1999](https://arxiv.org/html/2609.10155#bib.bib24);[Hambrick and Engle, 2002](https://arxiv.org/html/2609.10155#bib.bib11)\)\. Reproducing knowledge at the individual rather than the aggregate level is therefore a distinct and largely open challenge\.

Human knowledge about the world is held in semantic memory, which stores general facts separately from the episodic memory for single personal events\([Tulving, 1972](https://arxiv.org/html/2609.10155#bib.bib29);[Tulving, 2002](https://arxiv.org/html/2609.10155#bib.bib30)\)\. In psychometric terms, this accumulated knowledge is called crystallized intelligence \(Gc\)\. It grows when fluid ability is invested in learning directed toward particular domains, influenced by personality and interests\([Cattell, 1963](https://arxiv.org/html/2609.10155#bib.bib6);[Horn and Cattell, 1967](https://arxiv.org/html/2609.10155#bib.bib16);[Ackerman, 1996](https://arxiv.org/html/2609.10155#bib.bib1)\)\. The Openness\-Fluid\-Crystallized\-Intelligence \(OFCI\) model frames this as environmental enrichment\([Ziegler et al\., 2012](https://arxiv.org/html/2609.10155#bib.bib37);[Trapp et al\., 2019](https://arxiv.org/html/2609.10155#bib.bib28)\)\. According to the OFCI model, openness leads people to seek out stimulating environments that strengthen fluid ability, which builds crystallized intelligence\. The internet is seen as one such enriching environment: much of what a person comes to know is built by engaging with online content\. A person’s search history records the content with which they have engaged, thereby tracing the knowledge\-building related information they have acquired individually\. We use this information to create an individual text corpus \(ITC\) for each person, as described in[Hofmann et al\. \(2024\)](https://arxiv.org/html/2609.10155#bib.bib14)\. This data structure is central to our work\.

Large language models \(LLMs\) store substantial factual knowledge\([Petroni et al\., 2019](https://arxiv.org/html/2609.10155#bib.bib39)\), but this knowledge is generic and not tied to a specific person\([Zhang et al\., 2025](https://arxiv.org/html/2609.10155#bib.bib35)\)\. A prior study investigated whether individual knowledge can be simulated from a person’s own data\([Wigbels et al\., 2026](https://arxiv.org/html/2609.10155#bib.bib41)\)\. It combined the Google search histories of316316participants with retrieval\-augmented generation \(RAG\) to predict each participant’s answers to multiple\-choice knowledge items\. That study introduced the three answer\-alignment benchmarks we reuse here,match accuracy,log\-loss match, andCK\-accuracy\(crystallized\-knowledge accuracy; defined in[Section 3\.5](https://arxiv.org/html/2609.10155#S3.SS5)\); it found a detectable individual signal, with match accuracy above chance, but poor calibration, with low probabilities on the participants’ answers\.

Retrieval is one route by which a person’s knowledge can enter a model\. Semantic knowledge is not confined to the specific situations or episodes in which it was acquired\. Through a process called consolidation, episodic experiences are gradually reorganized into a distributed store of semantic knowledge\([McClelland et al\., 1995](https://arxiv.org/html/2609.10155#bib.bib21)\)\. RAG mirrors the episodic step: it keeps the participant’s ITC in an external store and queries it at inference time\. The second step is to consolidate the participant’s ITC into the memory weights themselves\. We implement this approach using a per\-participant DoRA \(weight\-decomposed low\-rank adaptation\) adapter\([Liu et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib18)\), a parameter\-efficient form of continued pretraining that writes the ITC into a low\-rank weight update while keeping the base model frozen\. This reflects the recent advancement of parameter\-efficient fine\-tuning as a means of personalizing LLMs for individual users\([Tan et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib27)\)\. Thus, we reframe the problem of simulating individual knowledge as a problem of parametric individualization\. This approach focuses on whether a person’s knowledge, once encoded in the model’s weights, corresponds to their actual responses\.

Using an ITC as a proxy for a person’s knowledge and mapping it onto the weights of an SLM that has been fine\-tuned accordingly changes what a valid readout must look like\. Standard forced\-choice evaluation reads answers from the first\-token probabilities of the option identities\([Zheng et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib36)\)\(IDs; i\.e\., A, B, C, or D, in four\-option question answering\)\. This presupposes that the model can follow instructions, which it may not be able to do\. Continued pretraining on running text involves predicting the next token rather than following instructions\. Therefore, for parametric individualization, the choice of readout is constitutive rather than incidental \([Section 2\.3](https://arxiv.org/html/2609.10155#S2.SS3)\)\. Therefore, we keep the benchmark definitions of the prior study\([Wigbels et al\., 2026](https://arxiv.org/html/2609.10155#bib.bib41)\), but we operationalize them over the likelihoods of the options A–D in all four design cells \(cf\.[Section 3\.5](https://arxiv.org/html/2609.10155#S3.SS5)\)\. This shift from retrieval to weights has a corresponding shift in measurement, from the answer interface to the answer content\. We test three hypotheses:

- H1Parametric individualization:Adding participant\-specific adapters improves the match with participants’ answers: across retrieval conditions, the match accuracy increases and the log\-loss match decreases compared to the baseline\.
- H2Adapting versus retrieving:The adapter and retrieval reach the individual signal through different routes, so their effects need not be additive\. To test H2, we examine their interaction: whether writing knowledge into weights substitutes for retrieval \(a larger adapter effect without RAG\) or complements it \(a persistent adapter effect under RAG\)\.
- H3Robustness to ITC size:The adapter and retrieval effects persist when ITC size is statistically controlled \(the ITC size varies by several orders of magnitude across participants\)\.

We evaluate our hypotheses in a2×22\\times 2design that crosses the individualized semantic memory model with RAG\-based episodic memory retrieval\. The first factor contrasts the frozen baseline with the baseline carrying the participant’s DoRA adapter\. The second factor contrasts answering without retrieval with the ITC\-based RAG \(ITC\-RAG\) retrieval of[Wigbels et al\. \(2026\)](https://arxiv.org/html/2609.10155#bib.bib41)\. All four conditions are scored based on the three answer\-alignment benchmarks of[Wigbels et al\. \(2026\)](https://arxiv.org/html/2609.10155#bib.bib41): match accuracy, log\-loss match, and CK\-accuracy\.

## 2Related Work

### 2\.1Individual Text Corpora and Memory Consolidation

The individual text corpus rests on the premise that a large enough sample of the text a person has engaged with approximates the knowledge that person has acquired – an approach introduced for individual reading behavior and scaled to web\-scale search histories by[Hofmann et al\. \(2024\)](https://arxiv.org/html/2609.10155#bib.bib14)\. The study extended here applied this premise through retrieval, leaving the corpus in an external store\([Wigbels et al\., 2026](https://arxiv.org/html/2609.10155#bib.bib41)\)\.

How such an ITC is queried maps onto the organization of human memory\. Complementary learning systems theory distinguishes a fast episodic system from a slow neocortical one that consolidates repeated experience into distributed semantic representations\([McClelland et al\., 1995](https://arxiv.org/html/2609.10155#bib.bib21)\), a distinction increasingly used to interpret memory in language models, where retrieval acts as an episodic mechanism supplying context at inference time\([Dong et al\., 2025](https://arxiv.org/html/2609.10155#bib.bib8);[Fountas et al\., 2025](https://arxiv.org/html/2609.10155#bib.bib9)\)\. Consolidating the ITC into the weights is its semantic counterpart, and the present study compares the two routes with each other\.

### 2\.2Parameter\-Efficient Fine\-Tuning and Personalized LLMs

Adapting a language model to an individual user has most often been approached through the input, by retrieving user\-specific documents or conditioning on a user’s history at inference time\([Zhang et al\., 2025](https://arxiv.org/html/2609.10155#bib.bib35)\)\. A complementary approach adapts the parameters instead\. Parameter\-efficient fine\-tuning \(PEFT\) makes this tractable at the scale of one model per user, since only a small adapter is stored per person while the base model is shared\([Tan et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib27)\)\. Low\-rank adaptation \(LoRA\) is the dominant PEFT family, and[Liu et al\. \(2024\)](https://arxiv.org/html/2609.10155#bib.bib18)extend it with DoRA, which decomposes each weight into a magnitude and a direction and thereby brings its learning behavior closer to full fine\-tuning\. Writing new content into the weights, however, interacts with what the model already knows\.[Biderman et al\. \(2024\)](https://arxiv.org/html/2609.10155#bib.bib2)show that low\-rank updates acquire less new material than full fine\-tuning but also perturb the base model’s existing behavior less, whereas continued pretraining on a narrow corpus without replay, that is, without interleaving general data into the training stream, is an established cause of degraded general ability, including instruction\-following\([Ibrahim et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib17);[Luo et al\., 2023](https://arxiv.org/html/2609.10155#bib.bib20)\)\. This degradation is a property of the training regime rather than of model size, with which forgetting does not vary monotonically\([Ramasesh et al\., 2022](https://arxiv.org/html/2609.10155#bib.bib23);[Luo et al\., 2023](https://arxiv.org/html/2609.10155#bib.bib20)\)\. We therefore adopt DoRA for its higher adaptation capacity, appropriate for writing an ITC into a small base model; the accompanying loss of instruction\-following is not a failure of the model but a measurement question, which[Section 2\.3](https://arxiv.org/html/2609.10155#S2.SS3)takes up\.

### 2\.3Measuring Forced\-Choice Answer Behavior

How an answer is extracted from an LLM is not neutral\. One line of work shows that forced\-choice readouts carry model\-side response biases: LLMs prefer specific option IDs regardless of content, an effect that survey\-style questioning amplifies\([Dominguez\-Olmedo et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib7)\)and that ablations locate the decision in the ID tokens themselves rather than in the ordering positions of the options\([Zheng et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib36)\)\. A second line separates readout from the answer:[Wang et al\. \(2024b\)](https://arxiv.org/html/2609.10155#bib.bib31)show that the option ranked highest by first\-token probability frequently differs from the answer the model generates as text, with the mismatch growing as instruction\-following ability decreases, and text answers prove more robust to option reordering and question perturbations than first\-token probabilities, including debiased ones\([Wang et al\., 2024a](https://arxiv.org/html/2609.10155#bib.bib32)\)\. Scoring option contents by their length\-normalized likelihood is the older readout and remains standard for models that do not follow instructions\([Wang et al\., 2024a](https://arxiv.org/html/2609.10155#bib.bib32)\)\. For the present study these findings carry a design consequence rather than a caveat: adapters obtained by raw continued pretraining are not instruction\-followers by construction, so all four cells are scored on option contents \([Section 3\.5](https://arxiv.org/html/2609.10155#S3.SS5)\)\.

## 3Methods

### 3\.1Design overview

![Refer to caption](https://arxiv.org/html/2609.10155v1/dora_study_overview.png)Figure 1:Overview of the study\.[Figure 1](https://arxiv.org/html/2609.10155#S3.F1)summarizes the study design\. We selectedQwen3\-0\.6Bas the base model, since smaller language models have been found to align better with human knowledge distributions than larger ones\([He\-Yueya et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib12)\)\. The base model remains frozen in bfloat16; the per\-participant adapters are specified in[Section 3\.4](https://arxiv.org/html/2609.10155#S3.SS4)\.

### 3\.2Participants and Knowledge Assessment

Participants were recruited through university flyers, the SONA system, and personal recruitment\. Eligibility required fluency in German, active use of a Google account for at least one year, and completion of an online survey of 60 to 90 minutes covering knowledge, personality, interests, fluid intelligence, and demographic information\. Participants received course credit or a payment of up to 18 euros\. A participant was excluded if they did not provide a valid search history file or if the resulting ITC fell below the minimum size criterion of 2,500 unique word types\. Crystallized knowledge was assessed with 36 multiple\-choice items, the 12 items of the BEFKI GC\-K short scale\([Schipolowski et al\., 2014](https://arxiv.org/html/2609.10155#bib.bib25)\)and 24 newly developed items, each with a question stem, four answer options, and exactly one correct answer \(example item in Appendix[A](https://arxiv.org/html/2609.10155#A1)\)\. After applying these criteria,515515participants qualify\. The present study is based on a stratified subsample ofN=150N\{=\}150of them, drawn across the ITC size range with outliers trimmed at both ends\. Twelve of these participants failed the control questions of the knowledge assessment and are excluded from the answer\-level analyses \(N=138N\{=\}138\); the text\-level analyses use allN=150N\{=\}150\.

### 3\.3Individual Text Corpora

Each participant’s ITC was assembled from their own Google search history, so that the corpus consists of the running text that participant actually engaged with online\. The participant exported this history through Google Takeout, from which we extracted the list of visited URLs\. The pages behind these URLs were retrieved with a two\-pass scraping pipeline: a first HTTP\-extraction pass and a second JavaScript\-rendering pass, both routed through rotating proxies, with support for PDF documents\. A cleaning filter then removed boilerplate content and discarded non\-German text, excluding any sentence with fewer than three German stop words\. English\-language content was machine\-translated into German with NLLB\([NLLB Team et al\., 2022](https://arxiv.org/html/2609.10155#bib.bib22)\)beforehand, so that engagement with English pages is retained in German form rather than discarded\. Duplicate documents were removed, so that pages a participant visited repeatedly do not inflate the ITC\.

### 3\.4Per\-Participant DoRA Adapters

Each participant’s knowledge is consolidated into the shared base model through a dedicated per\-participant DoRA adapter\([Liu et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib18)\), whose higher adaptation capacity at equal rank \([Section 2\.2](https://arxiv.org/html/2609.10155#S2.SS2)\) suits our setting, where a substantial amount of new content must be written into a small model\. With the base weights frozen, the adapter is a compact carrier of what is unique to that person, while the base model holds what is shared across participants: a parametric counterpart to the consolidation of episodic experience into semantic memory\([McClelland et al\., 1995](https://arxiv.org/html/2609.10155#bib.bib21)\)\. For each participant, one DoRA adapter \(r=16r\{=\}16,α=32\\alpha\{=\}32, dropout0\.050\.05, all linear modules\) is trained by raw continued pretraining on that participant’s cleaned ITC \(learning rate1\.5×10−41\.5\\times 10^\{\-4\}, constant after5%5\\%warmup, paged 32\-bit AdamW, effective batch size of2424sequences of2,0482\{,\}048tokens, bf16\), without any synthetic augmentation, using a seeded document\-level train/held\-out split and early stopping on the held\-out loss \(epoch ceiling of1010, patience of33\)\. The objective thus writes the knowledge distribution of the ITC into the weights rather than teaching an answer format; answers are therefore scored over option contents \([Section 3\.5](https://arxiv.org/html/2609.10155#S3.SS5)\)\.

### 3\.5Evaluation

All four cells are scored on the answer\-alignment benchmarks of the prior study: match accuracy and log\-loss match as primary benchmarks, and CK\-accuracy as a secondary one\([Wigbels et al\., 2026](https://arxiv.org/html/2609.10155#bib.bib41)\)\. As motivated in[Section 1](https://arxiv.org/html/2609.10155#S1)and[Section 2\.3](https://arxiv.org/html/2609.10155#S2.SS3), we keep these benchmark definitions but operationalize them over the option*contents*rather than the option IDs\. We therefore score every cell by the length\-normalized sequence likelihood of each option’s content: the mean per\-token log\-likelihood of the option text given the question prompt, renormalized over the four options into an answer distribution\. Match accuracy is then the share of items where the most likely option equals the participant’s answer\. Log\-loss match is the negative log probability of the participant’s option\. CK\-accuracy is the share of items where the correctness of the model’s most likely option matches the correctness of the participant’s answer\. We take as our primary scoring view a domain\-conditional pointwise\-mutual\-information \(PMI\) variant that additionally subtracts each option’s mean per\-token log\-likelihood under a neutral null prompt \(“Antwort:”, German for “Answer:”\), which removes preferences for generic option strings\([Brown et al\., 2020](https://arxiv.org/html/2609.10155#bib.bib4);[Holtzman et al\., 2021](https://arxiv.org/html/2609.10155#bib.bib15)\)\. The resulting scores are renormalized over the four options in the same way, and the length\-normalized \(LN\) likelihood above then serves as a robustness view\. A permutation\-balanced control bank, a small synthetic item set in which every answer option appears equally often in every position, confirmed that this readout is content\-driven in both model arms \(base and adapter\) \(control accuracy0\.500\.50for the base model and0\.700\.70–0\.720\.72for adapters at a chance level of0\.250\.25\), whereas ID\-based readouts sit at chance level for the adapters\. In the retrieval cells, the participant’s ITC is queried with the item stem through dense retrieval: nomic\-embed\-text\-v1\.5 embeddings over the ITC chunks, with chunking identical to the prior study’s retrieval store\([Wigbels et al\., 2026](https://arxiv.org/html/2609.10155#bib.bib41)\)\. The five best\-matching chunks are inserted into the prompt ahead of the question\. All prompts end with the neutral cue “Antwort:” and use no chat template, and for a given participant and item the retrieved context is identical in the base and the adapter arm\. We split items by participant correctness and decompose the adapter’s change in option probability within it\. Writingδx=px​\(adapter\)−px​\(base\)\\delta\_\{x\}=p\_\{x\}\(\\text\{adapter\}\)\-p\_\{x\}\(\\text\{base\}\)for the shift on optionxx,*knowledge gain*is, on correctly answered items,δ\\deltaon the correct option minus the meanδ\\deltaover the three wrong options, the generic injection readout\. On incorrectly answered items we report*chosen\-option mass*,δ\\deltaon the option the participant actually chose, and*error alignment*, that shift minus the meanδ\\deltaover the two other wrong options; the latter is positive only when the adapter moves toward this participant’s specific error rather than toward plausible distractors in general, isolating person\-specific alignment from generic correctness\. Knowledge gain is thus the graded, likelihood\-based analogue of CK\-accuracy, whereas error alignment measures what CK\-accuracy cannot see, namely which wrong option a participant chooses\. All three are computed under both scoring views\. Since the operationalization differs from that of the prior study, absolute levels are not comparable with the values reported there; all hypothesis tests are within\-method contrasts between the four cells, with ITC size statistically controlled \(H3\)\. To test whether an adapter carries person\-specific rather than generic information, we additionally score it on held\-out running text \(per\-token NLL over packed20482048\-token blocks; protocol in Appendix[B](https://arxiv.org/html/2609.10155#A2)\)\. For each participant we compute the reduction in per\-token negative log\-likelihood of their own adapter relative to the base model on their own held\-out documents \(the injection checkgowng\_\{\\mathrm\{own\}\}\), and on the held\-out documents of2020seeded partner participants \(gforeigng\_\{\\mathrm\{foreign\}\}\)\. The individuality contrastgown−g¯foreigng\_\{\\mathrm\{own\}\}\-\\bar\{g\}\_\{\\mathrm\{foreign\}\}is positive only when the adapter fits its own person’s unseen text beyond any generic gain; this measurement uses no answer format and provides the foreign reference the answer level lacks\. All hypothesis tests are paired within participants: item\-level scores are averaged per participant and cell, and the per\-participant differences are tested\. A Shapiro–Wilk check selects the test, Student’sttwhen normality holds and the Wilcoxon signed\-rank test otherwise, and effect sizes are reported as within\-subject Cohen’sdzd\_\{z\}, the mean difference divided by the standard deviation of the differences\. The H2 interaction is computed per participant as the difference of the adapter effect between the two retrieval conditions\. For H3, each per\-participant contrast is correlated withlog10\\log\_\{10\}ITC size \(Pearson and Spearman\), so that an effect carried by ITC size would appear as a nonzero association\.

## 4Results

Figure 2:Answer correctness \(share of items answered correctly\) for the four design cells and the participants, for all3636knowledge items and separately for the1212public BEFKI GC\-K items and the2424unpublished extended items \(N=138N\{=\}138, PMI scoring view\)\. Error bars are95%95\\%confidence intervals across participants\. The dashed line marks the four\-option chance level \(0\.250\.25\), the dotted line the participants’ lower quartile \(0\.5560\.556\); every model cell falls below it\. The base model answers the public items markedly more often correctly than the unpublished ones, whereas the participants do not\.### 4\.1Parametric Individualization \(H1\)

Figure 3:Log\-loss match \(negative log probability of the participant’s own answer; lower is better\) for base model and per\-participant adapter, without retrieval and with ITC\-RAG, under the primary PMI and the length\-normalized \(LN\) robustness view \(N=138N\{=\}138\)\. Bars: cell means with95%95\\%CIs across participants; dashed line: chance level \(−ln⁡0\.25≈1\.39\-\\ln 0\.25\\approx 1\.39nats\)\. Brackets: paired base\-vs\-adapter contrast per retrieval condition \(Shapiro–Wilk\-selectedtt/Wilcoxon;∗∗∗p<\.001\{\}^\{\*\*\*\}p<\.001;dz=0\.51/0\.44d\_\{z\}=0\.51/0\.44under PMI,1\.74/1\.581\.74/1\.58under LN\)\.At the text level, the injection checkgowng\_\{\\mathrm\{own\}\}is positive: with the participant’s own adapter, the model finds that participant’s held\-out documents on average0\.3800\.380nats per token less surprising than the frozen base model does \(dz=3\.74d\_\{z\}=3\.74, one\-samplet⁡\(149\)=45\.8t\(149\)=45\.8,p<\.001p<\.001\), so the ITCs have been written into the weights\. The individuality contrast is also positive: an adapter fits its own participant’s unseen text by0\.1070\.107nats per token better than it fits other participants’ held\-out texts \(dz=1\.27d\_\{z\}=1\.27; Shapiro–Wilk rejected normality, so we report the Wilcoxon test,p<\.001p<\.001\)\. The weights therefore carry an individual signal beyond a generic domain gain\.

At the answer level \([Table 1](https://arxiv.org/html/2609.10155#S4.T1)\), match accuracy improves under length normalization \(\+0\.050\+0\.050,dz=0\.91d\_\{z\}=0\.91\) but is null under PMI \(−0\.008\-0\.008, n\.s\.\)\. The length\-normalized gain is therefore explained by preferences for generic option strings, which the PMI view removes, rather than by alignment with the individual participant\. Log\-loss match improves in both views, by0\.2480\.248nats under LN and0\.0790\.079nats under PMI: the individualized model assigns more probability to the answers the participants actually gave, and[Figure 3](https://arxiv.org/html/2609.10155#S4.F3)shows this reduction for each design cell\. CK\-accuracy rises under LN \(\+6\.1\+6\.1percentage points\) but falls under PMI \(−3\.3\-3\.3points\)\. The correctness split explains this pattern\. On correctly answered items the adapter adds probability to the correct option \(knowledge gain\+0\.039\+0\.039under PMI\), whereas on incorrectly answered items it removes probability from the option the participant actually chose \(chosen\-option mass−0\.043\-0\.043\) and moves away from that participant’s specific error rather than toward it \(error alignment−0\.017\-0\.017\)\. In sum, the adapter makes the small model more knowledgeable, and this generic correctness gain carries the log\-loss improvement, while the alignment with the individual person’s answer behavior decreases, in particular with their errors\. The item\-set split doubles as a contamination control \([Figure 2](https://arxiv.org/html/2609.10155#S4.F2)\): the base model is far better on the1212public BEFKI GC\-K items than on the2424unpublished ones \(\.417\.417vs\.\.292\.292\), a gap the participants do not show \(\.672\.672vs\.\.645\.645\); the adapter shrinks it to\.072\.072, so the added knowledge lands disproportionately on items that cannot have been in the base model’s pretraining data\.

Table 1:H1 answer\-level contrasts \(adapter vs\. base\),N=138N\{=\}138\.Note\.Base and Adapter are cell means averaged over the two retrieval conditions; M is the mean within\-participant difference \(log\-loss match as base minus adapter, so that positive values mean improvement\) anddzd\_\{z\}the within\-subject Cohen’sdzd\_\{z\}\. All measures are defined in[Section 3\.5](https://arxiv.org/html/2609.10155#S3.SS5)\. Chance reference:0\.250\.25for match accuracy and chosen\-option mass,−ln⁡\(0\.25\)≈1\.39\-\\ln\(0\.25\)\\approx 1\.39nats for log\-loss match, and00for knowledge gain and error alignment; CK\-accuracy is in percentage points\. PMI is the primary scoring view, LN \(length\-normalized\) the robustness view\. The paired test is selected per contrast by a Shapiro–Wilk check \(tt/Wilcoxon\);∗p<\.05\{\}^\{\*\}p<\.05,p∗⁣∗<\.01\{\}^\{\*\*\}p<\.01,∗∗∗p<\.001\{\}^\{\*\*\*\}p<\.001, unmarked entries are not significant\. Each contrast targets a distinct construct, sopp\-values are uncorrected\.bN=136N\{=\}136: two participants answered all items correctly\.
### 4\.2Adapter by Retrieval \(H2\)

The adapter\-by\-retrieval interaction is null in the primary PMI view for both benchmarks \(match accuracyM=\+0\.004M=\+0\.004,dz=0\.06d\_\{z\}=0\.06; log\-loss matchM=−0\.008M=\-0\.008,dz=−0\.10d\_\{z\}=\-0\.10; positive values would mean that retrieval helps more with the adapter than with the base model\)\. In the LN view, the match interaction is small and negative \(M=−0\.015M=\-0\.015,dz=−0\.23d\_\{z\}=\-0\.23,p<\.01p<\.01; log\-loss matchM=−0\.007M=\-0\.007,dz=−0\.09d\_\{z\}=\-0\.09, n\.s\.\), that is, retrieval adds slightly less on top of the adapter than on top of the base model\.

### 4\.3Robustness to ITC Size \(H3\)

The person\-specific text\-level effect shows no linear association with ITC size \(r=\.15r=\.15,p=\.069p=\.069,N=150N\{=\}150\), but a positive rank\-order association \(ρ=\.29\\rho=\.29,p<\.001p<\.001\): individuality tends to be larger for participants with larger corpora, without scaling linearly in its magnitude\. The effect itself is not carried by ITC size, since partialinglog10\\log\_\{10\}ITC size out of the contrast leaves its size essentially unchanged \(size\-adjusteddz=1\.29d\_\{z\}=1\.29against1\.271\.27unadjusted\)\. The answer\-level H1 contrasts are size\-independent in the primary PMI view \(\|r\|≤\.05\|r\|\\leq\.05\), and a single nominal association among the eight answer\-level size tests \(the match interaction under PMI,r=\.19r=\.19,p=\.04p=\.04\) does not survive any correction for multiple testing\. The likelihood gain from assigning an ITC to its own participant is therefore present across the whole sampled ITC\-size range\.

## 5Discussion and Outlook

The adapters demonstrably write individual information into the weights: each adapter fits its own participant’s held\-out text better than other participants’ texts \(dz=1\.27d\_\{z\}=1\.27\)\. At the answer level, H1 is only partially supported: log\-loss match improves in both scoring views, whereas match accuracy does not improve in the primary PMI view, and the correctness split attributes the log\-loss gain to generic knowledge rather than to alignment with the individual participant \([Table 1](https://arxiv.org/html/2609.10155#S4.T1)\)\. Retrieval does not interact with the adapter effect \(H2\), and none of the effects is carried by ITC size \(H3\)\. In terms of complementary learning systems, consolidation into the weights thus succeeded for the ITC itself, while neither route reproduced the participant’s individual answer behavior\.

Our first reason for choosing the relatively small Qwen3\-0\.6B base model was a previous study suggesting that smaller models align better with human knowledge distributions\([He\-Yueya et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib12)\)\. Second, this design choice was motivated by a previous study showing that log\-loss match is lowest with small language models\([Wigbels et al\., 2026](https://arxiv.org/html/2609.10155#bib.bib41)\)\. Third, pretrained LLMs hardly forget their factual knowledge\([Cossu et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib38)\); as knowledge already present in the weights can hardly be removed again, we decided to use a base model that performs below the participant population\. As[Figure 2](https://arxiv.org/html/2609.10155#S4.F2)shows, however, the gap is larger than intended: the base model’s correctness \(\.33\.33\) falls below the participants’ lower quartile \(\.56\.56\), and in all conditions the model answered worse than the participants did\. Therefore, this small language model approach has inherent drawbacks\. Although fine\-tuning injected individual knowledge, it did not raise individual memory simulation to a level of correctness reached by the participants\. We see several potential remedies for this problem and plan to test them in the following order: a\) The fine\-tuning objective may be informed by log\-loss match on a training sample, though this would require more knowledge items for testing\. As the BEFKI GC\-K items represent the knowledge domains of humanities, as well as social and natural science\([Schipolowski et al\., 2014](https://arxiv.org/html/2609.10155#bib.bib25)\), one could alternatively think of a pessimistic leave\-one\-knowledge\-domain\-out internal cross\-validation, which excludes generic domain gain by the model development strategy, and an external hold\-out participant sample for testing\. As not all knowledge domains may be represented equally well, such an approach might be framed in a data\-driven manner by semantic knowledge clusters and questions designed for these more diverse and divergent knowledge clusters\. b\) We may choose a larger LLM, but such a model may possess too much knowledge\. To remedy this problem, parameters may be noised until an appropriate level of correctness is reached, either for the sample’s lowest quartile \(combinable with option a\), or by selecting an appropriate noise level per participant\. The target correctness might be set slightly below the participant’s level, such that the ITC only emphasizes that specific participant’s knowledge\. Since[Figure 2](https://arxiv.org/html/2609.10155#S4.F2)shows that individual fine\-tuning increased the model’s answer correctness by approximately77percentage points, we may select a level of noise that produces a corresponding baseline underperformance in the base model\. c\) A psychological theory\-driven approach might also suggest using each participant’s level of fluid intelligence to select an appropriate level of reasoning for their base model\. For instance, Qwen3 provides a wide parameter range from 0\.6B to 32B\([Qwen Team, 2025](https://arxiv.org/html/2609.10155#bib.bib40)\)\. Therefore, participants’ correctness bins could be mapped against model sizes to select a tailored base model\.

Though we made substantial progress in terms of log\-loss match, our values are not directly comparable with the prior study\([Wigbels et al\., 2026](https://arxiv.org/html/2609.10155#bib.bib41)\): it read answers from option\-ID probabilities, which carry their own letter biases\([Zheng et al\., 2024](https://arxiv.org/html/2609.10155#bib.bib36)\), whereas our adapters require scoring over option contents \([Section 2\.3](https://arxiv.org/html/2609.10155#S2.SS3)\)\. The reliable evidence is within\-method: the adapter lowers log\-loss match relative to the base model in both scoring views \([Figure 3](https://arxiv.org/html/2609.10155#S4.F3)\), whereas ITC\-RAG retrieval does not\. Our values still remain above the chance\-level baseline of−ln⁡\(0\.25\)=1\.39\-\\ln\(0\.25\)=1\.39nats, so calibration to the participant’s own answer stays limited\. Because scoring over option contents introduces length and surface\-form preferences\([Brown et al\., 2020](https://arxiv.org/html/2609.10155#bib.bib4);[Holtzman et al\., 2021](https://arxiv.org/html/2609.10155#bib.bib15)\), the domain\-conditional PMI scoring we adopt removes them, which makes the present evaluation more conservative than a raw content readout\.

At the answer level, the adapter thus dissociates knowledge from person\-specific alignment: it adds probability mass to correct options, yet moves away from the specific errors of its participant \([Table 1](https://arxiv.org/html/2609.10155#S4.T1)\)\. Whether model errors align with human error patterns has so far been examined at the population level\([Liu et al\., 2025](https://arxiv.org/html/2609.10155#bib.bib19)\); our result indicates that writing a person’s ITC into the weights does not by itself produce this alignment at the individual level\. Research on transactive memory offers one cautious reading of this dissociation: people offload knowledge to the internet and preferentially remember where to find information rather than the information itself\([Wegner, 1987](https://arxiv.org/html/2609.10155#bib.bib34);[Sparrow et al\., 2011](https://arxiv.org/html/2609.10155#bib.bib26);[Ward, 2013](https://arxiv.org/html/2609.10155#bib.bib33)\)\. An ITC would then partly record content its participant engaged with but never retained, so the adapter can hold knowledge the person does not\. Whether engagement turns into retained knowledge should further depend on interest, which directs both what people seek out and what they consolidate\([Hidi and Renninger, 2006](https://arxiv.org/html/2609.10155#bib.bib13);[Ackerman, 1996](https://arxiv.org/html/2609.10155#bib.bib1);[Trapp et al\., 2019](https://arxiv.org/html/2609.10155#bib.bib28)\)\. This reading remains tentative, since we cannot separate it from a generic route in which some knowledge items benefit from web text as such, independently of individual engagement\. A repeated measurement with new knowledge items generated from each participant’s own ITC could discriminate the two accounts: retained, interest\-driven knowledge predicts that participants outperform on items grounded in their own ITC, particularly where item domain and stated interests match, whereas engagement without retention predicts that they do not\. Such ITC\-derived items would also replace the generalized test with an assessment targeted at each participant’s own knowledge\. Such consolidated adapters would also be the natural substrate for individualized tutoring agents: a compact per\-user weight store that an agent updates as the user’s knowledge develops\.

To sum up from our complementary learning systems perspective: the prior study individualized through episodic retrieval over a larger LLM, whereas here the individual signal is carried by the semantic route, with ITC\-RAG adding nearly nothing on top\. What the smaller model does not reach is the participants’ level of correctness, which the adapter raises but cannot level up\.

## Limitations

Notwithstanding the contribution of these findings, several limitations must be critically noted\. First, the present analyses rest on a stratified subsample of150150participants that was drawn across the ITC size range with outliers trimmed at both ends, so that participants with extremely small or extremely large corpora are not represented and every ITC\-size conclusion holds only within this restricted range\. As in the prior study, the underlying sample was predominantly young, female, and highly educated, which may limit the generalizability of the results to demographic groups whose search behavior and knowledge profiles differ systematically\([Wigbels et al\., 2026](https://arxiv.org/html/2609.10155#bib.bib41)\)\.

Second, the study is monolingual by design: all knowledge items were administered in German, and the individual corpora consist of German running text, into which English\-language content enters only in machine\-translated form\. Translation quality therefore shapes part of the training signal, and it remains open whether parametric individualization generalizes to other languages or to users modeled in the language of their original engagement\.

Third, crystallized knowledge was assessed with a generalized test, the BEFKI GC\-K plus the 24 items developed in its format, which ranks individuals on a shared item set\([Schipolowski et al\., 2014](https://arxiv.org/html/2609.10155#bib.bib25)\)\. A generalized knowledge test captures only knowledge participants hold in common, so the answer\-level individualization results are a lower bound on what an assessment targeted at each participant’s own knowledge could show\.

## Ethical considerations and data availability

We obtained approval from the ethics committee of the Bergische Universität Wuppertal and also thoroughly documented the technical and organizational data protection countermeasures for ITCs as potentially person\-related data\. Participants agreed to share their Google search histories, also for potential scientific re\-use\. Though we did everything to anonymize ITCs, e\.g\., by removing raw URLs or keeping only time stamps relative to assessment times rather than precise surfing times, we cannot fully exclude person identifiability\. As our search\-based ITCs contain only a subset of web\-tracking\-based ITCs, person identifiability should be lower, however\([Deußer et al\., 2020](https://arxiv.org/html/2609.10155#bib.bib5)\)\. We plan to share these data for scientific re\-use through the GESIS data archive, well\-protected by a non\-disclosure agreement, which excludes re\-identification and obligates signers to protect these data\. A subset of our participants agreed that their names can be stored with the purpose of testing for person identifiability\. We plan a shared task under strict data protection conditions, which allows registered teams to participate\. Absence of evidence for person identifiability, however, will not imply evidence for its absence, thus the data will remain protected anyway\. Nevertheless, positive evidence would demonstrate the need to protect such data or help to inform more successful anonymization\. If you are interested in participating, please contact the authors\.

## References

- Ackerman \(1996\)P\. L\. AckermanA theory of adult intellectual development: process, personality, interests, and knowledge\.Intelligence22\(2\),pp\. 227–257\.External Links:[Document](https://dx.doi.org/10.1016/S0160-2896%2896%2990016-1)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p2.1),[§5](https://arxiv.org/html/2609.10155#S5.p4.1)\.
- Bidermanet al\.\(2024\)D\. Biderman, J\. Portes, J\. J\. Gonzalez Ortiz, M\. Paul, P\. Greengard, C\. Jennings, D\. King, S\. Havens, V\. Chiley, J\. Frankle, C\. Blakeney, and J\. P\. CunninghamLoRA learns less and forgets less\.Transactions on Machine Learning Research\.External Links:ISSN 2835\-8856,[Document](https://dx.doi.org/10.48550/arXiv.2405.09673),2405\.09673,[Link](https://openreview.net/forum?id=aloEru2qCG)Cited by:[§2\.2](https://arxiv.org/html/2609.10155#S2.SS2.p1.1)\.
- Binz and Schulz \(2023\)M\. Binz and E\. SchulzUsing cognitive psychology to understand GPT\-3\.Proceedings of the National Academy of Sciences120\(6\),pp\. e2218523120\.External Links:[Document](https://dx.doi.org/10.1073/pnas.2218523120)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p1.1)\.
- Brownet al\.\(2020\)T\. B\. Brown, B\. Mann, N\. Ryder, M\. Subbiah, J\. Kaplan, P\. Dhariwal, A\. Neelakantan, P\. Shyam, G\. Sastry, A\. Askell, S\. Agarwal, A\. Herbert\-Voss, G\. Krueger, T\. Henighan, R\. Child, A\. Ramesh, D\. M\. Ziegler, J\. Wu, C\. Winter, C\. Hesse, M\. Chen, E\. Sigler, M\. Litwin, S\. Gray, B\. Chess, J\. Clark, C\. Berner, S\. McCandlish, A\. Radford, I\. Sutskever, and D\. AmodeiLanguage models are few\-shot learners\.InAdvances in Neural Information Processing Systems 33 \(NeurIPS 2020\),pp\. 1877–1901\.External Links:[Document](https://dx.doi.org/10.48550/arXiv.2005.14165),2005\.14165,[Link](https://arxiv.org/abs/2005.14165)Cited by:[§3\.5](https://arxiv.org/html/2609.10155#S3.SS5.p1.1),[§5](https://arxiv.org/html/2609.10155#S5.p3.1)\.
- Cattell \(1963\)R\. B\. CattellTheory of fluid and crystallized intelligence: a critical experiment\.Journal of Educational Psychology54\(1\),pp\. 1–22\.External Links:[Document](https://dx.doi.org/10.1037/h0046743)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p2.1)\.
- Cossuet al\.\(2024\)A\. Cossu, A\. Carta, L\. Passaro, V\. Lomonaco, T\. Tuytelaars, and D\. BacciuContinual pre\-training mitigates forgetting in language and vision\.Neural Networks179,pp\. 106492\.External Links:[Document](https://dx.doi.org/10.1016/j.neunet.2024.106492),ISSN 0893\-6080Cited by:[§5](https://arxiv.org/html/2609.10155#S5.p2.1)\.
- Deußeret al\.\(2020\)C\. Deußer, S\. Passmann, and T\. StrufeBrowsing unicity: on the limits of anonymizing web tracking data\.In2020 IEEE Symposium on Security and Privacy \(SP\),Vol\.,pp\. 777–790\.External Links:[Document](https://dx.doi.org/10.1109/SP40000.2020.00018)Cited by:[Ethical considerations and data availability](https://arxiv.org/html/2609.10155#Sx2.p1.1)\.
- Dominguez\-Olmedoet al\.\(2024\)R\. Dominguez\-Olmedo, M\. Hardt, and C\. Mendler\-DünnerQuestioning the survey responses of large language models\.InAdvances in Neural Information Processing Systems 37 \(NeurIPS 2024\),pp\. 45850–45878\.External Links:[Document](https://dx.doi.org/10.52202/079017-1458),[Link](https://doi.org/10.52202/079017-1458),2306\.07951Cited by:[§2\.3](https://arxiv.org/html/2609.10155#S2.SS3.p1.1)\.
- Donget al\.\(2025\)C\. V\. Dong, Q\. Lu, K\. A\. Norman, and S\. MichelmannTowards large language models with human\-like episodic memory\.Trends in Cognitive Sciences29\(10\),pp\. 928–941\.External Links:[Document](https://dx.doi.org/10.1016/j.tics.2025.06.016),ISSN 1364\-6613Cited by:[§2\.1](https://arxiv.org/html/2609.10155#S2.SS1.p2.1)\.
- Fountaset al\.\(2025\)Z\. Fountas, M\. A\. Benfeghoul, A\. Oomerjee, F\. Christopoulou, G\. Lampouras, H\. Bou\-Ammar, and J\. WangHuman\-inspired episodic memory for infinite context LLMs\.InInternational Conference on Learning Representations \(ICLR\),External Links:[Document](https://dx.doi.org/10.48550/arXiv.2407.09450),2407\.09450,[Link](https://arxiv.org/abs/2407.09450)Cited by:[§2\.1](https://arxiv.org/html/2609.10155#S2.SS1.p2.1)\.
- Grandet al\.\(2022\)G\. Grand, I\. A\. Blank, F\. Pereira, and E\. FedorenkoSemantic projection recovers rich human knowledge of multiple object features from word embeddings\.Nature Human Behaviour6\(7\),pp\. 975–987\.External Links:[Document](https://dx.doi.org/10.1038/s41562-022-01316-8)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p1.1)\.
- Hambrick and Engle \(2002\)D\. Z\. Hambrick and R\. W\. EngleEffects of domain knowledge, working memory capacity, and age on cognitive performance: an investigation of the knowledge\-is\-power hypothesis\.Cognitive Psychology44\(4\),pp\. 339–387\.External Links:[Document](https://dx.doi.org/10.1006/cogp.2001.0769)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p1.1)\.
- He\-Yueyaet al\.\(2024\)J\. He\-Yueya, W\. A\. Ma, K\. Gandhi, B\. W\. Domingue, E\. Brunskill, and N\. D\. GoodmanPsychometric alignment: capturing human knowledge distributions via language models\.External Links:2407\.15645,[Document](https://dx.doi.org/10.48550/arXiv.2407.15645),[Link](https://arxiv.org/abs/2407.15645)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p1.1),[§3\.1](https://arxiv.org/html/2609.10155#S3.SS1.p1.1),[§5](https://arxiv.org/html/2609.10155#S5.p2.1)\.
- Hidi and Renninger \(2006\)S\. Hidi and K\. A\. RenningerThe four\-phase model of interest development\.Educational Psychologist41\(2\),pp\. 111–127\.External Links:[Document](https://dx.doi.org/10.1207/s15326985ep4102%5F4)Cited by:[§5](https://arxiv.org/html/2609.10155#S5.p4.1)\.
- Hofmannet al\.\(2024\)M\. J\. Hofmann, M\. T\. Jansen, C\. Wigbels, B\. Briesemeister, and A\. M\. JacobsIndividual text corpora predict openness, interests, knowledge and level of education\.InProceedings of the Workshop on Cognitive Aspects of the Lexicon @ LREC\-COLING 2024,M\. Zock, E\. Chersoni, Y\. Hsu, and S\. de Deyne \(Eds\.\),Torino, Italia,pp\. 14–25\.External Links:[Link](https://aclanthology.org/2024.cogalex-1.2/)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p2.1),[§2\.1](https://arxiv.org/html/2609.10155#S2.SS1.p1.1)\.
- Holtzmanet al\.\(2021\)A\. Holtzman, P\. West, V\. Shwartz, Y\. Choi, and L\. ZettlemoyerSurface form competition: why the highest probability answer isn’t always right\.InProceedings of the 2021 Conference on Empirical Methods in Natural Language Processing \(EMNLP\),pp\. 7038–7051\.External Links:[Document](https://dx.doi.org/10.18653/v1/2021.emnlp-main.564),[Link](https://aclanthology.org/2021.emnlp-main.564/)Cited by:[§3\.5](https://arxiv.org/html/2609.10155#S3.SS5.p1.1),[§5](https://arxiv.org/html/2609.10155#S5.p3.1)\.
- Horn and Cattell \(1967\)J\. L\. Horn and R\. B\. CattellAge differences in fluid and crystallized intelligence\.Acta Psychologica26,pp\. 107–129\.External Links:[Document](https://dx.doi.org/10.1016/0001-6918%2867%2990011-X)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p2.1)\.
- Ibrahimet al\.\(2024\)A\. Ibrahim, B\. Thérien, K\. Gupta, M\. L\. Richter, Q\. Anthony, T\. Lesort, E\. Belilovsky, and I\. RishSimple and scalable strategies to continually pre\-train large language models\.Transactions on Machine Learning Research\.External Links:ISSN 2835\-8856,[Document](https://dx.doi.org/10.48550/arXiv.2403.08763),2403\.08763,[Link](https://openreview.net/forum?id=DimPeeCxKO)Cited by:[§2\.2](https://arxiv.org/html/2609.10155#S2.SS2.p1.1)\.
- Liuet al\.\(2025\)N\. Liu, S\. Sonkar, and R\. G\. BaraniukDo LLMs make mistakes like students? Exploring natural alignment between language models and human error patterns\.External Links:2502\.15140,[Document](https://dx.doi.org/10.48550/arXiv.2502.15140),[Link](https://arxiv.org/abs/2502.15140)Cited by:[§5](https://arxiv.org/html/2609.10155#S5.p4.1)\.
- Liuet al\.\(2024\)S\. Liu, C\. Wang, H\. Yin, P\. Molchanov, Y\. F\. Wang, K\. Cheng, and M\. ChenDoRA: weight\-decomposed low\-rank adaptation\.InProceedings of the 41st International Conference on Machine Learning \(ICML\),Proceedings of Machine Learning Research, Vol\.235,pp\. 32100–32121\.External Links:[Document](https://dx.doi.org/10.48550/arXiv.2402.09353),2402\.09353,[Link](https://proceedings.mlr.press/v235/liu24bn.html)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p4.1),[§2\.2](https://arxiv.org/html/2609.10155#S2.SS2.p1.1),[§3\.4](https://arxiv.org/html/2609.10155#S3.SS4.p1.1)\.
- Luoet al\.\(2023\)Y\. Luo, Z\. Yang, F\. Meng, Y\. Li, J\. Zhou, and Y\. ZhangAn empirical study of catastrophic forgetting in large language models during continual fine\-tuning\.External Links:[Document](https://dx.doi.org/10.48550/arXiv.2308.08747),2308\.08747,[Link](https://arxiv.org/abs/2308.08747)Cited by:[§2\.2](https://arxiv.org/html/2609.10155#S2.SS2.p1.1)\.
- McClellandet al\.\(1995\)J\. L\. McClelland, B\. L\. McNaughton, and R\. C\. O’ReillyWhy there are complementary learning systems in the hippocampus and neocortex: insights from the successes and failures of connectionist models of learning and memory\.Psychological Review102\(3\),pp\. 419–457\.External Links:[Document](https://dx.doi.org/10.1037/0033-295X.102.3.419)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p4.1),[§2\.1](https://arxiv.org/html/2609.10155#S2.SS1.p2.1),[§3\.4](https://arxiv.org/html/2609.10155#S3.SS4.p1.1)\.
- NLLB Teamet al\.\(2022\)NLLB Team, M\. R\. Costa\-jussà, J\. Cross, O\. Çelebi, M\. Elbayad, K\. Heafield, K\. Heffernan, E\. Kalbassi, J\. Lam, D\. Licht, J\. Maillard, A\. Sun, S\. Wang, G\. Wenzek, A\. Youngblood, B\. Akula, L\. Barrault, G\. Mejia Gonzalez, P\. Hansanti, J\. Hoffman, S\. Jarrett, K\. R\. Sadagopan, D\. Rowe, S\. Spruit, C\. Tran, P\. Andrews, N\. F\. Ayan, S\. Bhosale, S\. Edunov, A\. Fan, C\. Gao, V\. Goswami, F\. Guzmán, P\. Koehn, A\. Mourachko, C\. Ropers, S\. Saleem, H\. Schwenk, and J\. WangNo language left behind: scaling human\-centered machine translation\.External Links:2207\.04672,[Document](https://dx.doi.org/10.48550/arXiv.2207.04672),[Link](https://arxiv.org/abs/2207.04672)Cited by:[§3\.3](https://arxiv.org/html/2609.10155#S3.SS3.p1.1)\.
- Petroniet al\.\(2019\)F\. Petroni, T\. Rocktäschel, S\. Riedel, P\. Lewis, A\. Bakhtin, Y\. Wu, and A\. MillerLanguage models as knowledge bases?\.InProceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing \(EMNLP\-IJCNLP\),pp\. 2463–2473\.External Links:[Document](https://dx.doi.org/10.18653/v1/D19-1250),[Link](https://aclanthology.org/D19-1250/)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p3.1)\.
- Qwen Team \(2025\)Qwen TeamQwen3 technical report\.External Links:2505\.09388,[Link](https://arxiv.org/abs/2505.09388)Cited by:[§5](https://arxiv.org/html/2609.10155#S5.p2.1)\.
- Ramaseshet al\.\(2022\)V\. V\. Ramasesh, A\. Lewkowycz, and E\. DyerEffect of scale on catastrophic forgetting in neural networks\.InInternational Conference on Learning Representations \(ICLR\),External Links:[Link](https://openreview.net/forum?id=GhVS8_yPeEa)Cited by:[§2\.2](https://arxiv.org/html/2609.10155#S2.SS2.p1.1)\.
- Rolfhus and Ackerman \(1999\)E\. L\. Rolfhus and P\. L\. AckermanAssessing individual differences in knowledge: knowledge, intelligence, and related traits\.Journal of Educational Psychology91\(3\),pp\. 511–526\.External Links:[Document](https://dx.doi.org/10.1037/0022-0663.91.3.511)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p1.1)\.
- Schipolowskiet al\.\(2014\)S\. Schipolowski, O\. Wilhelm, U\. Schroeders, A\. Kovaleva, C\. J\. Kemper, and B\. RammstedtKurzskala kristalline Intelligenz \(BEFKI GC\-K\)\.GESIS Leibniz\-Institut für Sozialwissenschaften\.Note:ZIS – Zusammenstellung sozialwissenschaftlicher Items und SkalenExternal Links:[Document](https://dx.doi.org/10.6102/zis220),[Link](https://doi.org/10.6102/zis220)Cited by:[Appendix A](https://arxiv.org/html/2609.10155#A1.p1.1),[§3\.2](https://arxiv.org/html/2609.10155#S3.SS2.p1.1),[§5](https://arxiv.org/html/2609.10155#S5.p2.1),[Limitations](https://arxiv.org/html/2609.10155#Sx1.p3.1)\.
- Sparrowet al\.\(2011\)B\. Sparrow, J\. Liu, and D\. M\. WegnerGoogle effects on memory: cognitive consequences of having information at our fingertips\.Science333\(6043\),pp\. 776–778\.External Links:[Document](https://dx.doi.org/10.1126/science.1207745)Cited by:[§5](https://arxiv.org/html/2609.10155#S5.p4.1)\.
- Tanet al\.\(2024\)Z\. Tan, Q\. Zeng, Y\. Tian, Z\. Liu, B\. Yin, and M\. JiangDemocratizing large language models via personalized parameter\-efficient fine\-tuning\.InProceedings of the 2024 Conference on Empirical Methods in Natural Language Processing \(EMNLP\),pp\. 6476–6491\.External Links:[Document](https://dx.doi.org/10.18653/v1/2024.emnlp-main.372),[Link](https://aclanthology.org/2024.emnlp-main.372)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p4.1),[§2\.2](https://arxiv.org/html/2609.10155#S2.SS2.p1.1)\.
- Trappet al\.\(2019\)S\. Trapp, S\. Blömeke, and M\. ZieglerThe openness\-fluid\-crystallized\-intelligence \(OFCI\) model and the environmental enrichment hypothesis\.Intelligence73,pp\. 30–40\.External Links:[Document](https://dx.doi.org/10.1016/j.intell.2019.01.009)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p2.1),[§5](https://arxiv.org/html/2609.10155#S5.p4.1)\.
- Tulving \(1972\)E\. TulvingEpisodic and semantic memory\.InOrganization of Memory,E\. Tulving and W\. Donaldson \(Eds\.\),pp\. 381–403\.Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p2.1)\.
- Tulving \(2002\)E\. TulvingEpisodic memory: from mind to brain\.Annual Review of Psychology53,pp\. 1–25\.External Links:[Document](https://dx.doi.org/10.1146/annurev.psych.53.100901.135114)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p2.1)\.
- Wanget al\.\(2024a\)X\. Wang, C\. Hu, B\. Ma, P\. Röttger, and B\. PlankLook at the text: instruction\-tuned language models are more robust multiple choice selectors than you think\.InFirst Conference on Language Modeling \(COLM\),External Links:[Link](https://openreview.net/forum?id=qHdSA85GyZ),2404\.08382Cited by:[§2\.3](https://arxiv.org/html/2609.10155#S2.SS3.p1.1)\.
- Wanget al\.\(2024b\)X\. Wang, B\. Ma, C\. Hu, L\. Weber\-Genzel, P\. Röttger, F\. Kreuter, D\. Hovy, and B\. Plank“My Answer is C”: first\-token probabilities do not match text answers in instruction\-tuned language models\.InFindings of the Association for Computational Linguistics: ACL 2024,L\. Ku, A\. Martins, and V\. Srikumar \(Eds\.\),Bangkok, Thailand,pp\. 7407–7416\.External Links:[Document](https://dx.doi.org/10.18653/v1/2024.findings-acl.441),[Link](https://aclanthology.org/2024.findings-acl.441/)Cited by:[§2\.3](https://arxiv.org/html/2609.10155#S2.SS3.p1.1)\.
- Ward \(2013\)A\. F\. WardSupernormal: how the internet is changing our memories and our minds\.Psychological Inquiry24\(4\),pp\. 341–348\.External Links:[Document](https://dx.doi.org/10.1080/1047840X.2013.850148)Cited by:[§5](https://arxiv.org/html/2609.10155#S5.p4.1)\.
- Wegner \(1987\)D\. M\. WegnerTransactive memory: a contemporary analysis of the group mind\.InTheories of Group Behavior,B\. Mullen and G\. R\. Goethals \(Eds\.\),pp\. 185–208\.External Links:[Document](https://dx.doi.org/10.1007/978-1-4612-4634-3%5F9)Cited by:[§5](https://arxiv.org/html/2609.10155#S5.p4.1)\.
- Wigbelset al\.\(2026\)C\. Wigbels, A\. Abusaleh, M\. T\. Jansen, A\. Mehler, and M\. J\. HofmannIndividual text corpora predict user\-specific knowledge\.InProceedings of the 22nd Conference on Natural Language Processing \(KONVENS 2026\),Hamburg, Germany\.Note:To appearCited by:[§1](https://arxiv.org/html/2609.10155#S1.p3.1),[§1](https://arxiv.org/html/2609.10155#S1.p5.1),[§1](https://arxiv.org/html/2609.10155#S1.p6.1),[§2\.1](https://arxiv.org/html/2609.10155#S2.SS1.p1.1),[§3\.5](https://arxiv.org/html/2609.10155#S3.SS5.p1.1),[§5](https://arxiv.org/html/2609.10155#S5.p2.1),[§5](https://arxiv.org/html/2609.10155#S5.p3.1),[Limitations](https://arxiv.org/html/2609.10155#Sx1.p1.1)\.
- Zhanget al\.\(2025\)Z\. Zhang, R\. A\. Rossi, B\. Kveton, Y\. Shao, D\. Yang, H\. Zamani, F\. Dernoncourt, J\. Barrow, T\. Yu, S\. Kim, R\. Zhang, J\. Gu, T\. Derr, H\. Chen, J\. Wu, X\. Chen, Z\. Wang, S\. Mitra, N\. Lipka, N\. Ahmed, and Y\. WangPersonalization of large language models: a survey\.Transactions on Machine Learning Research\.External Links:[Document](https://dx.doi.org/10.48550/arXiv.2411.00027),2411\.00027,[Link](https://arxiv.org/abs/2411.00027)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p3.1),[§2\.2](https://arxiv.org/html/2609.10155#S2.SS2.p1.1)\.
- Zhenget al\.\(2024\)C\. Zheng, H\. Zhou, F\. Meng, J\. Zhou, and M\. HuangLarge language models are not robust multiple choice selectors\.InThe Twelfth International Conference on Learning Representations \(ICLR\),External Links:[Document](https://dx.doi.org/10.48550/arXiv.2309.03882),2309\.03882,[Link](https://arxiv.org/abs/2309.03882)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p5.1),[§2\.3](https://arxiv.org/html/2609.10155#S2.SS3.p1.1),[§5](https://arxiv.org/html/2609.10155#S5.p3.1)\.
- Ziegleret al\.\(2012\)M\. Ziegler, E\. Danay, M\. Heene, J\. Asendorpf, and M\. BühnerOpenness, fluid intelligence, and crystallized intelligence: toward an integrative model\.Journal of Research in Personality46\(2\),pp\. 173–183\.External Links:[Document](https://dx.doi.org/10.1016/j.jrp.2012.01.002)Cited by:[§1](https://arxiv.org/html/2609.10155#S1.p2.1)\.

## Appendix AKnowledge Item Example

The 12 BEFKI GC\-K core items follow a four\-option format and are documented in[Schipolowski et al\. \(2014\)](https://arxiv.org/html/2609.10155#bib.bib25), whereas the 24 extended items are deliberately not published, to keep them out of public text collections as a contamination control, in line with standard practice for psychological test material\. The following core item, reproduced from the public BEFKI GC\-K documentation in the GESIS instrument archive ZIS111[https://doi\.org/10\.6102/zis220](https://doi.org/10.6102/zis220), illustrates the format; as no official English translation exists, the bracketed translation is our own\.

> Wozu dient die Mitose? \[What is the function of mitosis?\] □\\BoxStoffwechselregulation \[metabolic regulation\] □\\BoxFortpflanzung \[reproduction\] □\\BoxBildung von Keimzellen \[formation of germ cells\] □\\BoxZellvermehrung bei Wachstumsvorgängen\[cell proliferation during growth\]

## Appendix BText\-Level Scoring Protocol

Held\-out running text is tokenized without special tokens, concatenated with an EOS delimiter between documents, and packed into20482048\-token blocks scored independently; a shorter final tail block \(≥2\\geq 2tokens\) is retained\. NLL is summed in fp32 across all blocks, and the first token of every block is never predicted \(standard causal shift\), so per\-token NLL is comparable across participants regardless of corpus length\.

Similar Articles

Small Foundation Models of Human Cognition and Behaviour

Hugging Face Daily Papers

This paper trains 14 small language models (135M to 14B parameters) on Psych-101, a dataset of 10.7 million trial-level human choices, finding that small models suffice for in-distribution matching while larger models generalize better out-of-distribution. Diagnostics show that masking stimuli and feedback destroys most learned information, indicating choice history alone is insufficient.

Cross-Lingual Exploration for Parametric Knowledge

arXiv cs.CL

This paper explores cross-lingual prompting strategies to improve access to parametric knowledge in large language models, demonstrating significant gains in knowledge transfer and factual recall across 17 languages on multilingual benchmarks.