FuRA: Full-Rank Parameter-Efficient Fine-Tuning with Spectral Preconditioning
FuRA is a new fine-tuning method that keeps pretrained spectral structure while updating models efficiently. The paper says it beats full fine-tuning and QLoRA in several LLM and VLM tasks.
Intelligence analysis by GPT-5.4 Mini

The paper argues that both full fine-tuning and LoRA can disturb useful pretrained features because they ignore a model’s spectral structure. FuRA addresses this by freezing part of an SVD-based basis while training compact components, aiming to keep full-rank expressivity with LoRA-like efficiency.
A big AI model is like a giant machine full of parts that already know how to do useful things. When people train it on new tasks, they usually twist lots of parts, and that can break some of the good things it already knew.
FuRA tries a different trick. It keeps an important frame of the machine still and only changes the smaller pieces that matter most, like adjusting a bicycle seat instead of rebuilding the whole bike.
The paper says this helps the model learn new tasks better, use less memory, and work faster. It also says the same idea works even when the model is squeezed into a smaller, 4-bit version.
Analysis
What the paper claims
FuRA is presented as a full-rank, parameter-efficient fine-tuning method built around spectral preconditioning. The authors argue that standard full fine-tuning and methods like LoRA update weights without respecting the spectral structure learned during pretraining, which can let noisy gradients from small fine-tuning datasets disturb robust pretrained features.
How FuRA works
The core idea is to reparameterize each weight matrix with a full-rank singular value decomposition and then freeze one singular basis. According to the paper, that constrains updates to the pretrained column space and creates a preconditioned optimization scheme. On top of that insight, FuRA uses a block tensor-train factorization, written as W = LSR, where L is fixed to the pretrained block-wise SVD basis, while only the compact core R and block-wise singular values S are trained.
Claimed benefits
The authors say this design keeps full-rank update expressivity while also improving parameter, memory, and step-time efficiency to a level comparable with LoRA. In their reported results, FuRA outperforms full fine-tuning across multiple settings, including LLaMA-3-8B commonsense reasoning, reinforcement learning for mathematical reasoning, and visual instruction tuning for vision-language models. The paper also says the 4-bit quantized variant, QFuRA, beats QLoRA. The abstract includes a +1.37 gain on LLaMA-3-8B commonsense reasoning, but does not provide the full evaluation details in the snippet provided.
Key points
- The paper says ordinary fine-tuning can disturb pretrained spectral structure.
- FuRA freezes part of an SVD-based basis to keep updates in the pretrained column space.
- The method aims to combine full-rank expressivity with LoRA-like efficiency.
- Reported results include gains on LLM reasoning, RL math tasks, and VLM instruction tuning.
- The 4-bit QFuRA variant is reported to outperform QLoRA.



