SYNTHESIS NOTE
TopicsReinforcement Learningthis note

Does reinforcement learning update only a small fraction of parameters?

Investigating whether RL algorithms consistently modify only 5–30% of model parameters across different LLMs and RL methods, and what structural properties those sparse updates possess.

Synthesis note · 2026-02-22 · sourced from Reinforcement Learning
How should we spend compute at inference time?

The surprising finding is not that RL changes models — it's how little it changes them. Across PPO, GRPO, DPO, and four other algorithms applied to ten different LLM families, RL consistently updates only 5-30% of parameters. The rest remain effectively unchanged. This sparsity is intrinsic — no explicit sparsity-promoting regularizations or architectural constraints are applied.

The critical nuance is that these sparse updates are nearly full-rank. This is not low-rank adaptation (as in LoRA). The updated parameters span almost the full subspace that the parameter matrices can represent. So RL selects a small subset of parameters, but that subset is geometrically rich enough to represent complex transformations. The distinction matters: low-rank would mean RL operates in a constrained subspace; sparse-but-full-rank means RL identifies which parameters matter while preserving full expressivity.

Three additional properties make this pattern robust. First, subnetworks identified from different random seeds show substantially greater overlap than chance, suggesting the subnetwork is a structural property of the pretrained model, not an artifact of training. Second, finetuning the subnetwork alone recovers both the test accuracy and the actual parameter values of full finetuning. Third, the sparsity is distributed — nearly all parameter matrices receive similarly sparse updates rather than concentrating in a subset of layers.

The authors conjecture this sparsity arises primarily from training on data near the policy distribution. Since Does RL improve domain reasoning by adding knowledge or removing it?, the sparse-but-full-rank pattern provides a mechanistic explanation: RL doesn't need to transform the entire model because most of the model is already adequate. It just needs to adjust a targeted subset — the parameters that control which reasoning paths are taken.

This has implications for efficient RL training. If the effective parameter footprint is 5-30%, techniques that exploit this sparsity (targeted updates, efficient memory use) could dramatically reduce RL training cost without sacrificing quality.

Token-level 80/20 parallel: The parameter-level sparsity has a striking token-level analog. The "Beyond 80/20" analysis of RLVR shows that high-entropy minority tokens — the ~20% of tokens where the model is most uncertain — are the critical forking points that carry most of the learning signal. Restricting gradient updates to only these 20% of tokens matches or exceeds full-token updates (+11.04 on AIME'25 for Qwen3-32B). The remaining 80% of tokens are low-entropy, already-decided outputs where gradient updates add noise rather than signal. This creates a dual sparsity picture: RL updates 5-30% of parameters, and the effective signal comes from ~20% of tokens. Both forms of sparsity are intrinsic — not imposed by regularization — and both suggest RL is fundamentally a targeted refinement process rather than a wholesale model transformation. See Do high-entropy tokens drive reasoning model improvements?.

The same sparse-update structure appears in SFT. Core Parameter Isolation Fine-Tuning (CPI-FT) identifies task-specific "core parameter regions" — the parameters with largest update magnitudes during individual task fine-tuning — and shows that these regions are concentrated and task-specific. CPI-FT exploits this by transplanting core parameters from individually fine-tuned models and SLERP-merging non-core parameters, consistently outperforming full multi-task SFT. The key finding: full multi-task SFT (uniform parameter updates across all tasks) is consistently the worst performer — temporal task scheduling alone is insufficient without explicit structural parameter isolation. This extends the RL sparsity finding to supervised fine-tuning: task-relevant changes naturally concentrate in specific parameter regions regardless of whether the training signal is reward-based or loss-based. See Can isolating task-specific parameters prevent multi-task fine-tuning interference?.

Inquiring lines that read this note 96

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

What capability tradeoffs emerge when scaling model reasoning abilities? What pretraining choices and baseline capability constrain reinforcement learning gains? What constrains reinforcement learning's ability to expand model reasoning? How does memorization interact with learning and generalization? What critical LLM failures do standard benchmarks hide? Can alternative training methods improve on supervised fine-tuning for language models? Why do self-improving systems struggle without clear external performance metrics? How do self-generated feedback mechanisms enable effective model learning? How does AI adoption affect human skill development and labor equality? Why do continual learning scenarios trigger catastrophic forgetting and interference? What determines success in training models on multiple tasks? Does reinforcement learning teach reasoning or just when to reason? How does policy entropy collapse constrain reasoning-focused reinforcement learning? How do we evaluate AI systems when user perception misleads actual performance? How does example difficulty affect learning efficiency in language models? Why does finetuning cause catastrophic forgetting of model capabilities? What memory architectures best support persistent reasoning across extended interactions? How should iterative research systems allocate reasoning per search step? Can model confidence signals reliably improve reasoning quality and calibration? How can identical external performance mask different internal representations? What structural advantages do diffusion language models offer over autoregressive methods? Why does supervised fine-tuning improve accuracy while degrading reasoning quality? How can conversational AI maintain consistent personas across conversations? Does fine-tuning modify underlying model capabilities or only behavioral outputs? How do multi-agent systems achieve genuine cooperation and reasoning? Do base models contain latent reasoning that training can unlock? Why does reinforcement learning suppress output diversity compared to supervised fine-tuning? How do policy learning algorithm choices affect multi-objective optimization stability? Can language model RL training avoid reward hacking and misalignment? Do harness improvements transfer across model scales or memorize shortcuts? How can models identify insufficient information and respond appropriately without guessing? Which computational strategies best support reasoning in language models? What are the consequences of models training on synthetic data?

Related concepts in this collection 7

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
19 direct connections · 173 in 2-hop network ·dense cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

rl updates only 5-30 percent of parameters in sparse but full-rank subnetworks