TL;DR
Updating Large Language Models (LLMs) with new knowledge often compromises their reasoning abilities. PALoRA, a two-stage framework, uses Singular Value Fine-Tuning (SVF) to identify critical reasoning components and Low-Rank Adaptation (LoRA) to inject new knowledge without disrupting these components.
✦ Why It Matters
Engineers can leverage PALoRA to efficiently update LLMs while preserving critical reasoning skills.
Key Takeaways
How It Works
PALoRA operates in two stages. First, it trains a Singular Value Fine-Tuning (SVF) expert on a reasoning dataset, which helps identify the singular scaling vector that represents critical reasoning components.
In the second stage, it uses Low-Rank Adaptation (LoRA) to inject new factual knowledge while ensuring that updates do not interfere with the identified reasoning subspace, thus preserving the model's reasoning capabilities.
Related