pith. sign in

arxiv: 2606.31813 · v1 · pith:C2KZQPHTnew · submitted 2026-06-30 · 💻 cs.LG · cs.AI

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

Pith reviewed 2026-07-01 06:42 UTC · model grok-4.3

classification 💻 cs.LG cs.AI
keywords LoRARLVROrthonormal InitializationLow-Rank AdaptationReinforcement LearningMathematical ReasoningParameter-Efficient Fine-TuningTraining Stability
0
0 comments X

The pith

Orthonormal initialization of LoRA matrices minimizes their gap to full fine-tuning outcomes under RLVR.

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The paper shows that in reinforcement learning with verifiable rewards, common structured initializations for low-rank adaptation can destabilize training or reduce final performance, unlike their success under supervised fine-tuning. A theoretical analysis identifies orthonormal initialization as the choice that produces the smallest difference between the adapted model and one obtained by updating all parameters. This leads to two new initialization schemes that keep the low-rank updates geometrically aligned with full updates. Experiments on mathematical reasoning tasks confirm that the approach stabilizes RLVR and improves results over standard LoRA while also accounting for the observed shortcomings of prior structured methods.

Core claim

Orthonormal initialization achieves the minimal gap between the outcome of low-rank adaptation and that of full fine-tuning in the RLVR setting; new variants built on this principle stabilize training and raise accuracy on mathematical reasoning benchmarks, while the same analysis accounts for why PiSSA and MiLoRA can degrade under RLVR.

What carries the argument

Geometry-preserving orthonormal initialization of the low-rank update matrices, which keeps their column and row spaces aligned so that the adaptation stays closest to a full-parameter update.

If this is right

  • RLVR runs using LoRA become more stable when the low-rank matrices start with orthonormal bases.
  • Performance on mathematical reasoning tasks improves relative to random or SVD-based initializations.
  • The same geometric analysis explains the training failures of PiSSA and MiLoRA specifically under RLVR dynamics.
  • A single initialization principle now covers both SFT and RLVR regimes for low-rank adaptation.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The same orthonormal principle could be tested in other reinforcement-learning fine-tuning settings that use verifiable but non-mathematical rewards.
  • If the gap metric proves predictive, it could serve as a cheap diagnostic before running full RLVR training.
  • The analysis may extend to other parameter-efficient methods whose updates are constrained to low-dimensional subspaces.

Load-bearing premise

The difference between LoRA and full fine-tuning is the main factor that determines whether RLVR training stays stable and reaches high performance.

What would settle it

Measure the parameter-space or output-space distance between a LoRA model trained with orthonormal initialization and the corresponding full fine-tuned model on the same RLVR run; check whether this distance is smaller than for standard or PiSSA-style initialization and whether the smaller distance predicts higher final benchmark scores.

Figures

Figures reproduced from arXiv: 2606.31813 by Hanqing Zhu, Jiacheng Zhu, Laixi Shi, Ruijia Zhang.

