NeFut Logo NeFut
Admin Login

[CS.AI] ReCoLoRA: Spectrum-Aware Recursive Consolidation for Continual LLM Fine-Tuning

Published at: 2026-07-11 22:00 Last updated: 2026-07-13 08:39
#AI #Machine Learning #optimization

Abstract

Parameter-efficient fine-tuning adapts a large language model to one task cheaply, but across a task sequence LoRA-style methods keep stacking low-rank updates on the same frozen weight, so each new task tends to overwrite the previous ones.

We present ReCoLoRA (Recursive Consolidation of Low-Rank Adapters), a spectrum-aware framework for continual fine-tuning: adapters are initialized from a randomized SVD of the pretrained weight, per-layer effective ranks are selected by an elbow criterion, and the principal subspace is adapted before residual capacity is opened.

Before each new task, ReCoLoRA re-decomposes the current effective weight, rather than the original one, into a frozen residual, a slowly updated principal component, and a fresh adapter (recursive consolidation), so every task starts from the model that has already absorbed its predecessors.

Results

On a six-task continual GLUE sequence over four 7-8B backbones, ReCoLoRA attains the best final average score on three of the four backbones against rank-swept LoRA, PiSSA, AdaLoRA, and DoRA baselines while training fewer parameters; an oracle-routed task-bank variant serves as an upper bound under full task isolation.

Code

ReCoLoRA GitHub

Blogger's Review: ReCoLoRA significantly enhances performance in continual learning by recursively consolidating effective weights, addressing the task interference issue common in traditional methods. This innovative spectrum-aware approach offers new insights for fine-tuning large language models, warranting further research and application.

Original Source: https://arxiv.org/abs/2607.07719

[h] Back to Home