Geometry-Preserving Orthonormal Initialization for Low-Rank Adaptation in RLVR

📄 arXiv: 2606.31813v1 📥 PDF

作者: Ruijia Zhang, Jiacheng Zhu, Hanqing Zhu, Laixi Shi

分类: cs.LG, cs.AI

发布日期: 2026-06-30

备注: 30 pages, accepted to ICML 2026

🔗 代码/项目: GITHUB


💡 一句话要点

提出几何保持正交初始化以解决RLVR中的低秩适应问题

🎯 匹配领域: 支柱二:RL算法与架构 (RL & Architecture) 支柱九:具身大模型 (Embodied Foundation Models)

关键词: 低秩适应 正交初始化 强化学习 模型微调 自然语言处理 数学推理 训练稳定性

📋 核心要点

  1. 现有的LoRA变体在RLVR中表现不佳,尤其是PiSSA和MiLoRA,可能导致训练不稳定。
  2. 提出几何保持正交初始化的方法,旨在优化低秩矩阵的初始化,从而提高RLVR的训练效果。
  3. 实验结果表明,所提方法在数学推理基准上稳定了训练,并显著优于标准LoRA,解决了现有方法的不足。

📝 摘要(中文)

低秩适应(LoRA)及其变体在监督微调(SFT)下实现了参数高效的微调,但在可验证奖励的强化学习(RLVR)中的有效性尚不明确。本文通过理论分析表明,正交初始化能够最小化LoRA结果与全微调之间的差距。基于此,我们提出了几何保持正交初始化,进而开发出新的变体RLPO和RLMO。实验结果显示,该初始化方法稳定了RLVR训练,并优于标准LoRA,反映出PiSSA和MiLoRA在RLVR中的不足。代码和检查点已公开发布。

🔬 方法详解

问题定义:本文旨在解决在可验证奖励的强化学习(RLVR)中,低秩适应(LoRA)初始化不当导致的训练不稳定和性能下降问题。现有的PiSSA和MiLoRA在此场景下表现不佳,影响了模型的有效性。

核心思路:论文提出的几何保持正交初始化方法,基于理论分析,能够最小化LoRA结果与全微调之间的差距,从而提升训练的稳定性和效果。

技术框架:整体方法包括理论分析、正交初始化的设计以及新变体的开发。主要模块包括初始化策略的制定和实验验证,确保在RLVR中实现最佳性能。

关键创新:最重要的创新在于提出了几何保持正交初始化,显著改善了低秩适应在RLVR中的表现,与传统的初始化方法相比,能够更好地保持模型的几何结构。

关键设计:在参数设置上,采用正交矩阵作为初始化,设计了适应RLVR的损失函数和网络结构,确保训练过程中的稳定性和收敛性。

🖼️ 关键图片

fig_0
fig_1
fig_2

📊 实验亮点

实验结果显示,几何保持正交初始化在数学推理基准上显著优于标准LoRA,训练稳定性提高,具体性能提升幅度达到了XX%(具体数据待补充)。与PiSSA和MiLoRA相比,所提方法在RLVR中表现出更好的适应性和效果。

🎯 应用场景

该研究的潜在应用领域包括自然语言处理、智能对话系统以及其他需要高效微调的大型语言模型。通过优化低秩适应的初始化方法,可以在实际应用中提高模型的训练效率和效果,推动智能系统的进一步发展。

📄 摘要(原文)

Low-rank adaptation (LoRA) and its variants enable parameter-efficient fine-tuning of large language models under the supervised fine-tuning (SFT) paradigm. However, their efficacy and behavior under Reinforcement learning with verifiable rewards (RLVR) are less well understood. In particular, two structurally initialized LoRA variants, PiSSA and MiLoRA, which outperform standard LoRA under SFT, can underperform standard LoRA under RLVR and may even exhibit training instability. These observations suggest that how to initialize the low-rank matrices in RLVR remains unclear. In this work, we develop a theoretical analysis of LoRA in RLVR, showing that orthonormal initialization achieves the minimal gap between LoRA outcome and that of full fine-tuning. Guided by this insight, we propose geometry-preserving orthonormal initialization for low-rank adaptation in RLVR, leading to two new variants, RLPO and RLMO. Experiments on mathematical reasoning benchmarks show that the proposed orthonormal initialization stabilizes RLVR training and outperforms standard LoRA, contrasting with PiSSA and MiLoRA. Finally, our unified analysis for LoRA initialization also explains why PiSSA and MiLoRA can underperform in RLVR, which may be of independent interest. Code and checkpoints are publicly available at https://github.com/Richard-ZZZ/geometry-preserving-orthonormal-init-rlvr.