Jadwal Sholat

Memuat jadwal sholatโ€ฆ

Ilmu Komputer & AI editorial

Open AccessOA2026

Reasoning-Preserving Fine-Tuning of Post-RL LLMs with Null-Basis LoRA

A parameter-efficient adaptation method that constrains LoRA updates to the approximate null space of reasoning activations, preserving RL-acquired reasoning while matching standard LoRA adaptation performance.
Wenzhi Fang; Nicholas Tzou; Lazar Valkov; Srinivas Chappidiยท 2026ยท DOI 10.48550/arXiv.2609.25618

The core problem

Reinforcement learning (RL)-based post-training has become an effective approach for eliciting reasoning capabilities in large language models (LLMs). However, adapting post-RL models to new knowledge domains or behaviors through subsequent supervised fine-tuning (SFT) can severely overwrite these capabilities. Existing approaches mitigate such forgetting through experience replay, specialized initialization, or constrained optimization using gradient projection, but either provide limited preservation or incur substantial training overhead.

The paper by Wenzhi Fang, Nicholas Tzou, Lazar Valkov, and Srinivas Chappidi addresses this trade-off directly. Their analysis shows that reasoning activations concentrate in low-dimensional subspaces, leaving substantial null-space capacity for adaptation, and that the corresponding approximate null spaces can be reliably estimated from a modest number of examples. Motivated by these observations, they propose Null-Basis Low-Rank Adaptation (NB-LoRA), a parameter-efficient method for adapting post-RL LLMs while preserving their acquired reasoning ability. The central question is whether one can fine-tune a post-RL model on new tasks without e

Innovation

Extensive experiments across multiple RL-trained LLMs and diverse downstream tasks show that NB-LoRA matches standard LoRA in adaptation performance, maintains reasoning accuracy near pre-fine-tuning levels, and generalizes this preservation to held-out reasoning benchmarks.

The reported pattern is consistent across model families and task types: downstream task metrics under NB-LoRA are statistically comparable to those of standard LoRA, indicating that the null-space constraint does not sacrifice adaptation capacity. At the same time, reasoning accuracy remains close to the pre-fine-tuning baseline, whereas standard LoRA exhibits substantial degradation. The preservation effect also transfers to reasoning benchmarks that were not used during basis estimation, suggesting that the estimated null space captures a general property of the model's reasoning representations rather than overfitting to the estimation set. The authors emphasize that these gains are achieved without the training overhead associated with experience replay or gradient-projection constrained optimization.

Reinforcement learning (RL)-based post-training has become an effective approach for eliciting reasoning capabilities in large language models (LLMs). However, adapting post-RL models to new knowledge domains or behaviors through subsequent supervised fine-tuning (SFT) can severely overwrite these capabilities. Existing approaches mitigate such forgetting through experience replay, specialized initialization, or constrained optimization using gradient projection, but either provide limited preservation or incur substantial training overhead.
The paper by Wenzhi Fang, Nicholas Tzou, Lazar Valkov, and Srinivas Chappidi addresses this trade-off directly. Their analysis shows that reasoning activations concentrate in low-dimensional subspaces, leaving substantial null-space capacity for adaptation, and that the corresponding approximate null spaces can be reliably estimated from a modest number of examples. Motivated by these observations, they propose Null-Basis Low-Rank Adaptation (NB-LoRA), a parameter-efficient method for adapting post-RL LLMs while preserving their acquired reasoning ability. The central question is whether one can fine-tune a post-RL model on new tasks without erasing the reasoning circuits that RL post-training installed.

Why it matters

The core insight is geometric: reasoning activations concentrate in low-dimensional subspaces, leaving substantial null-space capacity for adaptation. If reasoning information lives in a low-dimensional subspace, then updates orthogonal to that subspace should not interfere with it. NB-LoRA operationalizes this by estimating an approximate null basis from a modest number of examples and reparameterizing LoRA updates through it.

This yields three practical advantages. First, preservation is enforced structurally throughout fine-tuning rather than through a penalty that must be tuned per step. Second, the fixed basis avoids the per-step cost of gradient projection, keeping training overhead close to standard LoRA. Third, because the basis is estimated once, the method is simple to integrate into existing LoRA pipelines.

Limitations follow from the approximation. The null space is approximate and estimated from a finite sample, so its quality depends on how representative those examples are of the reasoning behaviors to be preserved. If downstream fine-tuning requires updates that genuinely overlap with the reasoning subspace, the constraint may limit adaptation. The paper's results suggest this overlap is small in practice, but the boundary conditions remain an open question. Overall, NB-LoRA reframes reasoning preservation as a subspace-constraint problem and shows that a lightweight, fixed-basis reparameterization can retain RL-acquired reasoning while matching standard LoRA on new tasks.

Who should read this

CS practitioners and researchers

Opening member contentโ€ฆ