Figure 1
Figure 1. Figure 1: Comparison of LoRA initialization strategies. LoRA uses random Gaussian [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. Figure 2: Training dynamics of RLVR via DAPO on benchmark DAPO-MATH. Left: Training reward [PITH_FULL_IMAGE:figures/full_fig_p006_2.png] view at source ↗
Figure 3
Figure 3. Figure 3: SVD-aligned update distribution and cumulative energy after RLVR training. For each method, we analyze the trained LoRA update ∆W = α r BA on the query projection and attention output projection matrices from Transformer layers 0, 14, and 27 of the 28-layer model, where each projection weight has size W ∈ R 1536×1536. Given the singular value decomposition of the frozen pretrained weight W = UΣV ⊤, we meas… view at source ↗
Figure 4
Figure 4. Figure 4: Ablation on learning-rate decay for PiSSA and MiLoRA under RLVR training. The left panel compares PiSSA with a constant learning rate and a cosine-decaying schedule, together with the LoRA constant-learning-rate baseline; the right panel shows the analogous comparison for MiLoRA. Both methods benefit from slower optimization, confirming that enlarged effective updates are a primary source of instability in… view at source ↗
Figure 5
Figure 5. Figure 5: Singular value scaling exacerbates instability beyond subspace selection. We compare constant-learning-rate DAPO training dynamics for LoRA, PiSSA, OLoRA, MiLoRA, and OLoRA-tail. The first column compares methods associated with the top singular subspace (LoRA, PiSSA, and OLoRA), while the second column compares methods associated with the bottom singular subspace (LoRA, MiLoRA, and OLoRA-tail). The first … view at source ↗
Figure 6
Figure 6. Figure 6: KL divergence during training for different initialization methods. PiSSA shows the highest KL [PITH_FULL_IMAGE:figures/full_fig_p012_6.png] view at source ↗
Figure 7
Figure 7. Figure 7: Subspace similarity between learned adapters and singular vectors of pretrained weights [PITH_FULL_IMAGE:figures/full_fig_p013_7.png] view at source ↗
Figure 8
Figure 8. Figure 8: Left: Performance comparison of orthonormal LoRA variants with standard LoRA. Right: Average [PITH_FULL_IMAGE:figures/full_fig_p014_8.png] view at source ↗
Figure 9
Figure 9. Figure 9: Mean singular values of MLP projection weights in DeepSeek-R1-Distill-Qwen-1.5B (28 layers total) [PITH_FULL_IMAGE:figures/full_fig_p027_9.png] view at source ↗
Figure 10
Figure 10. Figure 10: Learning rate sensitivity comparison. LoRA-RLPO and LoRA-RLMO consistently outperform standard LoRA across learning rates, with peak performance at 10−5 . SVD initialization preprocessing cost [PITH_FULL_IMAGE:figures/full_fig_p029_10.png] view at source ↗
Figure 11
Figure 11. Figure 11: Train loss curves across three SFT tasks (3 seeds, shaded region denotes [PITH_FULL_IMAGE:figures/full_fig_p030_11.png] view at source ↗
read the original abstract

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.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

2 major / 2 minor

Summary. The paper develops a theoretical analysis of LoRA under RLVR showing that orthonormal initialization minimizes the gap to full fine-tuning outcomes. Guided by this, it proposes RLPO and RLMO variants using geometry-preserving orthonormal initialization. Experiments on mathematical reasoning benchmarks demonstrate that these stabilize RLVR training and outperform standard LoRA (in contrast to PiSSA and MiLoRA), while the unified analysis explains the underperformance of the latter two under RLVR. Code and checkpoints are released publicly.

Significance. If the central result holds, the work supplies a principled initialization strategy for parameter-efficient RL fine-tuning of LLMs, addressing a practical gap between SFT and RLVR behavior. The public code release and the unified explanatory analysis for multiple initializations are explicit strengths that aid reproducibility and broader utility.

major comments (2)
  1. [§4] §4 (theoretical analysis): the derivation establishes that orthonormal initialization minimizes the LoRA–full-fine-tuning gap, yet the manuscript does not state the regime (e.g., reward variance, policy-update scale, or LoRA rank relative to gradient noise) under which this gap is the dominant factor controlling RLVR stability and performance. This assumption is load-bearing for interpreting both the theoretical claim and the experimental superiority.
  2. [§5] §5 (experiments): the comparisons of RLPO/RLMO against PiSSA/MiLoRA show stability and performance gains, but no ablation isolates whether the gains arise from the minimized gap versus secondary geometric properties preserved by the initialization; without this isolation the causal link to the theoretical result remains untested.
minor comments (2)
  1. [Abstract] Notation for the gap quantity is introduced without an explicit equation reference in the abstract; adding a parenthetical pointer to the defining equation would improve readability.
  2. [Figures] Figure captions for the training curves could explicitly label the y-axis quantity (e.g., reward or KL divergence) to avoid ambiguity when comparing stability across methods.

Simulated Author's Rebuttal

2 responses · 0 unresolved

We thank the referee for the constructive and detailed feedback. We address each major comment below and will revise the manuscript to incorporate clarifications and additional experiments where appropriate.

read point-by-point responses
  1. Referee: [§4] §4 (theoretical analysis): the derivation establishes that orthonormal initialization minimizes the LoRA–full-fine-tuning gap, yet the manuscript does not state the regime (e.g., reward variance, policy-update scale, or LoRA rank relative to gradient noise) under which this gap is the dominant factor controlling RLVR stability and performance. This assumption is load-bearing for interpreting both the theoretical claim and the experimental superiority.

    Authors: We agree that explicitly delineating the operating regime is necessary for a complete interpretation. The derivation assumes moderate reward variance and policy updates that remain small relative to gradient noise, ensuring the initialization gap is the primary source of deviation from full fine-tuning. In the revised manuscript we will add a paragraph in §4 stating these conditions and their connection to the RLVR objective. revision: yes

  2. Referee: [§5] §5 (experiments): the comparisons of RLPO/RLMO against PiSSA/MiLoRA show stability and performance gains, but no ablation isolates whether the gains arise from the minimized gap versus secondary geometric properties preserved by the initialization; without this isolation the causal link to the theoretical result remains untested.

    Authors: The referee correctly identifies the absence of an isolating ablation. Although the unified analysis in §4 already attributes performance differences to gap minimization and explains the underperformance of PiSSA/MiLoRA, an explicit ablation would strengthen the causal claim. We will add such an ablation in the revision, comparing against a controlled initialization that retains secondary geometric properties but does not minimize the gap. revision: yes

Circularity Check

0 steps flagged

Theoretical analysis of minimal LoRA-full gap under orthonormal init is self-contained

full rationale

The paper's central result is a theoretical analysis deriving that orthonormal initialization minimizes the gap between LoRA and full fine-tuning outcomes in RLVR. No equations, self-citations, or fitted quantities are shown in the provided text that would make this gap-minimization property equivalent to its inputs by construction. The derivation is presented as independent first-principles work on LoRA dynamics, with experiments serving as validation rather than the source of the claim. This matches the default expectation of no significant circularity for a paper whose core contribution is a stated theoretical property rather than a renamed fit or self-referential definition.

Axiom & Free-Parameter Ledger

0 free parameters · 0 axioms · 0 invented entities

No information on free parameters, axioms, or invented entities is supplied in the abstract.

pith-pipeline@v0.9.1-grok · 5778 in / 1057 out tokens · 42454 ms · 2026-07-01T06:42:52.781170+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

77 extracted references · 11 canonical work pages · 7 internal anchors

  1. [1]

    , author=

    Lora: Low-rank adaptation of large language models. , author=. Iclr , volume=

  2. [2]

    Advances in Neural Information Processing Systems , volume=

    Pissa: Principal singular values and singular vectors adaptation of large language models , author=. Advances in Neural Information Processing Systems , volume=

  3. [3]

    Pan and Zhangyang Wang and Yuandong Tian and Kai Sheng Tai , year=

    Hanqing Zhu and Zhenyu Zhang and Hanxian Huang and DiJia Su and Zechun Liu and Jiawei Zhao and Igor Fedorov and Hamed Pirsiavash and Zhizhou Sha and Jinwon Lee and David Z. Pan and Zhangyang Wang and Yuandong Tian and Kai Sheng Tai , year=. The Path Not Taken:. 2511.08567 , archivePrefix=

  4. [4]

    Mathematics of the USSR-Sbornik , volume=

    Distribution of eigenvalues for some sets of random matrices , author=. Mathematics of the USSR-Sbornik , volume=. 1967 , publisher=

  5. [5]

    Language Models are Few-Shot Learners , url =

    Brown, Tom and Mann, Benjamin and Ryder, Nick and Subbiah, Melanie and Kaplan, Jared D and Dhariwal, Prafulla and Neelakantan, Arvind and Shyam, Pranav and Sastry, Girish and Askell, Amanda and Agarwal, Sandhini and Herbert-Voss, Ariel and Krueger, Gretchen and Henighan, Tom and Child, Rewon and Ramesh, Aditya and Ziegler, Daniel and Wu, Jeffrey and Winte...

  6. [6]

    Advances in neural information processing systems , volume=

    Training language models to follow instructions with human feedback , author=. Advances in neural information processing systems , volume=

  7. [7]

    2023 , eprint=

    LLaMA: Open and Efficient Foundation Language Models , author=. 2023 , eprint=

  8. [8]

    DeepSeek-R1 incentivizes reasoning in LLMs through reinforcement learning

    Guo, Daya and Yang, Dejian and Zhang, Haowei and Song, Junxiao and Wang, Peiyi and others , year=. DeepSeek-R1 incentivizes reasoning in LLMs through reinforcement learning , volume=. Nature , publisher=. doi:10.1038/s41586-025-09422-z , number=

  9. [9]

    2023 , eprint=

    Mistral 7B , author=. 2023 , eprint=

  10. [10]

    Training a Helpful and Harmless Assistant with Reinforcement Learning from Human Feedback

    Training a helpful and harmless assistant with reinforcement learning from human feedback , author=. arXiv preprint arXiv:2204.05862 , year=

  11. [11]

    International conference on machine learning , pages=

    Parameter-efficient transfer learning for NLP , author=. International conference on machine learning , pages=. 2019 , organization=

  12. [12]

    Proceedings of the 2021 conference on empirical methods in natural language processing , pages=

    The power of scale for parameter-efficient prompt tuning , author=. Proceedings of the 2021 conference on empirical methods in natural language processing , pages=

  13. [13]

    Towards a unified view of parameter-efficient transfer learning

    Towards a unified view of parameter-efficient transfer learning , author=. arXiv preprint arXiv:2110.04366 , year=

  14. [14]

    2025 , eprint=

    LIFT the Veil for the Truth: Principal Weights Emerge after Rank Reduction for Reasoning-Focused Supervised Fine-Tuning , author=. 2025 , eprint=

  15. [15]

    International Conference on Learning Representations , volume=

    Vera: Vector-based random matrix adaptation , author=. International Conference on Learning Representations , volume=

  16. [16]

    IEEE transactions on Computers , volume=

    Discrete cosine transform , author=. IEEE transactions on Computers , volume=. 2006 , publisher=

  17. [17]

    1999 , publisher=

    A wavelet tour of signal processing , author=. 1999 , publisher=

  18. [18]

    2026 , eprint=

    The Invisible Leash: Why RLVR May or May Not Escape Its Origin , author=. 2026 , eprint=

  19. [19]

    2023 , eprint=

    BloombergGPT: A Large Language Model for Finance , author=. 2023 , eprint=

  20. [20]

    2024 , eprint=

    OLoRA: Orthonormal Low-Rank Adaptation of Large Language Models , author=. 2024 , eprint=

  21. [21]

    International Conference on Learning Representations , volume=

    Parameter-efficient orthogonal finetuning via butterfly factorization , author=. International Conference on Learning Representations , volume=

  22. [22]

    International Conference on Learning Representations , volume=

    Flashattention-2: Faster attention with better parallelism and work partitioning , author=. International Conference on Learning Representations , volume=

  23. [23]

    Proceedings of the 29th symposium on operating systems principles , pages=

    Efficient memory management for large language model serving with pagedattention , author=. Proceedings of the 29th symposium on operating systems principles , pages=

  24. [24]

    Yu, Qiying and Zhang, Zheng and Zhu, Ruofei and Yuan, Yufeng and Zuo, Xiaochen and Yue, Yu and Dai, Weinan and Fan, Tiantian and Liu, Gaohong and Liu, Lingjun and others , journal=

  25. [25]

    Proceedings of the Twentieth European Conference on Computer Systems , pages=

    Hybridflow: A flexible and efficient rlhf framework , author=. Proceedings of the Twentieth European Conference on Computer Systems , pages=

  26. [26]

    2023 , eprint=

    Efficient RLHF: Reducing the Memory Usage of PPO , author=. 2023 , eprint=

  27. [27]

    Advances in Neural Information Processing Systems , volume=

    Controlling text-to-image diffusion by orthogonal finetuning , author=. Advances in Neural Information Processing Systems , volume=

  28. [28]

    2024 , eprint=

    Understanding and Alleviating Memory Consumption in RLHF for LLMs , author=. 2024 , eprint=

  29. [29]

    2025 , eprint=

    FinGPT: Open-Source Financial Large Language Models , author=. 2025 , eprint=

  30. [30]

    2023 , eprint=

    MEDITRON-70B: Scaling Medical Pretraining for Large Language Models , author=. 2023 , eprint=

  31. [31]

    Nature , volume=

    Large language models encode clinical knowledge , author=. Nature , volume=. 2023 , publisher=

  32. [32]

    2024 , eprint=

    Code Llama: Open Foundation Models for Code , author=. 2024 , eprint=

  33. [33]

    International Conference on Learning Representations , volume=

    Wizardcoder: Empowering code large language models with evol-instruct , author=. International Conference on Learning Representations , volume=

  34. [34]

    2024 , eprint=

    Llemma: An Open Language Model For Mathematics , author=. 2024 , eprint=

  35. [35]

    2025 , eprint=

    WizardMath: Empowering Mathematical Reasoning for Large Language Models via Reinforced Evol-Instruct , author=. 2025 , eprint=

  36. [36]

    Advances in neural information processing systems , volume=

    Qlora: Efficient finetuning of quantized llms , author=. Advances in neural information processing systems , volume=

  37. [37]

    SFT Memorizes, RL Generalizes: A Comparative Study of Foundation Model Post-training

    Sft memorizes, rl generalizes: A comparative study of foundation model post-training , author=. arXiv preprint arXiv:2501.17161 , year=

  38. [38]

    2011 , eprint=

    A Reduction of Imitation Learning and Structured Prediction to No-Regret Online Learning , author=. 2011 , eprint=

  39. [39]

    2025 , eprint=

    RL's Razor: Why Online Reinforcement Learning Forgets Less , author=. 2025 , eprint=

  40. [40]

    2017 , eprint=

    Proximal Policy Optimization Algorithms , author=. 2017 , eprint=

  41. [41]

    2024 , editor =

    Hayou, Soufiane and Ghosh, Nikhil and Yu, Bin , booktitle =. 2024 , editor =

  42. [42]

    Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers) , pages=

    Bitfit: Simple parameter-efficient fine-tuning for transformer-based masked language-models , author=. Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers) , pages=

  43. [43]

    2023 , eprint=

    A Rank Stabilization Scaling Factor for Fine-Tuning with LoRA , author=. 2023 , eprint=

  44. [44]

    2024 , eprint=

    Parameter-Efficient Fine-Tuning for Large Models: A Comprehensive Survey , author=. 2024 , eprint=

  45. [45]

    Prefix-tuning: Optimizing continuous prompts for generation , author=. Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers) , pages=

  46. [46]

    2023 , eprint=

    Camels in a Changing Climate: Enhancing LM Adaptation with Tulu 2 , author=. 2023 , eprint=

  47. [47]

    2020 , eprint=

    Fine-Tuning Language Models from Human Preferences , author=. 2020 , eprint=

  48. [48]

    2024 , eprint=

    DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models , author=. 2024 , eprint=

  49. [49]

    2021 , eprint=

    Training Verifiers to Solve Math Word Problems , author=. 2021 , eprint=

  50. [50]

    2021 , eprint=

    Measuring Mathematical Problem Solving With the MATH Dataset , author=. 2021 , eprint=

  51. [51]

    American Invitational Mathematics Examination (AIME) 2024 , author=

  52. [52]

    2023 , publisher =

    Hemish Veeraboina , title =. 2023 , publisher =

  53. [53]

    Thinking Machines Lab: Connectionism , year =

    John Schulman and Thinking Machines Lab , title =. Thinking Machines Lab: Connectionism , year =

  54. [54]

    Advances in neural information processing systems , volume=

    Judging llm-as-a-judge with mt-bench and chatbot arena , author=. Advances in neural information processing systems , volume=

  55. [55]

    Adaptive estimation of linear functionals by model selection , volume=

    Laurent, Béatrice and Ludeña, Carenne and Prieur, Clémentine , year=. Adaptive estimation of linear functionals by model selection , volume=. Electronic Journal of Statistics , publisher=. doi:10.1214/07-ejs127 , number=

  56. [56]

    Training Verifiers to Solve Math Word Problems

    Training Verifiers to Solve Math Word Problems , author=. arXiv preprint arXiv:2110.14168 , year=

  57. [57]

    Proceedings of the 2018 EMNLP workshop BlackboxNLP: Analyzing and interpreting neural networks for NLP , pages=

    GLUE: A multi-task benchmark and analysis platform for natural language understanding , author=. Proceedings of the 2018 EMNLP workshop BlackboxNLP: Analyzing and interpreting neural networks for NLP , pages=

  58. [58]

    2023 , eprint=

    AdaLoRA: Adaptive Budget Allocation for Parameter-Efficient Fine-Tuning , author=. 2023 , eprint=

  59. [59]

    Forty-first International Conference on Machine Learning , year=

    Dora: Weight-decomposed low-rank adaptation , author=. Forty-first International Conference on Machine Learning , year=

  60. [60]

    Proceedings of the 32nd International Conference on Machine Learning , pages =

    Trust Region Policy Optimization , author =. Proceedings of the 32nd International Conference on Machine Learning , pages =. 2015 , editor =

  61. [61]

    Proceedings of the Nineteenth International Conference on Machine Learning , pages =

    Kakade, Sham and Langford, John , title =. Proceedings of the Nineteenth International Conference on Machine Learning , pages =. 2002 , isbn =

  62. [62]

    Advances in Neural Information Processing Systems , volume=

    Implicit Regularization in Matrix Factorization , author=. Advances in Neural Information Processing Systems , volume=

  63. [63]

    2024 , eprint=

    Asymmetry in Low-Rank Adapters of Foundation Models , author=. 2024 , eprint=

  64. [64]

    Mathematische Annalen , volume=

    Das asymptotische Verteilungsgesetz der Eigenwerte linearer partieller Differentialgleichungen , author=. Mathematische Annalen , volume=

  65. [65]

    BIT Numerical Mathematics , volume=

    Perturbation bounds in connection with singular value decomposition , author=. BIT Numerical Mathematics , volume=

  66. [66]

    Fan, Chenghao and Lu, Zhenyi and Liu, Sichen and Gu, Chengfeng and Qu, Xiaoye and Wei, Wei and Cheng, Yu , booktitle =. Make. 2025 , editor =

  67. [67]

    International Conference on Learning Representations , volume=

    Kasa: Knowledge-aware singular-value adaptation of large language models , author=. International Conference on Learning Representations , volume=

  68. [68]

    2025 , eprint=

    Evaluating Parameter Efficient Methods for RLVR , author=. 2025 , eprint=

  69. [69]

    Milora: Harnessing minor singular components for parameter-efficient llm finetuning , author=. Proceedings of the 2025 Conference of the Nations of the Americas Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 1: Long Papers) , pages=

  70. [70]

    2026 , eprint=

    On the Scaling of PEFT: Towards Million Personal Models of Trillion Parameters , author=. 2026 , eprint=

  71. [71]

    Advances in neural information processing systems , volume=

    Chain-of-thought prompting elicits reasoning in large language models , author=. Advances in neural information processing systems , volume=

  72. [72]

    2026 , eprint=

    Lessons from the Trenches on Reproducible Evaluation of Language Models , author=. 2026 , eprint=

  73. [73]

    PyTorch FSDP: Experiences on Scaling Fully Sharded Data Parallel

    Pytorch fsdp: experiences on scaling fully sharded data parallel , author=. arXiv preprint arXiv:2304.11277 , year=

  74. [74]

    Megatron-LM: Training Multi-Billion Parameter Language Models Using Model Parallelism

    Megatron-lm: Training multi-billion parameter language models using model parallelism , author=. arXiv preprint arXiv:1909.08053 , year=

  75. [75]

    Training Deep Nets with Sublinear Memory Cost

    Training deep nets with sublinear memory cost , author=. arXiv preprint arXiv:1604.06174 , year=

  76. [76]

    2021 USENIX Annual Technical Conference (USENIX ATC 21) , pages=

    \ Zero-offload \ : Democratizing \ billion-scale \ model training , author=. 2021 USENIX Annual Technical Conference (USENIX ATC 21) , pages=

  77. [77]

    Program Synthesis with Large Language Models

    Program synthesis with large language models , author=. arXiv preprint arXiv:2108.07732 , year=