Weightless Fine-Tuning: Personalizing LLMs via Logit-Space Transport
Summary
This paper introduces Weightless Fine-Tuning (WFT), a training-free decoding-time method that approximates supervised fine-tuning effects via logit-space transport, achieving competitive personalization performance with less than 7% of the computation.
View Cached Full Text
Cached at: 08/13/26, 03:34 PM
# Weightless Fine-Tuning: Personalizing LLMs via Logit-Space Transport
Source: [https://arxiv.org/html/2608.11342](https://arxiv.org/html/2608.11342)
Bohan ZhangAnqi NiYixin WangParamveer S\. DhillonUniversity of MichiganUniversity of ChicagoUniversity of MichiganUniversity of Michiganzbohan@umich\.eduanqini4@gmail\.comyixinw@umich\.edudhillonp@umich\.edu
###### Abstract
Supervised fine\-tuning \(SFT\) is a standard approach for adapting LLMs to a target distribution, but in settings such as personalization, where each author requires separate weight access, optimization, storage, and retraining, its costs become prohibitive\. We propose Weightless Fine\-Tuning \(WFT\), a training\-free decoding\-time method that approximates the distributional effect of SFT without weight updates\. WFT computes supervised residuals on an author’s training sequence and transports them to the current prompt through a cross\-prefix transport operator estimated from dropout\-induced cross\-covariance\. The operator captures how a perturbation at one context propagates to predictions at another, replacing gradient\-based parameter updates with logit\-space corrections\. On three LaMP personalization benchmarks, WFT achieves the best average performance across datasets, matches or exceeds SFT on individual tasks, and outperforms other lightweight baselines on average\. In a budget\-controlled comparison, WFT approaches SFT performance using less than 7% of the effective computation\. Logit\-level analysis shows a cosine similarity of 0\.875 between the logit shifts induced by WFT and SFT over 95% of the next\-token probability mass, suggesting that WFT captures the distributional effect of supervised adaptation without modifying model weights\.
## 1Introduction
Large language models \(LLMs\) have achieved impressive performance across a wide range of tasks, yet many real\-world applications require outputs that are tailored to individual authors or domains rather than a single generic response style\. Personalized generation has therefore become an important setting for LLM deployment\. In such settings, the strongest adaptation quality often comes from supervised fine\-tuning \(SFT\) on author\-specific data\([2](https://arxiv.org/html/2608.11342#bib.bib2)\)\. The practical value of SFT lies in the output distributions induced by the updated weights\. When a language model is fine\-tuned on an author’s writing, the objective is to shift its next\-token predictions toward patterns characteristic of that author rather than to preserve a particular parameter configuration\. Yet the dominant method for producing this shift still relies on gradient\-based parameter updates, which require costly training\. In personalization, the cost scales poorly\. If hundreds or thousands of authors each need their own adaptation, practitioners must run separate fine\-tuning jobs, store separate weights, and retrain the model whenever new author data arrives\.
Existing approaches span a wide spectrum, but each comes with clear limitations\. Full SFT remains a strong quality benchmark for personalized generation\([24](https://arxiv.org/html/2608.11342#bib.bib1);[2](https://arxiv.org/html/2608.11342#bib.bib2);[1](https://arxiv.org/html/2608.11342#bib.bib19)\), but its computational and storage costs scale linearly with the number of authors, and training on narrow personal data risks catastrophic forgetting of general capabilities\([12](https://arxiv.org/html/2608.11342#bib.bib7)\)\. Parameter\-efficient personalization methods reduce the number of author\-specific parameters while still requiring backpropagation\([20](https://arxiv.org/html/2608.11342#bib.bib4);[11](https://arxiv.org/html/2608.11342#bib.bib5)\)\. Personalization here is typically achieved through learned prefix representations trained across many authors\. Their performance depends on how well those representations generalize across authors, which becomes less reliable when author populations are highly diverse\. In\-context prompting avoids training altogether by prepending a small number of author examples to the prompt\. Yet it conditions on those examples without explicitly computing the residual between the model’s current prediction and the desired target, and its performance typically remains below methods that perform supervised adaptation\([24](https://arxiv.org/html/2608.11342#bib.bib1);[32](https://arxiv.org/html/2608.11342#bib.bib27)\)\.
Recent work on decoding\-time adaptation suggests that the community is increasingly aware of this tension\. Drift\([14](https://arxiv.org/html/2608.11342#bib.bib14)\)aligns decoding with user preferences through interpretable attributes\. Amulet\([33](https://arxiv.org/html/2608.11342#bib.bib15)\)treats token prediction as an online learning problem, and CoSteer\([22](https://arxiv.org/html/2608.11342#bib.bib16)\)uses logit deltas from a local model to steer a larger one\. In parallel, test\-time training approaches\([26](https://arxiv.org/html/2608.11342#bib.bib18);[10](https://arxiv.org/html/2608.11342#bib.bib17)\)push adaptation to the test phase but still rely on lightweight parameter updates such as LoRA fine\-tuning\. In\-context vectors\([19](https://arxiv.org/html/2608.11342#bib.bib33)\)extract task\-relevant directions from hidden activations and use them to steer model behavior at inference time without updating model parameters\. CHAMELEON\([32](https://arxiv.org/html/2608.11342#bib.bib27)\)generates synthetic author preference data from limited author history and performs inference\-time representation editing for scalable personalization\. These efforts collectively demonstrate that adaptation need not happen before deployment, but none of them directly addresses a more fundamental question:*Can we approximate the change in next\-token distributions that SFT would produce, without updating any parameters at all?*
In this paper, we answer this question withWeightless Fine\-Tuning \(WFT\), a training\-free fine\-tuning method that operates entirely in logit space\. The key idea is to compute standard supervised residuals on a given training sequence, and then*transport*their effect to the current prompt prefix through a cross\-prefix transport operatorMM\. This operator, estimated via the cross\-covariance of dropout\-perturbed forward passes, serves as an empirical approximation to the cross\-prefix neural tangent kernel \(NTK\) and captures how a perturbation at one training context propagates to predictions at another through weights\. The result is a lightweight procedure that approximates the distributional effect of SFT without modifying the model’s weights\.
We evaluate WFT on three generative personalization tasks from the LaMP benchmark, including paper title generation, news headline generation, and tweet paraphrasing\. WFT achieves the best average performance across datasets on both foundation models, while outperforming or remaining highly competitive with SFT on individual tasks\. It also consistently outperforms other lightweight personalization baselines on average\. Under budget\-controlled comparison, WFT reaches performance comparable to SFT while using less than 7% of the effective computation\. Moreover, ablation and qualitative logit\-level analyses support the view that WFT serves as a practical training\-free approximation to supervised adaptation\.
Our contributions are as follows:
- •We propose Weightless Fine\-Tuning, a training\-free method that approximates SFT in distribution space by transporting supervised residuals across prefixes via a dropout\-estimated cross\-prefix transport operator\.
- •We conduct comprehensive experiments on three personalization benchmarks, showing that WFT achieves the best average performance across datasets, remains competitive with SFT on each task, and outperforms other lightweight personalization baselines\.
## 2Related Work
Personalization of LLMs has attracted growing attention\. Recent surveys have summarized the literature from several perspectives\.[3](https://arxiv.org/html/2608.11342#bib.bib21)discussed how LLM\-based personalization extends earlier paradigms of passive information filtering toward more active forms of author engagement\.[34](https://arxiv.org/html/2608.11342#bib.bib20)organized existing methods into retrieval\-augmented generation, prompt engineering, representation learning, and RLHF\.[18](https://arxiv.org/html/2608.11342#bib.bib22)categorized personalization methods by the stage at which they are introduced, including input\-level prompting, model\-level fine\-tuning, and objective\-level alignment\. WFT spans these categories\. It avoids parameter updates, as prompting\-based methods do, while using supervised residuals to correct the model’s output distribution in a way that resembles fine\-tuning\.
Per\-author SFT remains a strong personalization baseline\.[2](https://arxiv.org/html/2608.11342#bib.bib2)showed that fine\-tuning on an author’s full corpus can generate text that readers judge to match that author’s style closely\. The cost of maintaining a separate model for each author, however, has motivated more efficient alternatives\. One line of research builds on prefix\-tuning\([17](https://arxiv.org/html/2608.11342#bib.bib6)\), which introduced continuous prefix tokens for steering model behavior while keeping the backbone frozen\. In personalized generation, RECAP\([20](https://arxiv.org/html/2608.11342#bib.bib4)\)combines retrieval with a context\-aware prefix encoder for dialogue, and Embedding\-to\-Prefix\([11](https://arxiv.org/html/2608.11342#bib.bib5)\)maps pre\-learned author embeddings to soft prefix tokens\. These methods reduce per\-author training costs, but they still rely on gradient\-based optimization over large multi\-author corpora and perform well only when the training population is generalizable to test authors\.
Recent work has increasingly moved adaptation to inference time\. Some methods perform lightweight parameter updates at test time\. Test\-Time Training\([26](https://arxiv.org/html/2608.11342#bib.bib18)\)updates the model on each test instance, and later work extends this idea to language models with LoRA\-based updates\([10](https://arxiv.org/html/2608.11342#bib.bib17)\)\. Other methods modify the output distribution during decoding without changing model parameters\. Drift\([14](https://arxiv.org/html/2608.11342#bib.bib14)\)aligns outputs with author preferences through interpretable attributes\. Amulet\([33](https://arxiv.org/html/2608.11342#bib.bib15)\)treats each decoding step as an online learning problem for real\-time preference adaptation\. CoSteer\([22](https://arxiv.org/html/2608.11342#bib.bib16)\)steers a cloud\-hosted model with logit deltas from a locally adapted smaller model, and CHAMELEON\([32](https://arxiv.org/html/2608.11342#bib.bib27)\)combines synthetic preference data with inference\-time representation editing\. WFT derives its logit corrections from supervised residuals and natural gradient descent\. In doing so, it aims to reproduce the distributional effect of SFT rather than to steer generation toward a particular attribute\.
Theoretical work has examined links between in\-context learning and gradient\-based optimization\.[27](https://arxiv.org/html/2608.11342#bib.bib23)showed that linear self\-attention can implement gradient descent in the forward pass, and[4](https://arxiv.org/html/2608.11342#bib.bib24)analyzed ICL in a dual form that connects it to implicit fine\-tuning\. Later studies placed clearer limits on this equivalence\.[25](https://arxiv.org/html/2608.11342#bib.bib25)found substantial gaps between ICL and gradient descent in pretrained language models on realistic NLP tasks, and[5](https://arxiv.org/html/2608.11342#bib.bib26)questioned whether the connection holds beyond carefully controlled settings\. WFT builds on the mathematical connection between contextual conditioning and optimization to define a training\-free procedure that approximates the distributional effect of SFT\. This formulation does not assume that in\-context learning itself implicitly performs gradient descent through the forward pass\.
## 3Weightless Fine\-Tuning
We present Weightless Fine\-Tuning as a training\-free approximation to SFT in distribution space\. The starting observation is that SFT changes the next\-token distribution only*indirectly*: a supervised gradient step modifies the model’s weights, which in turn shifts the output logits, which finally alters the predictive distribution\. Because this causal chain terminates in logit space, we can short\-circuit it by computing the logit shift that would result from a weight update and applying it directly, without ever modifying the weights themselves\. Concretely, WFT shows that the effect of one or multiple supervised natural\-gradient updates on a training sequence can be transferred to a different prompt context through a cross\-prefix transport operatorMM, yielding a next\-token distribution that approximates the one fine\-tuning would have produced\. Hence, WFT directly modifies the logits at generation time without updating model parameters\.
Letz\(c\)∈ℝVz\(c\)\\in\\mathbb\{R\}^\{V\}denote the next\-token logits of a frozen language model for a prefixcc, andp\(c\)=softmax\(z\(c\)\)p\(c\)=\\mathrm\{softmax\}\(z\(c\)\)denote the corresponding probabilities\.
We distinguish two sequences: 1\)Prompt prefix:x1:tx\_\{1:t\}\. This is usually the task prompt, for example: “Generate a title for the abstract of a research paper:” 2\)Training sequence:x~1:S\\tilde\{x\}\_\{1:S\}\. This could be potential training data used in SFT training, such as the author’s previous research paper titles\. For the training sequence, the next\-token target at positionssisx~s\+1\\tilde\{x\}\_\{s\+1\}\. We define the standard supervised residual as
rs=ex~s\+1−p\(⋅∣x~1:s\),r\_\{s\}=e\_\{\\tilde\{x\}\_\{s\+1\}\}\-p\(\\cdot\\mid\\tilde\{x\}\_\{1:s\}\),whereex~s\+1∈ℝVe\_\{\\tilde\{x\}\_\{s\+1\}\}\\in\\mathbb\{R\}^\{V\}is the one\-hot vector of the ground\-truth next token\. Intuitively,rsr\_\{s\}measures how the model’s current prediction differs from the supervised target at training positionss\.
A KL\-proximal natural\-gradient \(NGD\) update with step sizeη\\etain logit directionggsolves
q=argmaxr\{η𝔼r\[g\]−KL\(r∥p\)\}⟹q∝peηg\.q=\\arg\\max\_\{r\}\\left\\\{\\eta\\,\\mathbb\{E\}\_\{r\}\[g\]\-\\mathrm\{KL\}\(r\\\|p\)\\right\\\}\\quad\\Longrightarrow\\quad q\\propto p\\,e^\{\\eta g\}\.NGD is thus multiplicative in probability and additive in logits: if a gradient step on weights induces a logit shiftΔzt\\Delta z\_\{t\}at prompt timett, adding that shift to the original logits exactly recovers the post\-weight\-update distribution\. This additivity is what makes a weight\-free emulation possible\.
### 3\.1Cross‑Prefix Transport Operator and Its Estimation by Dropout Covariance
An NGD step with residualrsr\_\{s\}induces a weight parameter changeΔθ\\Delta\\thetathat, under local linearization, perturbs the logits at any prefixccbyJcΔθJ\_\{c\}\\Delta\\theta, whereJcJ\_\{c\}is the Jacobian of the logits with respect to the weights\. The weights thus serve as a*medium*through which a training\-side correction propagates to the prompt side\. WFT replaces this implicit, weight\-mediated propagation with an explicit cross\-prefix transport operatorMt←s∈ℝV×VM\_\{t\\leftarrow s\}\\in\\mathbb\{R\}^\{V\\times V\}that directly maps the residual at training positionssto the logit change at prompt positiontt\. Concretely, we write the one\-step logit update at prompt timettas
zt\(1\)=zt\(0\)\+η∑s=1SMt←srs\.z\_\{t\}^\{\(1\)\}=z\_\{t\}^\{\(0\)\}\+\\eta\\sum\_\{s=1\}^\{S\}M\_\{t\\leftarrow s\}r\_\{s\}\.Equivalently, the induced logit correction isΔzt=η∑s=1SMt←srs\.\\Delta z\_\{t\}=\\eta\\sum\_\{s=1\}^\{S\}M\_\{t\\leftarrow s\}r\_\{s\}\.
Thus,Mt←sM\_\{t\\leftarrow s\}is the core object in WFT: it tells us how an SFT\-style correction computed on the training sequence should be transported to the current decoding prefix, capturing the role the shared weights would have played, but without touching them\.
To estimateMt←sM\_\{t\\leftarrow s\}without access to gradients of the full fine\-tuning process, we rely on stochastic forward passes induced by dropout\. We enable dropout at inference time and runKKforward passes on both the prompt prefixx1:tx\_\{1:t\}and the training prefixx~1:s\\tilde\{x\}\_\{1:s\}\. For each indexkk, the prompt and training prefixes use the same dropout realization, while different indices use sampled masks independently\. Let
tk=z\[k\]\(x1:t\)−z\(x1:t\)¯,sk=z\[k\]\(x~1:s\)−z\(x~1:s\)¯,t\_\{k\}=z^\{\[k\]\}\(x\_\{1:t\}\)\-\\overline\{z\(x\_\{1:t\}\)\},\\qquad s\_\{k\}=z^\{\[k\]\}\(\\tilde\{x\}\_\{1:s\}\)\-\\overline\{z\(\\tilde\{x\}\_\{1:s\}\)\},wherez\[k\]\(⋅\)z^\{\[k\]\}\(\\cdot\)denotes the logits from thekk\-th dropout realization \(the dropout parameters are fixed in each pass but different across passes\), and the bar denotes the empirical mean over theKKsamples\. We then form the empirical cross\-covariance and self\-covariance:
Σt,s=1K−1∑k=1Ktksk⊤,Σs,s=1K−1∑k=1Ksksk⊤\.\\Sigma\_\{t,s\}=\\frac\{1\}\{K\-1\}\\sum\_\{k=1\}^\{K\}t\_\{k\}s\_\{k\}^\{\\top\},\\qquad\\Sigma\_\{s,s\}=\\frac\{1\}\{K\-1\}\\sum\_\{k=1\}^\{K\}s\_\{k\}s\_\{k\}^\{\\top\}\.Using a ridge\-regularized linear estimator, we define
M^t←s=Σt,s\(Σs,s\+λI\)−1\.\\widehat\{M\}\_\{t\\leftarrow s\}=\\Sigma\_\{t,s\}\(\\Sigma\_\{s,s\}\+\\lambda I\)^\{\-1\}\.
This estimator can be interpreted as an empirical approximation to the cross\-prefix NTK action: it measures how a small perturbation at the training prefix is propagated to the prompt prefix in the local linear regime\. Proposition[1](https://arxiv.org/html/2608.11342#Thmproposition1)formalizes this, showing thatM^t←s\\widehat\{M\}\_\{t\\leftarrow s\}converges to a ridge\-regularized form of the true cross\-prefix NTK action\.
### 3\.2Updating the Decoding Logits UsingMM
OnceM^t←s\\widehat\{M\}\_\{t\\leftarrow s\}is available, we can compute the prompt\-side logit shift directly from the supervised residuals as defined in Sec\.[3\.1](https://arxiv.org/html/2608.11342#S3.SS1)\. Under the assumptions of Proposition[1](https://arxiv.org/html/2608.11342#Thmproposition1), the updated distribution approximates the one obtained from a one\-step supervised natural\-gradient update, so WFT can be viewed as a training\-free emulator of one\-step SFT in distribution space\. Under multiple steps of update, to ensure consistency with the observed update at arbitrary stepjj, we require:
zt\(j\+1\)=zt\(j\)\+η∑sMt←s\(j\)rs\(j\),z^\{\(j\+1\)\}\_\{t\}=z^\{\(j\)\}\_\{t\}\+\\eta\\sum\_\{s\}M^\{\(j\)\}\_\{t\\leftarrow s\}r^\{\(j\)\}\_\{s\},where the supervised residualrs\(j\)=ys−softmax\(zs\(j\)\)r\_\{s\}^\{\(j\)\}=y\_\{s\}\-\\mathrm\{softmax\}\(z\_\{s\}^\{\(j\)\}\)depends on the current training\-side logitszs\(j\)z\_\{s\}^\{\(j\)\}, which are updated by the local residual gradient:zs\(j\+1\)=zs\(j\)\+ηrs\(j\)\.z^\{\(j\+1\)\}\_\{s\}=z^\{\(j\)\}\_\{s\}\+\\eta\\,r^\{\(j\)\}\_\{s\}\.The residual is therefore recomputed exactly at each step from the updated logits\. Therefore, afterkksteps, the total prompt\-side logit shift is
Δzt\(k\)=η∑j=0k−1∑s=1SMt←s\(j\)rs\(j\)\.\\Delta z\_\{t\}^\{\(k\)\}=\\eta\\sum\_\{j=0\}^\{k\-1\}\\sum\_\{s=1\}^\{S\}M\_\{t\\leftarrow s\}^\{\(j\)\}\\,r\_\{s\}^\{\(j\)\}\.Adopting a time\-homogeneous approximationMt←s\(j\)≡Mt←sM\_\{t\\leftarrow s\}^\{\(j\)\}\\equiv M\_\{t\\leftarrow s\}, this simplifies to
Δzt\(k\)=η∑s=1SMt←s∑j=0k−1rs\(j\)\.\\Delta z\_\{t\}^\{\(k\)\}=\\eta\\sum\_\{s=1\}^\{S\}M\_\{t\\leftarrow s\}\\sum\_\{j=0\}^\{k\-1\}r\_\{s\}^\{\(j\)\}\.
This approximation is not exact because the operators can change as the logits evolve\. When the updates remain small, however, fixing them still gives a useful first\-order approximation and leads to a closed\-form expression for the accumulated logit shift\. Also, we writeMt←sM\_\{t\\leftarrow s\}as aV×VV\\times Voperator for clarity, but WFT does not materialize this large matrix in the implementation\. The practical algorithm uses the vocabulary\-coordinate\-wise dropout\-factored approximation described in Appendix[B](https://arxiv.org/html/2608.11342#A2)\. Overall, WFT replaces the weight\-update pathway of SFT with logit\-space transport of supervised residuals\. Its key object is the operatorMM, which specifies how learning signals from a training sequence modify predictions on a different prompt\. This provides a lightweight approximation to SFT without changing a single model weight\.
## 4Experiments
### 4\.1Datasets
We evaluate our method using the LaMP benchmark\([24](https://arxiv.org/html/2608.11342#bib.bib1)\), which collects different personalization tasks\. Our evaluation focuses on three generative datasets in this benchmark: 1\) Personalized News Headline Generation\. 2\) Personalized Paper Title Generation\. 3\) Personalized Tweet Paraphrasing\. Each author in the dataset has a certain amount of personal writing\. For example, in the paper title generation task, an author has multiple historical pairs of paper abstracts and their corresponding titles\. We follow the evaluation metrics used in the LaMP benchmark, namely ROUGE\-1 \(R\-1\) and ROUGE\-L \(R\-L\), between the generated outputs and the ground truth\. More details about the dataset can be found in the Appendix[C\.1](https://arxiv.org/html/2608.11342#A3.SS1)\.
### 4\.2Baselines
We compare WFT with four baselines: 1\)SFTis the standard approach for adapting an LLM to a target task or author distribution\. Past research\([2](https://arxiv.org/html/2608.11342#bib.bib2)\)shows that per\-author SFT on an author’s full corpus can generate text that human readers often judge as matching that author’s style well\. This shows that per\-author SFT is a strong baseline for personalization tasks\. For each author, the model is tuned on author\-specific examples using the next\-token prediction objective\. Given a personalized prompt–response pair, the model minimizes cross\-entropy loss on the response tokens conditioned on the input context\.
2\)CHAMELEON\([32](https://arxiv.org/html/2608.11342#bib.bib27)\)personalizes LLMs by first generating synthetic preference data from limited author history and then performing inference\-time representation editing\. It is a strong training\-free personalization baseline on the LaMP dataset that avoids per\-author fine\-tuning while using only author\-specific historical data\.
3\)Prefix\-tuning\-relatedmethods have shown strong performance across multiple personalization tasks\. The core idea is to find a discriminative embedding for each author, for example, by using author profiles or by learning an author embedding in advance\. Building on the representation learning strategy in[20](https://arxiv.org/html/2608.11342#bib.bib4)and the framework of[11](https://arxiv.org/html/2608.11342#bib.bib5), we employ contrastive learning to derive author embeddings from historical texts and transform these embeddings into prefix tokens for personalized prefix\-tuning to better adapt to the datasets\.
4\)In\-Context Promptinghas shown good baseline performance\([24](https://arxiv.org/html/2608.11342#bib.bib1)\)in many personalization tasks\. Following[2](https://arxiv.org/html/2608.11342#bib.bib2), the model is given five excerpts from the target author along with the specific task prompt\. Based on these excerpts, the model generates a response that matches the author’s style\. We use Qwen3\-8B\([30](https://arxiv.org/html/2608.11342#bib.bib3)\)and Llama\-3\.1\-8B\-Instruct\([6](https://arxiv.org/html/2608.11342#bib.bib34)\)as the foundation models for all methods mentioned above\. The details of the above methods are provided in Appendix[C\.2](https://arxiv.org/html/2608.11342#A3.SS2)\.
### 4\.3Budget Control Training
SFT performance is heavily influenced by the training budget\. As discussed in Section[6\.1](https://arxiv.org/html/2608.11342#S6.SS1), the budget required for SFT is significantly larger than that of WFT\. Therefore, besides the performance comparison of the models under a sufficient budget as described above, we aim to examine how different budget levels affect SFT performance and whether SFT can maintain its performance when its budget is lowered to that of WFT\.
Intuitively, as the computational budget increases, the performance of SFT tends to improve\. However, under a fixed training budget, prior work reports mixed results on whether it is better to use more training data or to spend the budget on more training steps\([23](https://arxiv.org/html/2608.11342#bib.bib10);[15](https://arxiv.org/html/2608.11342#bib.bib9)\)\. These outcomes likely depend on factors such as task type and the quality of the training data\([31](https://arxiv.org/html/2608.11342#bib.bib8);[16](https://arxiv.org/html/2608.11342#bib.bib11)\)\.
Therefore, we explore the relationship between budget and performance under two scenarios in the paper dataset: 1\) When the ratio of the number of data pointsNNto the training epochsEEis small, i\.e\., a small dataset trained for many epochs, ensuring that the model fits the training data well\. 2\) WhenN/EN/Eis large, i\.e\., a large dataset trained for relatively few epochs\. In both scenarios, we vary the training budgetBBby jointly adjustingNNandEEsuch thatB=N×EB=N\\times E, and train per\-author SFT models for each configuration\. This allows us to trace performance as a function of B while comparing how different allocations affect the results\.N/EN/Eis set to 0\.2 in the first scenario and 2 in the second scenario\. The experiments in this section are conducted using Qwen3\-8B\.
## 5Empirical Studies
### 5\.1Main Results
The performance of different methods using Qwen3\-8B and Llama\-3\.1\-8B\-Instruct is shown in Tables[1](https://arxiv.org/html/2608.11342#S5.T1)and[2](https://arxiv.org/html/2608.11342#S5.T2), respectively\.
On Qwen3\-8B, WFT and SFT achieve the strongest results across the three LaMP datasets\. WFT attains the best R\-1 score on Twitter and the strongest performance on News, whereas SFT performs best on Paper and obtains the highest R\-L score on Twitter\. Averaged across datasets, WFT obtains the highest scores on both R\-1 and R\-L\. WFT and SFT also outperform in\-context prompting, prefix\-tuning, and CHAMELEON on average\. Although CHAMELEON improves over in\-context prompting and prefix\-tuning, it still falls short of WFT and SFT overall\. On Twitter and News, prefix\-tuning performs no better than in\-context learning, likely because it struggles to learn effective author representations, as reflected by an authorship detection accuracy of only around 30%\.
On Llama\-3\.1\-8B\-Instruct, WFT again achieves the highest average R\-1 and R\-L scores\. It obtains the best R\-1 result on Paper and Twitter and the best R\-L result on Paper, while remaining competitive on the other metrics\. Prefix\-tuning performs best on Twitter R\-L and News R\-1, and CHAMELEON achieves the highest News R\-L score\. Overall, WFT retains the strongest average performance across the three datasets\. The results across both foundation models show that WFT provides a strong training\-free alternative to SFT\.
Table 1:Performance comparison of different methods on three LaMP benchmarks using Qwen3\-8B as the foundation model\. WFT achieves the best average performance across datasets, while remaining competitive with SFT on each individual task\. The best\-performing results are bolded, and the second\-best results are underlined\.Table 2:Performance comparison of different methods on three LaMP benchmarks using Llama\-3\.1\-8B\-Instruct as the foundation model\. WFT achieves the best average performance across datasets\. The best\-performing results are bolded, and the second\-best results are underlined\.
### 5\.2Results of Budget Control Training
Figure[1](https://arxiv.org/html/2608.11342#S5.F1)shows the performance of SFT as the budget varies under high and lowN/EN/Escenarios, respectively\. In both scenarios, as expected, the performance of SFT improves as the budget increases\. We do not notice that the performance of this task varies withN/EN/E\. The performance of WFT is roughly comparable to that of SFT withB=1,500−2,000B=1,500\-2,000\. As discussed in Section[6\.1](https://arxiv.org/html/2608.11342#S6.SS1), the effective budgetBBof WFT is about 100, which is about half of the leftmost point in Figure[1](https://arxiv.org/html/2608.11342#S5.F1)\. WFT uses no more than 7% of the budget required by SFT to achieve comparable performance\. Therefore, for personalization tasks, when computational resources are limited such that SFT cannot produce effective results, WFT serves as a strong alternative\.
Figure 1:SFT performance as a function of training budget under different training\-data\-to\-epoch ratios \(N/EN/E\)\. The red dashed line indicates WFT performance\.
### 5\.3Ablation Analysis
We conducted an ablation study by setting M to the identity matrix, reducing the amount of author text used to one\-half and one\-quarter, and decreasing the number of WFT iteration steps to one\-half and one\-quarter, in order to examine the effect of each key component on the algorithm\. Table[3](https://arxiv.org/html/2608.11342#S5.T3)shows that removing the transport operatorMMcauses the largest average drop, confirming that structured transport is central to WFT\. Reducing the number of virtual steps also degrades performance, with a larger drop at 1/4 steps than at 1/2 steps, suggesting that multi\-step accumulation contributes meaningfully to adaptation quality\. Reducing the amount of author history leads to a similar degradation on average, supporting the intuitive idea that using more author data helps personalization tasks\. We note that replacing M with the identity matrix does not have a major effect on the Twitter data, which may be because the Twitter training data are similar and related to the task prompts, allowing the residual alone to convey a considerable amount of information\.
Table 3:Ablation study of WFT across three LaMP datasets\. Removing the transport operatorMMgenerally causes the largest degradation, while reducing the number of virtual steps or the amount of author history leads to more gradual performance drops\.
### 5\.4Human Evaluation
We conducted a human evaluation to complement the automatic metrics\. We randomly sampled 50 examples across the three datasets\. For each example, two annotators fluent in English were shown the target author’s historical writing excerpts, the task input, and two anonymized model outputs generated by WFT and SFT\. They were asked to judge which output better matched the author’s writing style, considering lexical choice, tone, phrasing, and overall writing pattern\. Averaged over the two annotators, WFT was preferred in 31 out of 50 comparisons\. This result provides complementary evidence beyond the ROUGE metric that WFT captures author\-specific writing style at a level comparable to, and often preferred over, SFT\.
## 6Further Analysis and Discussion
### 6\.1Complexity Analysis
We theoretically compare the computational cost of WFT and SFT because WFT is designed to approximate SFT in similar usage settings\.
Consider the following variables: letEEdenote the number of SFT epochs,RRthe number of WFT steps,TfT\_\{f\}the time of a forward pass, andTbT\_\{b\}the time of a backward pass\. For WFT,KKdenotes the number of forward passes \(KKdifferent dropout settings\)\. We further useSSto denote the input length,VVthe vocabulary size, andPPthe total number of model parameters\. We assume there is only one training instance; otherwise, it would only introduce an additional constant factor for each author\.
For SFT, the computational complexity per author should be:𝒪\(E\(Tf\+Tb\)\)\\mathcal\{O\}\(E\(T\_\{f\}\+T\_\{b\}\)\)\. For WFT, the computational complexity is𝒪\(\(KTf\+g\)\)\\mathcal\{O\}\(\(KT\_\{f\}\+g\)\), whereggis the cost of matrix computations per instance\. According to the algorithm detailed in Appendix[B](https://arxiv.org/html/2608.11342#A2), we haveg=O\(RSK2V\)g=O\(RSK^\{2\}V\), then for WFT the complexity is𝒪\(\(KTf\+g\)\)=𝒪\(K\(Tf\+RSKV\)\)\\mathcal\{O\}\(\(KT\_\{f\}\+g\)\)=\\mathcal\{O\}\(K\(T\_\{f\}\+RSKV\)\)\.
SupposeKKandEEare of the same order of magnitude \(in our experiments,K=10K=10andE=40E=40, so this assumption is favorable to SFT\)\. Then the key comparison is betweenRSKVRSKVandTbT\_\{b\}\. For simplicity, we letTb=cTfT\_\{b\}=cT\_\{f\}and assumeTf∝SPT\_\{f\}\\propto SP, whereSSis the input length andPPis the number of model parameters\. Thus,Tb=cSPT\_\{b\}=cSP, whereccis a constant\. For LoRA\-SFT, although only a small number of parameters are updated, backward propagation still needs to transmit gradients through the full computation graph\. Therefore, its backward cost remains proportional to the model size and input length, and we approximate it using the same formTb=cSPT\_\{b\}=cSP, potentially with a smaller constant factor than in full\-parameter SFT\.
With that, we need to comparecPcPandRKVRKV\. In experiments,R=400,V≈1\.5∗105,K=10R=400,V\\approx 1\.5\*10^\{5\},K=10, soRKVRKVis about6∗1086\*10^\{8\}andcPcPis at least1\.6∗10101\.6\*10^\{10\}forc≥2c\\geq 2\([8](https://arxiv.org/html/2608.11342#bib.bib12);[28](https://arxiv.org/html/2608.11342#bib.bib13)\)if using 8B models\. Under these assumptions, WFT has an estimated computation cost 20 times lower than SFT for the considered configuration\. This complexity gap is roughly consistent with the difference in training time we observe in practice\. The SFT results presented in Table[1](https://arxiv.org/html/2608.11342#S5.T1)for the paper task useB=N∗E=50∗40=2000B=N\*E=50\*40=2000, which means that the effective budgetBBof WFT is approximately 100\.
\(a\)Normalized logit shifts of the top\-15 tokens ranked byΔzWFT\\Delta z^\{\\text\{WFT\}\}, compared between one\-step WFT and SFT\.\(b\)Excerpts from the author’s historical writings\. Highlighted tokens are colored according to their rank underΔzWFT\\Delta z^\{\\text\{WFT\}\}\.
Figure 2:Qualitative comparison between WFT and SFT on a randomly sampled author\.
### 6\.2Qualitative Example
To show how WFT approximates SFT in logit space, we present a case study on a randomly sampled author from the Twitter dataset\. Using the same set of the author’s writings, we perform one SFT step and one WFT step, and then apply both updates to the same input prompt\. This yields two updated next\-token logit vectors for comparison\. LetΔzSFT\\Delta z^\{\\text\{SFT\}\}andΔzWFT\\Delta z^\{\\text\{WFT\}\}denote the corresponding logit shifts relative to the base model at the same decoding position\. We compare the two updates on the top\-kktokens ranked byΔzWFT\\Delta z^\{\\text\{WFT\}\}, and compute the cosine similarity betweenΔzSFT\\Delta z^\{\\text\{SFT\}\}andΔzWFT\\Delta z^\{\\text\{WFT\}\}on this subset\. The cosine similarity reaches 0\.875 on the top\-10 tokens, which account for more than 95% of the next\-token probability under both methods\. On the top\-50 tokens, the similarity still remains 0\.601\.
Figure[2\(a\)](https://arxiv.org/html/2608.11342#S6.F2.sf1)further visualizes the normalized logit shifts of the top\-15 tokens ranked byΔzWFT\\Delta z^\{\\text\{WFT\}\}after removing punctuation marks\. We observe that the tokens most strongly upweighted by WFT are also assigned positive and large shifts by SFT, indicating a similar relative emphasis on the most affected tokens\. Figure[2\(b\)](https://arxiv.org/html/2608.11342#S6.F2.sf2)further shows that many of these highly upweighted tokens also occur in the sampled author’s historical writings\. These observations suggest that WFT recovers a logit\-update direction similar to that induced by one\-step SFT\.
### 6\.3Other advantages of WFT
Beyond speed, WFT offers several practical advantages: 1\) it does not generate any new weights, so there is no need to store new model weights for each author\. 2\) the method can easily adapt to new tasks, whereas SFT often requires separate training for different tasks\. WFT can also readily incorporate new author data by computing the relevant variables for the additional data, while SFT would require retraining\. 3\) since WFT does not modify the model parameters, it does not affect the model’s general performance on other tasks\. By contrast, tuning on personal data may lead to catastrophic forgetting\([12](https://arxiv.org/html/2608.11342#bib.bib7)\)\. 4\) WFT does not require direct access to model weights and operates only through stochastic forward passes and output logits\.
## 7Conclusion
We introduced WFT, a training\-free method for personalization that approximates SFT by transporting supervised residuals from training sequences to prompt prefixes in logit space\. The cross\-prefix transport operator, estimated through dropout\-induced forward\-pass covariance, supports this transfer without gradient computation or parameter update\. Across three tasks, WFT achieves the best average performance across datasets, performs comparably to SFT, and consistently outperforms other lightweight personalization baselines on average\. Budget\-controlled comparisons further show that WFT can approach the performance of much more expensive SFT while using only a small fraction of the computation\. The results suggest that for personalization settings where per\-author adaptation must be both effective and lightweight, much of the distributional effect of fine\-tuning can be recovered without the fine\-tuning itself, making WFT a practical training\-free alternative to SFT\. WFT operates in logit space and does not reproduce the internal representation changes induced by parameter fine\-tuning\. Extending WFT to reasoning\-heavy, long\-form, and cross\-task adaptation is an important direction for future work\.
## Ethics Statement
We study personalization in language models and recognize that such settings may involve user\-associated text\. Our method does not create or store separate user\-specific model weights, and instead performs adaptation through inference\-time logit corrections, which can reduce the need to maintain personalized parameter copies\. In this paper, experiments are conducted on a public benchmark used for research purposes, and we do not introduce new private user data\. For real\-world deployment, we emphasize that personalization should be applied only with appropriate consent and retention safeguards\.
## Acknowledgments
YW was supported in part by funding from the Office of Naval Research under grant N00014\-23\-1\-2590, the National Science Foundation under grant No\. 2310831, No\. 2428059, No\. 2435696, No\. 2440954, a Michigan Institute for Data Science Propelling Original Data Science \(PODS\) grant, Two Sigma Investments LP, and LG Management Development Institute AI Research\.
## References
- T\. Chakrabarty and P\. S\. DhillonCan good writing be generative? expert\-level ai writing emerges through fine\-tuning on high\-quality books\.External Links:2601\.18353,[Link](https://arxiv.org/abs/2601.18353)Cited by:[§1](https://arxiv.org/html/2608.11342#S1.p2.1)\.
- Chakrabartyet al\.\(2025\)T\. Chakrabarty, J\. C\. Ginsburg, and P\. DhillonReaders prefer outputs of ai trained on copyrighted books over expert human writers\.External Links:2510\.13939,[Link](https://arxiv.org/abs/2510.13939)Cited by:[§C\.2\.4](https://arxiv.org/html/2608.11342#A3.SS2.SSS4.p1.1),[§1](https://arxiv.org/html/2608.11342#S1.p1.1),[§1](https://arxiv.org/html/2608.11342#S1.p2.1),[§2](https://arxiv.org/html/2608.11342#S2.p2.1),[§4\.2](https://arxiv.org/html/2608.11342#S4.SS2.p1.1),[§4\.2](https://arxiv.org/html/2608.11342#S4.SS2.p4.1)\.
- Chenet al\.\(2024\)J\. Chen, Z\. Liu, X\. Huang, C\. Wu, Q\. Liu, G\. Jiang, Y\. Pu, Y\. Lei, X\. Chen, X\. Wang,et al\.When large language models meet personalization: perspectives of challenges and opportunities\.World wide web27\(4\),pp\. 42\.Cited by:[§2](https://arxiv.org/html/2608.11342#S2.p1.1)\.
- Daiet al\.\(2023\)D\. Dai, Y\. Sun, L\. Dong, Y\. Hao, S\. Ma, Z\. Sui, and F\. WeiWhy can gpt learn in\-context? language models secretly perform gradient descent as meta\-optimizers\.InFindings of the Association for Computational Linguistics: ACL 2023,pp\. 4005–4019\.Cited by:[§2](https://arxiv.org/html/2608.11342#S2.p4.1)\.
- Deutchet al\.\(2024\)G\. Deutch, N\. Magar, T\. Natan, and G\. DarIn\-context learning and gradient descent revisited\.InProceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies \(Volume 1: Long Papers\),pp\. 1017–1028\.Cited by:[§2](https://arxiv.org/html/2608.11342#S2.p4.1)\.
- Grattafioriet al\.\(2024\)A\. Grattafiori, A\. Dubey, A\. Jauhri, A\. Pandey, A\. Kadian, A\. Al\-Dahle, A\. Letman, A\. Mathur, A\. Schelten, A\. Vaughan,et al\.The llama 3 herd of models\.arXiv preprint arXiv:2407\.21783\.Cited by:[§4\.2](https://arxiv.org/html/2608.11342#S4.SS2.p4.1)\.
- Hendrycks and Gimpel \(2016\)D\. Hendrycks and K\. GimpelGaussian error linear units \(gelus\)\.arXiv preprint arXiv:1606\.08415\.Cited by:[§C\.2\.3](https://arxiv.org/html/2608.11342#A3.SS2.SSS3.p2.1)\.
- Hoffmannet al\.\(2022\)J\. Hoffmann, S\. Borgeaud, A\. Mensch, E\. Buchatskaya, T\. Cai, E\. Rutherford, D\. de Las Casas, L\. A\. Hendricks, J\. Welbl, A\. Clark, T\. Hennigan, E\. Noland, K\. Millican, G\. van den Driessche, B\. Damoc, A\. Guy, S\. Osindero, K\. Simonyan, E\. Elsen, O\. Vinyals, J\. W\. Rae, and L\. SifreTraining compute\-optimal large language models\.InProceedings of the 36th International Conference on Neural Information Processing Systems,NIPS ’22,Red Hook, NY, USA\.External Links:ISBN 9781713871088Cited by:[§6\.1](https://arxiv.org/html/2608.11342#S6.SS1.p5.1)\.
- Huet al\.\(2022\)E\. J\. Hu, Y\. Shen, P\. Wallis, Z\. Allen\-Zhu, Y\. Li, S\. Wang, L\. Wang, W\. Chen,et al\.Lora: low\-rank adaptation of large language models\.\.Iclr1\(2\),pp\. 3\.Cited by:[§C\.2\.2](https://arxiv.org/html/2608.11342#A3.SS2.SSS2.p1.1)\.
- Huet al\.\(2025\)J\. Hu, Z\. Zhang, G\. Chen, X\. Wen, C\. Shuai, W\. Luo, B\. Xiao, Y\. Li, and M\. TanTest\-time learning for large language models\.arXiv preprint arXiv:2505\.20633\.Cited by:[§1](https://arxiv.org/html/2608.11342#S1.p3.1),[§2](https://arxiv.org/html/2608.11342#S2.p3.1)\.
- Huberet al\.\(2025\)B\. Huber, G\. Fazelnia, A\. Damianou, S\. Peleato, M\. Lefarov, P\. Ravichandran, M\. D\. Nadai, M\. Lalmas\-Roellke, and P\. N\. BennettEmbedding\-to\-prefix: parameter\-efficient personalization for pre\-trained large language models\.External Links:2505\.17051,[Link](https://arxiv.org/abs/2505.17051)Cited by:[§C\.2\.3](https://arxiv.org/html/2608.11342#A3.SS2.SSS3.p1.1),[§1](https://arxiv.org/html/2608.11342#S1.p2.1),[§2](https://arxiv.org/html/2608.11342#S2.p2.1),[§4\.2](https://arxiv.org/html/2608.11342#S4.SS2.p3.1)\.
- Kaushiket al\.\(2021\)P\. Kaushik, A\. Gain, A\. Kortylewski, and A\. YuilleUnderstanding catastrophic forgetting and remembering in continual learning with optimal relevance mapping\.External Links:2102\.11343,[Link](https://arxiv.org/abs/2102.11343)Cited by:[§1](https://arxiv.org/html/2608.11342#S1.p2.1),[§6\.3](https://arxiv.org/html/2608.11342#S6.SS3.p1.1)\.
- Khoslaet al\.\(2020\)P\. Khosla, P\. Teterwak, C\. Wang, A\. Sarna, Y\. Tian, P\. Isola, A\. Maschinot, C\. Liu, and D\. KrishnanSupervised contrastive learning\.Advances in neural information processing systems33,pp\. 18661–18673\.Cited by:[§C\.2\.3](https://arxiv.org/html/2608.11342#A3.SS2.SSS3.p2.1)\.
- Kimet al\.\(2025\)M\. Kim, K\. Lee, S\. Joo, H\. Lee, T\. Thonet, and K\. JungDrift: decoding\-time personalized alignments with implicit user preferences\.InFindings of the Association for Computational Linguistics: EMNLP 2025,C\. Christodoulopoulos, T\. Chakraborty, C\. Rose, and V\. Peng \(Eds\.\),Suzhou, China,pp\. 6107–6126\.External Links:[Link](https://aclanthology.org/2025.findings-emnlp.324/),[Document](https://dx.doi.org/10.18653/v1/2025.findings-emnlp.324),ISBN 979\-8\-89176\-335\-7Cited by:[§1](https://arxiv.org/html/2608.11342#S1.p3.1),[§2](https://arxiv.org/html/2608.11342#S2.p3.1)\.
- Kopiczkoet al\.\(2026\)D\. J\. Kopiczko, S\. Vaze, T\. Blankevoort, and Y\. M\. AsanoData repetition beats data scaling in long\-cot supervised fine\-tuning\.External Links:2602\.11149,[Link](https://arxiv.org/abs/2602.11149)Cited by:[§4\.3](https://arxiv.org/html/2608.11342#S4.SS3.p2.1)\.
- Lagasseet al\.\(2025\)R\. Lagasse, A\. Kierans, A\. Ghosh, and S\. Dori\-HacohenA scaling law for token efficiency in llm fine\-tuning under fixed compute budgets\.External Links:2505\.06150,[Link](https://arxiv.org/abs/2505.06150)Cited by:[§4\.3](https://arxiv.org/html/2608.11342#S4.SS3.p2.1)\.
- Li and Liang \(2021\)X\. L\. Li and P\. LiangPrefix\-tuning: optimizing continuous prompts for generation\.InProceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing \(Volume 1: Long Papers\),C\. Zong, F\. Xia, W\. Li, and R\. Navigli \(Eds\.\),Online,pp\. 4582–4597\.External Links:[Link](https://aclanthology.org/2021.acl-long.353/),[Document](https://dx.doi.org/10.18653/v1/2021.acl-long.353)Cited by:[§2](https://arxiv.org/html/2608.11342#S2.p2.1)\.
- Liuet al\.\(2025\)J\. Liu, Z\. Qiu, Z\. Li, Q\. Dai, W\. Yu, J\. Zhu, M\. Hu, M\. Yang, T\. Chua, and I\. KingA survey of personalized large language models: progress and future directions\.arXiv preprint arXiv:2502\.11528\.Cited by:[§2](https://arxiv.org/html/2608.11342#S2.p1.1)\.
- Liuet al\.\(2024\)S\. Liu, H\. Ye, L\. Xing, and J\. ZouIn\-context vectors: making in context learning more effective and controllable through latent space steering\.InProceedings of the 41st International Conference on Machine Learning,ICML’24\.Cited by:[§1](https://arxiv.org/html/2608.11342#S1.p3.1)\.
- Liuet al\.\(2023\)S\. Liu, H\. Cho, M\. Freedman, X\. Ma, and J\. MayRECAP: retrieval\-enhanced context\-aware prefix encoder for personalized dialogue response generation\.InProceedings of the 61st Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),A\. Rogers, J\. Boyd\-Graber, and N\. Okazaki \(Eds\.\),Toronto, Canada,pp\. 8404–8419\.External Links:[Link](https://aclanthology.org/2023.acl-long.468/),[Document](https://dx.doi.org/10.18653/v1/2023.acl-long.468)Cited by:[§C\.2\.3](https://arxiv.org/html/2608.11342#A3.SS2.SSS3.p1.1),[§1](https://arxiv.org/html/2608.11342#S1.p2.1),[§2](https://arxiv.org/html/2608.11342#S2.p2.1),[§4\.2](https://arxiv.org/html/2608.11342#S4.SS2.p3.1)\.
- Liuet al\.\(2019\)Y\. Liu, M\. Ott, N\. Goyal, J\. Du, M\. Joshi, D\. Chen, O\. Levy, M\. Lewis, L\. Zettlemoyer, and V\. StoyanovRoberta: a robustly optimized bert pretraining approach\.arXiv preprint arXiv:1907\.11692\.Cited by:[§C\.2\.3](https://arxiv.org/html/2608.11342#A3.SS2.SSS3.p2.1)\.
- Lvet al\.\(2025\)H\. Lv, S\. Liang, H\. Wang, H\. Gu, Y\. Wu, W\. Guo, D\. Lian, Y\. Liu, and E\. ChenCoSteer: collaborative decoding\-time personalization via local delta steering\.arXiv preprint arXiv:2507\.04756\.Cited by:[§1](https://arxiv.org/html/2608.11342#S1.p3.1),[§2](https://arxiv.org/html/2608.11342#S2.p3.1)\.
- Muennighoffet al\.\(2023\)N\. Muennighoff, A\. Rush, B\. Barak, T\. Le Scao, N\. Tazi, A\. Piktus, S\. Pyysalo, T\. Wolf, and C\. A\. RaffelScaling data\-constrained language models\.Advances in Neural Information Processing Systems36,pp\. 50358–50376\.Cited by:[§4\.3](https://arxiv.org/html/2608.11342#S4.SS3.p2.1)\.
- Salemiet al\.\(2024\)A\. Salemi, S\. Mysore, M\. Bendersky, and H\. ZamaniLaMP: when large language models meet personalization\.InProceedings of the 62nd Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),L\. Ku, A\. Martins, and V\. Srikumar \(Eds\.\),Bangkok, Thailand,pp\. 7370–7392\.External Links:[Link](https://aclanthology.org/2024.acl-long.399/),[Document](https://dx.doi.org/10.18653/v1/2024.acl-long.399)Cited by:[§1](https://arxiv.org/html/2608.11342#S1.p2.1),[§4\.1](https://arxiv.org/html/2608.11342#S4.SS1.p1.1),[§4\.2](https://arxiv.org/html/2608.11342#S4.SS2.p4.1)\.
- Shenet al\.\(2024\)L\. Shen, A\. Mishra, and D\. KhashabiPosition: do pretrained transformers learn in\-context by gradient descent?\.InProceedings of the 41st International Conference on Machine Learning,R\. Salakhutdinov, Z\. Kolter, K\. Heller, A\. Weller, N\. Oliver, J\. Scarlett, and F\. Berkenkamp \(Eds\.\),Proceedings of Machine Learning Research, Vol\.235,pp\. 44712–44740\.External Links:[Link](https://proceedings.mlr.press/v235/shen24d.html)Cited by:[§2](https://arxiv.org/html/2608.11342#S2.p4.1)\.
- Sunet al\.\(2025\)Y\. Sun, X\. Li, K\. Dalal, J\. Xu, A\. Vikram, G\. Zhang, Y\. Dubois, X\. Chen, X\. Wang, S\. Koyejo, T\. Hashimoto, and C\. GuestrinLearning to \(Learn at test time\): RNNs with expressive hidden states\.InProceedings of the 42nd International Conference on Machine Learning,A\. Singh, M\. Fazel, D\. Hsu, S\. Lacoste\-Julien, F\. Berkenkamp, T\. Maharaj, K\. Wagstaff, and J\. Zhu \(Eds\.\),Proceedings of Machine Learning Research, Vol\.267,pp\. 57503–57522\.External Links:[Link](https://proceedings.mlr.press/v267/sun25h.html)Cited by:[§1](https://arxiv.org/html/2608.11342#S1.p3.1),[§2](https://arxiv.org/html/2608.11342#S2.p3.1)\.
- Von Oswaldet al\.\(2023\)J\. Von Oswald, E\. Niklasson, E\. Randazzo, J\. Sacramento, A\. Mordvintsev, A\. Zhmoginov, and M\. VladymyrovTransformers learn in\-context by gradient descent\.InInternational Conference on Machine Learning,pp\. 35151–35174\.Cited by:[§2](https://arxiv.org/html/2608.11342#S2.p4.1)\.
- Wiedemannet al\.\(2020\)S\. Wiedemann, T\. Mehari, K\. Kepp, and W\. SamekDithered backprop: a sparse and quantized backpropagation algorithm for more efficient deep neural network training\.InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops,pp\. 720–721\.Cited by:[§6\.1](https://arxiv.org/html/2608.11342#S6.SS1.p5.1)\.
- Woodbury \(1950\)M\. A\. WoodburyInverting modified matrices\.Department of Statistics, Princeton University\.Cited by:[Appendix B](https://arxiv.org/html/2608.11342#A2.SS0.SSS0.Px2.p2.2)\.
- Yanget al\.\(2025\)A\. Yang, A\. Li, B\. Yang, B\. Zhang, B\. Hui, B\. Zheng, B\. Yu, C\. Gao, C\. Huang, C\. Lv, C\. Zheng, D\. Liu, F\. Zhou, F\. Huang, F\. Hu, H\. Ge, H\. Wei, H\. Lin, J\. Tang, J\. Yang, J\. Tu, J\. Zhang, J\. Yang, J\. Yang, J\. Zhou, J\. Zhou, J\. Lin, K\. Dang, K\. Bao, K\. Yang, L\. Yu, L\. Deng, M\. Li, M\. Xue, M\. Li, P\. Zhang, P\. Wang, Q\. Zhu, R\. Men, R\. Gao, S\. Liu, S\. Luo, T\. Li, T\. Tang, W\. Yin, X\. Ren, X\. Wang, X\. Zhang, X\. Ren, Y\. Fan, Y\. Su, Y\. Zhang, Y\. Zhang, Y\. Wan, Y\. Liu, Z\. Wang, Z\. Cui, Z\. Zhang, Z\. Zhou, and Z\. QiuQwen3 technical report\.External Links:2505\.09388,[Link](https://arxiv.org/abs/2505.09388)Cited by:[§4\.2](https://arxiv.org/html/2608.11342#S4.SS2.p4.1)\.
- Yin and Rush \(2024\)J\. O\. Yin and A\. M\. RushCompute\-constrained data selection\.arXiv preprint arXiv:2410\.16208\.Cited by:[§4\.3](https://arxiv.org/html/2608.11342#S4.SS3.p2.1)\.
- Zhanget al\.\(2025a\)Y\. Zhang, D\. Adila, C\. Shin, and F\. SalaPersonalize your LLM: fake it then align it\.InFindings of the Association for Computational Linguistics: NAACL 2025,L\. Chiruzzo, A\. Ritter, and L\. Wang \(Eds\.\),Albuquerque, New Mexico,pp\. 7302–7316\.External Links:[Link](https://aclanthology.org/2025.findings-naacl.407/),[Document](https://dx.doi.org/10.18653/v1/2025.findings-naacl.407),ISBN 979\-8\-89176\-195\-7Cited by:[§1](https://arxiv.org/html/2608.11342#S1.p2.1),[§1](https://arxiv.org/html/2608.11342#S1.p3.1),[§2](https://arxiv.org/html/2608.11342#S2.p3.1),[§4\.2](https://arxiv.org/html/2608.11342#S4.SS2.p2.1)\.
- Zhanget al\.\(2025b\)Z\. Zhang, F\. Bai, Q\. Chen, C\. Ma, M\. Wang, H\. Sun, Z\. Zheng, and Y\. YangAmulet: realignment during test time for personalized preference adaptation of LLMs\.InThe Thirteenth International Conference on Learning Representations \(ICLR\),External Links:[Link](https://openreview.net/forum?id=f9w89OY2cp)Cited by:[§1](https://arxiv.org/html/2608.11342#S1.p3.1),[§2](https://arxiv.org/html/2608.11342#S2.p3.1)\.
- Zhanget al\.\(2025c\)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\. K\. Ahmed, and Y\. WangPersonalization of large language models: a survey\.Transactions on Machine Learning Research\.Note:Survey CertificationExternal Links:ISSN 2835\-8856,[Link](https://openreview.net/forum?id=tf6A9EYMo6)Cited by:[§2](https://arxiv.org/html/2608.11342#S2.p1.1)\.
## Appendix AFormal Justification: Dropout Covariance as an NTK Approximation
We now show formally that the dropout\-estimated transport operatorM^t←s\\widehat\{M\}\_\{t\\leftarrow s\}is a ridge\-regularized approximation to the cross\-prefix neural tangent kernel \(NTK\) action\. This bridges the gap between the logit\-space derivation in Sections 3\.1–3\.2 and standard NTK theory, making precise the sense in which WFT approximates one\-step SFT\.
###### Proposition 1\(Dropout Covariance Approximates the Cross\-Prefix NTK Action\)\.
Letz\(c,θ\)∈ℝVz\(c;\\theta\)\\in\\mathbb\{R\}^\{V\}denote the logits of a language model with parametersθ∈ℝP\\theta\\in\\mathbb\{R\}^\{P\}for prefixcc, and letJc=∂z\(c,θ\)∂θ\|θ0∈ℝV×PJ\_\{c\}=\\frac\{\\partial z\(c;\\theta\)\}\{\\partial\\theta\}\\Big\|\_\{\\theta\_\{0\}\}\\in\\mathbb\{R\}^\{V\\times P\}be the Jacobian at the frozen parametersθ0\\theta\_\{0\}\. Define the cross\-prefix and self\-prefix NTK Gram matrices:
Θt,s=JtJs⊤∈ℝV×V,Θs,s=JsJs⊤∈ℝV×V\.\\Theta\_\{t,s\}\\;=\\;J\_\{t\}\\,J\_\{s\}^\{\\top\}\\;\\in\\;\\mathbb\{R\}^\{V\\times V\},\\qquad\\Theta\_\{s,s\}\\;=\\;J\_\{s\}\\,J\_\{s\}^\{\\top\}\\;\\in\\;\\mathbb\{R\}^\{V\\times V\}\.WhenΘs,s\\Theta\_\{s,s\}is singular, its inverse below is understood as the Moore–Penrose pseudoinverse\.
Suppose the following conditions hold:
1. 1\.\(Local linearity\.\)The logit function is well\-approximated to first order aroundθ0\\theta\_\{0\}: for every dropout\-induced effective parameterθ0\+δθk\\theta\_\{0\}\+\\delta\\theta\_\{k\}, z\[k\]\(c\)=z\(c,θ0\+δθk\)≈z\(c,θ0\)\+Jcδθk\.z^\{\[k\]\}\(c\)\\;=\\;z\(c;\\,\\theta\_\{0\}\+\\delta\\theta\_\{k\}\)\\;\\approx\\;z\(c;\\theta\_\{0\}\)\+J\_\{c\}\\,\\delta\\theta\_\{k\}\.
2. 2\.\(Isotropic dropout perturbations\.\)The population covariance of the dropout\-induced parameter perturbations satisfiesΣθ=Cov\(δθ\)=σ2IP\\Sigma\_\{\\theta\}\\;=\\;\\mathrm\{Cov\}\(\\delta\\theta\)\\;=\\;\\sigma^\{2\}I\_\{P\}for someσ2\>0\\sigma^\{2\}\>0\.
Then:
\(a\)*\(NTK transport\.\)*Forrsr\_\{s\}in the column span ofΘs,s\\Theta\_\{s,s\}, the minimum\-norm parameter update that realizes the source\-side logit updateηrs\\eta r\_\{s\}induces the following logit shift at prompt prefixx1:tx\_\{1:t\}:
ΔztSFT=ηΘt,sΘs,s−1rs\.\\Delta z\_\{t\}^\{\\mathrm\{SFT\}\}\\;=\\;\\eta\\,\\Theta\_\{t,s\}\\,\\Theta\_\{s,s\}^\{\-1\}\\,r\_\{s\}\.The corresponding cross\-prefix transport operator isMt←s=Θt,sΘs,s−1M\_\{t\\leftarrow s\}=\\Theta\_\{t,s\}\\,\\Theta\_\{s,s\}^\{\-1\}\.
\(b\)*\(Dropout estimation\.\)*The dropout\-estimated operator satisfies, asK→∞K\\to\\infty,
M^t←s→𝑝Θt,s\(Θs,s\+λ′I\)−1,λ′=λσ2,\\widehat\{M\}\_\{t\\leftarrow s\}\\;\\xrightarrow\{\\;p\\;\}\\Theta\_\{t,s\}\\bigl\(\\Theta\_\{s,s\}\+\\lambda^\{\\prime\}I\\bigr\)^\{\-1\},\\qquad\\lambda^\{\\prime\}=\\frac\{\\lambda\}\{\\sigma^\{2\}\},which is a ridge\-regularized approximation toMt←sM\_\{t\\leftarrow s\}\. In particular, for any residualrsr\_\{s\}in the column span ofΘs,s\\Theta\_\{s,s\},
M^t←srs⟶Mt←srsasλ′→0\.\\widehat\{M\}\_\{t\\leftarrow s\}\\,r\_\{s\}\\;\\longrightarrow\\;M\_\{t\\leftarrow s\}\\,r\_\{s\}\\qquad\\text\{as \}\\lambda^\{\\prime\}\\to 0\.
###### Proof\.
Part \(a\)\.By the KL\-prox NGD formulation \(Section 3\), a natural\-gradient step at training positionsswith step sizeη\\etaproduces the logit\-space updateηrs\\eta\\,r\_\{s\}at positionss, i\.e\.,zsnew=zs\+ηrsz\_\{s\}^\{\\mathrm\{new\}\}=z\_\{s\}\+\\eta\\,r\_\{s\}\.
In the NTK \(lazy\-training\) regime, the logit function is locally linear inθ\\theta, so a parameter displacementΔθ\\Delta\\thetainducesΔz\(c\)=JcΔθ\\Delta z\(c\)=J\_\{c\}\\,\\Delta\\thetaat any prefixcc\. The parameter updateΔθ\\Delta\\thetathat realises the prescribed logit shiftηrs\\eta\\,r\_\{s\}at positionsswhile minimising‖Δθ‖2\\\|\\Delta\\theta\\\|^\{2\}is:
Δθ=ηJs⊤\(JsJs⊤\)−1rs=ηJs⊤Θs,s−1rs,\\Delta\\theta\\;=\\;\\eta\\,J\_\{s\}^\{\\top\}\\bigl\(J\_\{s\}\\,J\_\{s\}^\{\\top\}\\bigr\)^\{\-1\}r\_\{s\}\\;=\\;\\eta\\,J\_\{s\}^\{\\top\}\\,\\Theta\_\{s,s\}^\{\-1\}\\,r\_\{s\},
which is the Moore–Penrose pseudoinverse solution toJsΔθ=ηrsJ\_\{s\}\\,\\Delta\\theta=\\eta\\,r\_\{s\}\.
The induced logit shift at the prompt prefixx1:tx\_\{1:t\}is then:
ΔztSFT=JtΔθ=ηJtJs⊤Θs,s−1rs=ηΘt,sΘs,s−1rs\.\\Delta z\_\{t\}^\{\\mathrm\{SFT\}\}\\;=\\;J\_\{t\}\\,\\Delta\\theta\\;=\\;\\eta\\,J\_\{t\}\\,J\_\{s\}^\{\\top\}\\,\\Theta\_\{s,s\}^\{\-1\}\\,r\_\{s\}\\;=\\;\\eta\\,\\Theta\_\{t,s\}\\,\\Theta\_\{s,s\}^\{\-1\}\\,r\_\{s\}\.This identifies the corresponding minimum\-norm transport operator asMt←s=Θt,sΘs,s−1M\_\{t\\leftarrow s\}=\\Theta\_\{t,s\}\\,\\Theta\_\{s,s\}^\{\-1\}\.
Part \(b\)\.Under the local linearity assumption, the centred dropout deviations are:
tk=z\[k\]\(x1:t\)−z¯\(x1:t\)≈Jtδθk,sk=z\[k\]\(x~1:s\)−z¯\(x~1:s\)≈Jsδθk\.t\_\{k\}=z^\{\[k\]\}\(x\_\{1:t\}\)\-\\bar\{z\}\(x\_\{1:t\}\)\\;\\approx\\;J\_\{t\}\\,\\delta\\theta\_\{k\},\\qquad s\_\{k\}=z^\{\[k\]\}\(\\tilde\{x\}\_\{1:s\}\)\-\\bar\{z\}\(\\tilde\{x\}\_\{1:s\}\)\\;\\approx\\;J\_\{s\}\\,\\delta\\theta\_\{k\}\.The empirical cross\-covariance and self\-covariance concentrate around their population counterparts asK→∞K\\to\\infty:
Σt,s\\displaystyle\\Sigma\_\{t,s\}=1K−1∑k=1Ktksk⊤→𝑝JtΣθJs⊤=σ2Θt,s,\\displaystyle=\\frac\{1\}\{K\-1\}\\sum\_\{k=1\}^\{K\}t\_\{k\}\\,s\_\{k\}^\{\\top\}\\;\\xrightarrow\{\\;p\\;\}\\;J\_\{t\}\\,\\Sigma\_\{\\theta\}\\,J\_\{s\}^\{\\top\}\\;=\\;\\sigma^\{2\}\\,\\Theta\_\{t,s\},Σs,s\\displaystyle\\Sigma\_\{s,s\}=1K−1∑k=1Ksksk⊤→𝑝JsΣθJs⊤=σ2Θs,s\.\\displaystyle=\\frac\{1\}\{K\-1\}\\sum\_\{k=1\}^\{K\}s\_\{k\}\\,s\_\{k\}^\{\\top\}\\;\\xrightarrow\{\\;p\\;\}\\;J\_\{s\}\\,\\Sigma\_\{\\theta\}\\,J\_\{s\}^\{\\top\}\\;=\\;\\sigma^\{2\}\\,\\Theta\_\{s,s\}\.Substituting into the ridge\-regularized estimator:
M^t←s\\displaystyle\\widehat\{M\}\_\{t\\leftarrow s\}=Σt,s\(Σs,s\+λI\)−1\\displaystyle=\\Sigma\_\{t,s\}\\bigl\(\\Sigma\_\{s,s\}\+\\lambda I\\bigr\)^\{\-1\}→𝑝σ2Θt,s\(σ2Θs,s\+λI\)−1\\displaystyle\\xrightarrow\{\\;p\\;\}\\;\\sigma^\{2\}\\,\\Theta\_\{t,s\}\\bigl\(\\sigma^\{2\}\\,\\Theta\_\{s,s\}\+\\lambda I\\bigr\)^\{\-1\}=Θt,s\(Θs,s\+λσ2I\)−1\\displaystyle=\\Theta\_\{t,s\}\\bigl\(\\Theta\_\{s,s\}\+\\tfrac\{\\lambda\}\{\\sigma^\{2\}\}\\,I\\bigr\)^\{\-1\}=Θt,s\(Θs,s\+λ′I\)−1\.\\displaystyle=\\Theta\_\{t,s\}\\bigl\(\\Theta\_\{s,s\}\+\\lambda^\{\\prime\}I\\bigr\)^\{\-1\}\.For anyrsr\_\{s\}in the column span ofΘs,s\\Theta\_\{s,s\}, takingλ′→0\\lambda^\{\\prime\}\\to 0recoversΘt,sΘs,s−1rs=Mt←srs\\Theta\_\{t,s\}\\,\\Theta\_\{s,s\}^\{\-1\}r\_\{s\}=M\_\{t\\leftarrow s\}\\,r\_\{s\}\. ∎
## Appendix BLogits Update Implementation and Complexity Analysis
For a training sequence of lengthSS, we runKKstochastic forward passes \(with different dropout masks\) through the frozen model, obtaining logit vectors at each source positionss\. Following the notation in Sec\.[3\.1](https://arxiv.org/html/2608.11342#S3.SS1), we form the centered deviations
us\(k\)=z\[k\]\(x~1:s\)−z¯\(x~1:s\),u\_\{s\}^\{\(k\)\}=z^\{\[k\]\}\(\\tilde\{x\}\_\{1:s\}\)\-\\overline\{z\}\(\\tilde\{x\}\_\{1:s\}\),and collect them intoUs=\[us\(1\);…;us\(K\)\]∈ℝK×VU\_\{s\}=\[u\_\{s\}^\{\(1\)\};\\dots;u\_\{s\}^\{\(K\)\}\]\\in\\mathbb\{R\}^\{K\\times V\}\. The mean logitz¯s\\bar\{z\}\_\{s\}is used to initializezs\(0\)=z¯sz\_\{s\}^\{\(0\)\}=\\bar\{z\}\_\{s\}, with initial residual
rs\(0\)=ys−softmax\(zs\(0\)\)\.r\_\{s\}^\{\(0\)\}=y\_\{s\}\-\\mathrm\{softmax\}\(z\_\{s\}^\{\(0\)\}\)\.
Then at each stepj=0,1,…,R−1j=0,1,\\dots,R\-1:
1. 1\.Compute the transport\-weighted update direction\.For each source positionss, define the empirical self\-covariance Σs,s=1K−1Us⊤Us∈ℝV×V,\\Sigma\_\{s,s\}=\\frac\{1\}\{K\-1\}U\_\{s\}^\{\\top\}U\_\{s\}\\in\\mathbb\{R\}^\{V\\times V\},and the ridge\-regularized weight vector ws\(j\)=\(Σs,s\+λIV\)−1rs\(j\)∈ℝV\.w\_\{s\}^\{\(j\)\}=\\left\(\\Sigma\_\{s,s\}\+\\lambda I\_\{V\}\\right\)^\{\-1\}r\_\{s\}^\{\(j\)\}\\in\\mathbb\{R\}^\{V\}\.The matrixΣs,s\\Sigma\_\{s,s\}is not materialized in the implementation\. Instead,ws\(j\)w\_\{s\}^\{\(j\)\}is computed through the dual Gram matrix Gs=1K−1UsUs⊤∈ℝK×KG\_\{s\}=\\frac\{1\}\{K\-1\}U\_\{s\}U\_\{s\}^\{\\top\}\\in\\mathbb\{R\}^\{K\\times K\}using the Woodbury identity, as detailed below\. For the source\-to\-target interaction, the implementation uses a vocabulary\-coordinate\-wise approximation\. We aggregate the source\-side quantities into a shared coefficient matrixB\(j\)∈ℝK×VB^\{\(j\)\}\\in\\mathbb\{R\}^\{K\\times V\}: Bk,v\(j\)=1S∑s=1SUs\(k,v\)ws\(j\)\(v\)\.B\_\{k,v\}^\{\(j\)\}=\\frac\{1\}\{S\}\\sum\_\{s=1\}^\{S\}U\_\{s\}\(k,v\)\\,w\_\{s\}^\{\(j\)\}\(v\)\.This matrix summarizes the source\-side update associated with each dropout direction and vocabulary coordinate\.
2. 2\.Update source logits and refresh residuals\.The source logits are updated directly by the residual: zs\(j\+1\)=zs\(j\)\+ηrs\(j\),z\_\{s\}^\{\(j\+1\)\}=z\_\{s\}^\{\(j\)\}\+\\eta\\,r\_\{s\}^\{\(j\)\},and the residual is recomputed exactly from the updated logits: rs\(j\+1\)=ys−softmax\(zs\(j\+1\)\),r\_\{s\}^\{\(j\+1\)\}=y\_\{s\}\-\\mathrm\{softmax\}\(z\_\{s\}^\{\(j\+1\)\}\),as mentioned in Sec\.[3\.1](https://arxiv.org/html/2608.11342#S3.SS1)\.
During theRR\-step trajectory, the coefficient matricesB\(j\)B^\{\(j\)\}are computed\. In practice, we retainB\(j\)B^\{\(j\)\}every 20 steps to reduce memory and computation\.
##### Inference\.
At inference, for each generated token at positiontt, we runKKforward passes on the current prefix to obtain target tangentsT0=\[t1;…;tK\]∈ℝK×VT\_\{0\}=\[t\_\{1\};\\dots;t\_\{K\}\]\\in\\mathbb\{R\}^\{K\\times V\}\. Using the stored coefficient matrices, the accumulated logit shift from Sec\.[3\.1](https://arxiv.org/html/2608.11342#S3.SS1)is evaluated as
Δzt\(R\)=η∑j=0R−11K−1∑k=1Ktk⊙Bk\(j\)\.\\Delta z\_\{t\}^\{\(R\)\}=\\eta\\sum\_\{j=0\}^\{R\-1\}\\frac\{1\}\{K\-1\}\\sum\_\{k=1\}^\{K\}t\_\{k\}\\odot B\_\{k\}^\{\(j\)\}\.
##### Efficient computation and complexity\.
The full estimated operator motivating the implementation is
M^t←srs=Σt,s\(Σs,s\+λIV\)−1rs\.\\widehat\{M\}\_\{t\\leftarrow s\}r\_\{s\}=\\Sigma\_\{t,s\}\\left\(\\Sigma\_\{s,s\}\+\\lambda I\_\{V\}\\right\)^\{\-1\}r\_\{s\}\.Denote the ridge\-regularized source\-side vector by
ws=\(Σs,s\+λIV\)−1rs∈ℝV\.w\_\{s\}=\\left\(\\Sigma\_\{s,s\}\+\\lambda I\_\{V\}\\right\)^\{\-1\}r\_\{s\}\\in\\mathbb\{R\}^\{V\}\.The implementation retains the full ridge\-regularized self\-covariance action throughwsw\_\{s\}, while applying the cross\-prefix interaction coordinate\-wise as described above\. NeitherΣs,s\\Sigma\_\{s,s\}norΣt,s\\Sigma\_\{t,s\}is explicitly materialized\.
The bottleneck is computingwsw\_\{s\}: naively invertingΣs,s∈ℝV×V\\Sigma\_\{s,s\}\\in\\mathbb\{R\}^\{V\\times V\}costsO\(V3\)O\(V^\{3\}\), which is infeasible for large vocabularies\. Since
Σs,s=1K−1Us⊤Us,\\Sigma\_\{s,s\}=\\frac\{1\}\{K\-1\}U\_\{s\}^\{\\top\}U\_\{s\},the Woodbury matrix identity\([29](https://arxiv.org/html/2608.11342#bib.bib28)\)gives
ws=1λrs−1λ2\(K−1\)Us⊤\(IK\+1λ\(K−1\)UsUs⊤\)−1Usrs\.w\_\{s\}=\\frac\{1\}\{\\lambda\}r\_\{s\}\-\\frac\{1\}\{\\lambda^\{2\}\(K\-1\)\}U\_\{s\}^\{\\top\}\\left\(I\_\{K\}\+\\frac\{1\}\{\\lambda\(K\-1\)\}U\_\{s\}U\_\{s\}^\{\\top\}\\right\)^\{\-1\}U\_\{s\}r\_\{s\}\.This requires only solving a system involving theK×KK\\times Kmatrix
IK\+1λ\(K−1\)UsUs⊤I\_\{K\}\+\\frac\{1\}\{\\lambda\(K\-1\)\}U\_\{s\}U\_\{s\}^\{\\top\}at costO\(K3\)O\(K^\{3\}\), together with matrix\-vector products costingO\(K2V\)O\(K^\{2\}V\)per source position\. SinceK<SK<S, summing over allSSpositions givesO\(SK2V\)O\(SK^\{2\}V\)per step, which dominates the other operations \(aggregatingB\(j\)B^\{\(j\)\}:O\(SKV\)O\(SKV\); computing residuals:O\(SV\)O\(SV\)\)\. Therefore, the total offline cost overRRsteps is
g=O\(R⋅S⋅K2⋅V\)\.g=O\\\!\\left\(R\\cdot S\\cdot K^\{2\}\\cdot V\\right\)\.This cost involves no gradient computation; the model parameters remain frozen throughout\.
## Appendix CExperiment Details
### C\.1Dataset
Because the training cost of SFT is high, we did not perform SFT on all 1K\+ authors in each LaMP dataset\. Instead, for each dataset, we randomly selected 50 authors from the original test authors as the new test authors\. In addition, WFT does not use the original LaMP training data because it is training\-free\. We use 10 authors from the dev set to select hyperparameters\. SFT also does not use the original training data because our SFT is performed per author\. We use each test author’s historical data as the SFT training data, and do not require data from other authors in the original training set\. Prefix tuning, however, uses the original training data in LaMP to train the prefix network, since we hope that the patterns learned from the training authors can generalize to new authors and help achieve personalization\.
Here are training texts for different datasets:
Paper Title: ”Generate a title for the following abstract: \[ABSTRACT\]\. Title: \[TITLE\]”
News Headline: ”Generate a headline for the following article: \[ARTICLE\]\. Headline: \[HEADLINE\]”
Since the Twitter data only provides authors’ original tweets and does not include paraphrase ground truth, the training input consists of batches of writing excerpts only for each author\. The content in brackets above will be replaced with the actual author data\.
### C\.2Methods
#### C\.2\.1WFT
We runK=10K=10dropout\-perturbed forward passes per sequence\. The offline trajectory is computed forR=400R=400steps withη=5×10−3\\eta=5\\times 10^\{\-3\}and ridge regularizationλ=10−4\\lambda=10^\{\-4\}\. To reduce memory, the coefficient matricesB\(j\)B^\{\(j\)\}are stored every 20 steps rather than at every step\.η\\etaandλ\\lambdawere selected by grid search on a held\-out set of development authors\. Specifically, we searchedη∈\{10−4,5×10−4,10−3,5×10−3,10−2\}\\eta\\in\\\{10^\{\-4\},5\\times 10^\{\-4\},10^\{\-3\},5\\times 10^\{\-3\},10^\{\-2\}\\\},λ∈\{10−5,10−4,10−3\}\\lambda\\in\\\{10^\{\-5\},10^\{\-4\},10^\{\-3\}\\\}\.KKandRRwere fixed based on computational budget\.
#### C\.2\.2SFT
All SFT experiments fine\-tune the foundation models using LoRA\([9](https://arxiv.org/html/2608.11342#bib.bib29)\)with rankr=8r=8, scaling factorα=32\\alpha=32\. For the full experiments, the model is trained for 40 epochs on up to 50 author\-specific training sequences, with batch size 1 and gradient accumulation over 32 steps\. We use the AdamW optimizer with a learning rate of10−310^\{\-3\}\. The model is trained in bfloat16 precision\. The learning rate was selected by grid search on a held\-out set of development authors over\{10−5,10−4,10−3,10−2\}\\\{10^\{\-5\},10^\{\-4\},10^\{\-3\},10^\{\-2\}\\\}\.
#### C\.2\.3Prefix\-tuning
Following previous work\([20](https://arxiv.org/html/2608.11342#bib.bib4);[11](https://arxiv.org/html/2608.11342#bib.bib5)\), our prefix\-tuning method consists of two stages: a style encoder trained offline across a large volume of authors, and a prefix decoder that maps the style embedding to per\-layer key\-value prefix tensors injected at inference time\.
We train a style encoder on top of a frozen RoBERTa\-base\([21](https://arxiv.org/html/2608.11342#bib.bib30)\)model\. The encoder takes an author’s text segments as input, applies mean pooling over the last hidden states, and passes the result through a two\-layer projection head \(hidden dimension 512, output dimension 256, GELU activation\([7](https://arxiv.org/html/2608.11342#bib.bib31)\)\) withℓ2\\ell\_\{2\}normalization\. The encoder is trained with supervised contrastive loss\([13](https://arxiv.org/html/2608.11342#bib.bib32)\)at temperatureτ=0\.07\\tau=0\.07, using batches ofB=32B=32authors withK=4K=4segments each\. We use AdamW with learning rate10−410^\{\-4\}and weight decay0\.010\.01for 100 epochs\. The checkpoint with the best author retrieval recall@1 on a held\-out author set is selected\.
Then, a three\-layer MLP with Tanh activation maps the 256\-dimensional style embedding to key\-value prefix tensors of lengthLpL\_\{p\}for all attention layers of the frozen foundation models, shared across layers\. The prefix decoder is trained end\-to\-end on the generation objective with learning rate2×10−42\\times 10^\{\-4\}, using prefix lengthsLp=32L\_\{p\}=32\.
#### C\.2\.4In\-Context Prompting
We experimented with varying the number of excerpts \(up tok=20k=20per author\) and found that performance peaked with five excerpts\. We speculate that as the number of excerpts increases, they may not provide additional useful signals about the author’s style and may also exceed the input length that the model can effectively handle\. Following[2](https://arxiv.org/html/2608.11342#bib.bib2), these excerpts are concatenated into a prompt together with the task query and a system message instructing the model to imitate the author’s style\. Here is an example of an input prompt for the Twitter task:
> You are a careful literary style imitator\. Learn stylistic signals from the provided Author Excerpts \(lexicon, syntax, cadence, rhetoric, tone, macro\-structure\) and paraphrase the given tweet in that author’s voice\. Output the piece only\. Rules: \- Produce a single coherent piece matching the style suggested by the excerpts\. \- Do not quote any excerpt verbatim\. \- No prefaces, no analysis, no headings\-\-\-just the final prose\. Author Excerpts: H1: \[TEXT1\] H2: \[TEXT2\] ⋯\\cdots H5: \[TEXT5\] Paraphrase the following tweet: i deleted the app again\. we’ll see how long this lasts\. Output:
#### C\.2\.5CHAMELEON
CHAMELEON introduces two different approaches for latent space editing, consisting of individual and group alignment method\. In Table[1](https://arxiv.org/html/2608.11342#S5.T1), we compared CHAMELEON’s individual alignment method with WFT, since its group alignment method only introduces marginal performance lift on the validation and test datasets in LaMP\. In our experiment, we randomly sampled top\-20 history items for each user, built 8 synthetic responses for each condition: personalized prompts and non\-personalized prompts, and conducted latent space editing for all MLP layers within the base model\. Since the original CHAMELEON only provided the prompts for Twitter dataset which contains dataset\-specific key words such as ”the tweet”, we replaced the key words to support personalization for Paper and News dataset, preventing confusing the LLMs\. We evaluated the various configurations to derive the subspace directions for personalized and neutral responses, and recognized that the proposed configuration that employs SVD for personalized direction and CSS identification for neutral direction achieves the optimal performance\.
Generation of all methods mentioned above uses top\-ppsampling withp=0\.8p=0\.8, temperature0\.70\.7, and top\-k=20k=20\.Similar Articles
Federated Lightweight Fine-Tuning
This paper introduces FLITE (Federated Low-rank Iterative Training Engine), a method for federated fine-tuning that reduces per-client communication to 1,280 floats per round (about 5KB) — an 8718× reduction over full-weight FedAvg — by using a frozen affine mapping network that generates weights from a small trainable latent and a low-rank seed-regenerable factorization, achieving accuracy within 0.5 percentage points of full-weight FedAvg on CIFAR-100 with ResNet-18.
Dominant-Layer ZO: A Single Layer Dominates Zeroth-Order Fine-Tuning of LLMs
This paper reveals that zeroth-order fine-tuning of LLMs is dominated by a single decoding layer, which can be identified by activation outliers, and fine-tuning only that layer matches or exceeds full-model fine-tuning with up to 4.52x speedup.
Contrastive Decoding Diffing (CDD): recovering verbatim finetuning data from logits alone, no weight access needed[R]
This paper introduces Contrastive Decoding Diffing (CDD), a method that recovers verbatim finetuning data from LLMs using only logit access, without requiring model weights or activations. It demonstrates high verbatim recovery across multiple model families and reveals unintended data leakage, such as the recurring fictional persona 'Dr. Elena Rodriguez' from synthetic training data.
Learnability-Informed Fine-Tuning of Diffusion Language Models
We propose LIFT, a learnability-informed fine-tuning algorithm for diffusion language models that aligns training with token difficulty and time step, achieving substantial gains on reasoning benchmarks.
Fine-tuning Multi-modal LLMs with ART: Art-based Reinforcement Training
ART (Art-based Reinforcement Training) enables parameter-efficient fine-tuning of frozen multimodal LLMs by optimizing raw visual input via gradient backpropagation, achieving performance comparable to LoRA while supporting pre-compiled computational graphs for high-throughput engines like vLLM.