ReCoLoRA: Spectrum-Aware Recursive Consolidation for Continual LLM Fine-Tuning

· Source: cs.AI updates on arXiv.org · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Software Development & Engineering · Depth: Expert, extended

Summary

ReCoLoRA (Recursive Consolidation of Low-Rank Adapters) is a new spectrum-aware framework designed for continual fine-tuning of Large Language Models using Parameter-Efficient Fine-Tuning (PEFT). It initializes adapters from a randomized Singular Value Decomposition (SVD) of the pretrained weight and selects per-layer effective ranks via an elbow criterion. The method employs a two-stage training process, adapting the principal subspace before gradually introducing residual capacity. Crucially, ReCoLoRA uses "recursive consolidation," where before each new task, it re-decomposes the current effective weight into a frozen residual, a slowly updated principal component, and a fresh adapter, integrating prior task knowledge. Evaluated on a six-task continual GLUE sequence across Qwen3-8B, Llama-3.1-8B-Instruct, Mistral-7B-v0.3, and InternLM2.5-7B-Chat, ReCoLoRA achieved the best final average score on three of the four backbones with fewer trainable parameters than strong baselines. An oracle-routed ReCoLoRA-TaskBank variant demonstrated 0.8957±0.0026 final average score and 0.0000±0.0000 average forgetting on Qwen3-8B.

Key takeaway

For Machine Learning Engineers deploying LLMs in dynamic environments requiring continual adaptation, ReCoLoRA offers a promising solution to mitigate catastrophic forgetting. Its spectrum-aware initialization and recursive consolidation mechanism, which folds prior task knowledge into an evolving model, outperforms many standard PEFT baselines on diverse 7-8B backbones. You should consider implementing ReCoLoRA for sequential task fine-tuning, but be mindful of its observed backbone sensitivity and the potential need for specific hyperparameter tuning for optimal performance.

Key insights

Spectrum-aware adaptation and recursive consolidation mitigate catastrophic forgetting in continual LLM fine-tuning by integrating prior knowledge.

Principles

Method

ReCoLoRA initializes adapters via randomized SVD, selects per-layer ranks with an elbow criterion, and trains in two stages. Recursive consolidation re-decomposes the current effective weight before each new task.

In practice

Topics

Code references

Best for: Research Scientist, AI Engineer, AI Scientist, Machine Learning Engineer, NLP Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by cs.AI updates on arXiv.org.