pith. sign in

arxiv: 2606.04325 · v1 · pith:WLVC77B5new · submitted 2026-06-03 · 💻 cs.CL

Parameter-Efficient Fine-Tuning with Learnable Rank

Pith reviewed 2026-06-28 06:59 UTC · model grok-4.3

classification 💻 cs.CL
keywords parameter-efficient fine-tuningLoRAlearnable ranktransformer adapterslanguage model fine-tuninginductive bias
0
0 comments X

The pith

LR-LoRA lets the optimizer learn a different rank for each adapter layer instead of using one fixed rank.

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

The paper asks whether the fixed low-rank constraint built into standard LoRA is the best inductive bias for parameter-efficient fine-tuning. It introduces LR-LoRA, in which the rank of each adapter is treated as a learnable parameter that the optimizer adjusts during training. Experiments reveal clear layer-wise differences, with attention layers and MLP layers settling on systematically different ranks. On language understanding and commonsense reasoning benchmarks, this per-layer flexibility produces higher accuracy than fixed-rank LoRA and other strong PEFT baselines.

Core claim

LR-LoRA removes the uniform-rank assumption by allowing the optimizer to choose the rank of each low-rank adapter during training; the resulting ranks vary substantially across layers, with attention and MLP blocks showing distinct preferences, and the method reaches state-of-the-art results on most language and commonsense tasks while outperforming fixed-rank PEFT baselines.

What carries the argument

The learnable-rank adapter in LR-LoRA, which replaces the fixed integer rank hyperparameter with a value that is optimized jointly with the adapter weights.

If this is right

  • Substantial layer-wise variation appears in the learned ranks.
  • Attention layers and MLP layers exhibit systematically different rank preferences.
  • LR-LoRA outperforms strong fixed-rank PEFT baselines on language understanding and commonsense reasoning tasks.
  • A learnable rank supplies a more flexible inductive bias than a preset low-rank constraint.

Where Pith is reading between the lines

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

  • If per-layer ranks can be learned, the same idea could be tested on other adapter hyperparameters such as scaling factors.
  • The observed difference between attention and MLP ranks suggests that uniform architectural assumptions across transformer blocks may be worth revisiting.
  • Models with deeper or more heterogeneous layer stacks may show even larger gains from this flexibility.

Load-bearing premise

The optimizer can discover useful per-layer ranks without adding optimization difficulty or causing overfitting.

What would settle it

Training LR-LoRA on the same benchmarks and observing that every layer converges to the same rank with no accuracy improvement over a well-tuned fixed-rank baseline would falsify the central claim.

Figures

Figures reproduced from arXiv: 2606.04325 by Arpit Garg, Hemanth Saratchandran, Simon Lucey.

Figure 1
Figure 1. Figure 1: Construction of the learnable nonlinearity ϕ (Equation (4)). Left: individual sinc basis functions on the grid {xi} with per-basis bandwidth ωi and amplitude αi . Right: the resulting ϕ(x) obtained by summing the shifted sinc functions. Bandwidths and amplitudes are learned jointly with the adapter weights. uniform grid with spacing τ ≤ 1/(2ωmax) as f(x) = X i∈Z f(xi) sinc(ω(x − xi)), ω := 1 τ , xi := iτ. … view at source ↗
Figure 2
Figure 2. Figure 2: Stable-rank profiles of learned updates across depth. Qwen2-0.5B on commonsense reasoning at rank r=16; each panel plots stable rank (y-axis) against layer index (x-axis) at the final training checkpoint. Takeaway: update complexity is depth-dependent and differs systematically between MLP and attention modules. Per-checkpoint evolution and the corresponding learned nonlinearities ϕ(z) at representative ea… view at source ↗
Figure 1
Figure 1. Figure 1: All appendix results and analyses use LR-LoRA exactly as defined in Sections 3 and 3.3 and the experimental protocol in Section 4; no new adaptation mechanism is introduced in the appendix. B Extended Experimental Results This section presents a comprehensive set of experimental results that support the primary findings of this study. We offer detailed breakdowns for each task, conduct a cross-architecture… view at source ↗
Figure 3
Figure 3. Figure 3: LR-LoRA pipeline. End-to-end view of an LR-LoRA-adapted layer: the frozen pretrained weight W, the trainable low-rank factors A, B, and the elementwise sinc transfer function ϕ (Equa￾tion (4)) with learnable amplitudes {αi} and bandwidths {ωi} on a fixed grid {xi} N i=1. The adapted weight is Weff = W + ϕ(BA), computed once per training step and merged for zero-overhead inference (Sections C and 4.2). E.1 … view at source ↗
Figure 4
Figure 4. Figure 4: Singular-value spectrum of learned updates. Singular values of the learned update matrices at rank r=16 for LoRA (U = BA) and LR-LoRA (U = ϕ(BA)), sorted in non-increasing order and normalized by σ1(U). Qwen2-0.5B on the commonsense reasoning suite, 15k subset regime. LR-LoRA exhibits a slower spectral decay, consistent with higher complexity. 29 [PITH_FULL_IMAGE:figures/full_fig_p029_4.png] view at source ↗
Figure 5
Figure 5. Figure 5: Loss landscape (2D slice; rendered in 3D). Training objective evaluated on a two￾dimensional plane through a converged solution, using directions restricted to trainable parameters (LoRA: adapter parameters; LR-LoRA: adapter and ϕ parameters). I Cross-Architecture Nonlinearity Evolution Analysis This section offers a thorough empirical examination of LR-LoRA’s learned mapping ϕ(z) across two distinct archi… view at source ↗
Figure 6
Figure 6. Figure 6: Qwen2 MLP nonlinearity evolution at layer 1. Temporal progression from IT100→1000→2000 reveals rapid convergence to near-linear behavior with minimal α-growth. Early layers in small models exhibit conservative adaptation strategies. 3 2 1 0 1 2 3 Activation z 0.03 0.02 0.01 0.00 0.01 0.02 0.03 A d a ptatio n f(z) MLP Layer 11 - Early Gate Up Down (a) Early stage (iteration 100). 3 2 1 0 1 2 3 Activation z … view at source ↗
Figure 7
Figure 7. Figure 7: Qwen2 MLP nonlinearity evolution at layer 11. Mid-depth dynamics show emerging nonlinearity with ω bandwidth expansion and moderate αi-coefficient differentiation. Qwen2’s compact architecture necessitates efficient parameter utilization. (plateaus) correspond to amplitude limiting, whereas the oscillatory patterns suggest multimodal update strategies. I.2 Qwen2-0.5B: Small Model Dynamics MLP Component Evo… view at source ↗
Figure 8
Figure 8. Figure 8: Qwen2 MLP nonlinearity evolution at layer 23. Deepest layer exhibits pronounced amplitude scaling (α growth) and complex coefficient patterns reflecting high-level feature integration demands in compact architectures. 3 2 1 0 1 2 3 Activation z 0.02 0.01 0.00 0.01 0.02 A d a ptatio n f(z) Attention Layer 1 - Early Q K V O (a) Early stage (iteration 100). 3 2 1 0 1 2 3 Activation z 0.15 0.10 0.05 0.00 0.05 … view at source ↗
Figure 9
Figure 9. Figure 9: Qwen2 attention nonlinearity evolution at layer 1. Attention projections develop distinct oscillatory patterns early in training, reflecting the multi-head attention mechanism’s need for diverse query-key-value mappings. I.4 Cross-Architecture Comparative Analysis The systematic comparison between Qwen2-0.5B and LLaMA-3 8B elucidates the fundamental scaling laws in nonlinear parameter-efficient adaptation,… view at source ↗
Figure 10
Figure 10. Figure 10: Qwen2 attention nonlinearity evolution at layer 11. Mid-depth attention exhibits com￾plex multi-modal patterns suggesting specialized head-specific adaptation strategies, with pronounced ω bandwidth differentiation. 3 2 1 0 1 2 3 Activation z 0.020 0.015 0.010 0.005 0.000 0.005 0.010 0.015 0.020 A d a ptatio n f(z) Attention Layer 23 - Early Q K V O (a) Early stage (iteration 100). 3 2 1 0 1 2 3 Activatio… view at source ↗
Figure 11
Figure 11. Figure 11: Qwen2 attention nonlinearity evolution at layer 23. Deep attention layers develop highly specialized multi-peak structures, indicating sophisticated head-specific update strategies for high-level semantic processing. I.5 Empirical Scaling Observations These empirical observations reveal several patterns of parameter-efficient adaptation in transformer architectures: 1. Scale-dependent amplitude patterns: … view at source ↗
Figure 12
Figure 12. Figure 12: LLaMA-3 MLP nonlinearity evolution at layer 1. Conservative early-layer adaptation with delayed amplitude growth (α remains < 0.1 through IT1000) reflects large-model stability requirements and distributed parameter utilization. 3 2 1 0 1 2 3 Activation z 0.015 0.010 0.005 0.000 0.005 0.010 0.015 A d a ptatio n f(z) LLaMA-3 MLP Layer 16 - Early Gate Up Down (a) Early stage (iteration 100). 3 2 1 0 1 2 3 A… view at source ↗
Figure 13
Figure 13. Figure 13: LLaMA-3 MLP nonlinearity evolution at layer 16. Mid-depth layers in LLaMA-3 develop sophisticated multi-modal patterns with controlled amplitude scaling, exhibiting polynomial￾like transfer functions that suggest feature combination strategies. 3 2 1 0 1 2 3 Activation z 0.015 0.010 0.005 0.000 0.005 0.010 0.015 A d a ptatio n f(z) LLaMA-3 MLP Layer 32 - Early Gate Up Down (a) Early stage (iteration 100).… view at source ↗
Figure 14
Figure 14. Figure 14: LLaMA-3 MLP nonlinearity evolution at layer 32. Deep layers achieve remarkable complexity with multi-peak structures and controlled saturation regions, indicating sophisticated high-level semantic update strategies enabled by large-scale architectures. 3 2 1 0 1 2 3 Activation z 0.015 0.010 0.005 0.000 0.005 0.010 0.015 A d a ptatio n f(z) LLaMA-3 Attention Layer 1 - Early Q K V O (a) Early stage (iterati… view at source ↗
Figure 15
Figure 15. Figure 15: LLaMA-3 attention nonlinearity evolution at layer 1. Early attention layers develop gentle oscillatory patterns with extended bandwidth utilization (ω ≈ 0.5), enabling fine-grained query-key interaction modeling. 34 [PITH_FULL_IMAGE:figures/full_fig_p034_15.png] view at source ↗
Figure 16
Figure 16. Figure 16: LLaMA-3 attention nonlinearity evolution at layer 16. Mid-depth attention exhibits harmonic patterns with multiple frequency components, suggesting multi-scale attention mechanisms operating simultaneously across different semantic granularities. 3 2 1 0 1 2 3 Activation z 0.015 0.010 0.005 0.000 0.005 0.010 0.015 A d a ptatio n f(z) LLaMA-3 Attention Layer 32 - Early Q K V O (a) Early stage (iteration 10… view at source ↗
Figure 17
Figure 17. Figure 17: LLaMA-3 attention nonlinearity evolution at layer 32. Deep attention layers achieve step-function-like patterns with sharp transitions, indicating binary decision mechanisms for high￾level semantic attention allocation. 35 [PITH_FULL_IMAGE:figures/full_fig_p035_17.png] view at source ↗
read the original abstract

Low-Rank Adaptation (LoRA) is a popular parameter-efficient fine-tuning (PEFT) method that restricts weight updates to low-rank adapters, introducing a fixed low-rank inductive bias by optimizing in a low-dimensional subspace. In this work, we question whether a fixed-rank constraint is the most effective inductive bias for parameter-efficient fine-tuning. We introduce *Learnable Rank LoRA (LR-LoRA)*, a PEFT method in which the adapter rank is learned during the training process. Instead of prescribing a uniform rank for all adapter layers, LR-LoRA allows the optimizer to determine the appropriate rank for each layer. Using this approach, we find substantial layer-wise variation in the learned ranks, with the attention and MLP layers in the transformer models exhibiting systematically different rank preferences. Across a range of language understanding and commonsense reasoning benchmarks, LR-LoRA achieves state-of-the-art performance in most settings and consistently outperforms strong PEFT baselines, demonstrating that a learnable rank provides a more flexible and effective inductive bias than fixed-rank adaptations.

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 / 0 minor

Summary. The paper introduces Learnable Rank LoRA (LR-LoRA), a PEFT method extending LoRA by making adapter ranks learnable during training rather than fixed and uniform across layers. It reports substantial layer-wise variation in the learned ranks (with attention and MLP layers showing systematic differences) and claims that LR-LoRA achieves state-of-the-art performance on language understanding and commonsense reasoning benchmarks while outperforming strong PEFT baselines.

Significance. If the reported performance gains and layer-wise rank variations are confirmed with rigorous controls, this would indicate that a learnable-rank inductive bias is more flexible and effective than fixed-rank constraints in LoRA-style adaptation.

major comments (2)
  1. [Abstract] Abstract: the central empirical claim of SOTA performance and consistent outperformance of baselines cannot be assessed because the abstract (and supplied context) provides no experimental details, baselines, datasets, error bars, statistical tests, or ablation studies.
  2. [Abstract] Abstract: the assumption that the optimizer can reliably discover useful per-layer ranks without extra optimization difficulty or overfitting is stated but unsupported by any reported evidence on convergence behavior or regularization effects.

Simulated Author's Rebuttal

2 responses · 0 unresolved

We thank the referee for their review. Below we respond point-by-point to the major comments on the abstract.

read point-by-point responses
  1. Referee: [Abstract] Abstract: the central empirical claim of SOTA performance and consistent outperformance of baselines cannot be assessed because the abstract (and supplied context) provides no experimental details, baselines, datasets, error bars, statistical tests, or ablation studies.

    Authors: Abstracts are intentionally concise high-level summaries. The full experimental protocol, including all datasets (GLUE, SuperGLUE, and commonsense reasoning tasks), baselines (standard LoRA, AdaLoRA, and other PEFT methods), results reported as mean ± std over multiple random seeds, statistical significance, and ablation studies on rank learning, appear in Sections 3 (Method) and 4 (Experiments) together with the corresponding tables and figures. The abstract therefore summarizes rather than replaces those details. revision: no

  2. Referee: [Abstract] Abstract: the assumption that the optimizer can reliably discover useful per-layer ranks without extra optimization difficulty or overfitting is stated but unsupported by any reported evidence on convergence behavior or regularization effects.

    Authors: Section 5 (Analysis) of the manuscript presents layer-wise rank distributions, training-loss curves for the rank parameters, and validation-performance trajectories that demonstrate stable convergence of the learned ranks under the same optimizer settings used for fixed-rank LoRA. No additional regularization beyond standard weight decay is applied, and validation metrics improve without signs of overfitting. If the referee considers the current analysis insufficient, we are prepared to add explicit convergence plots or a dedicated regularization subsection. revision: partial

Circularity Check

0 steps flagged

No significant circularity; empirical method with independent benchmark claims

full rationale

The paper introduces LR-LoRA as an empirical PEFT variant that learns per-layer ranks via standard optimization. The abstract and provided context contain no equations, derivations, or predictions that reduce by construction to fitted inputs or self-citations. Performance claims rest on external benchmarks rather than any self-referential identity. This is the common case of a self-contained empirical contribution with no load-bearing circular steps.

Axiom & Free-Parameter Ledger

0 free parameters · 0 axioms · 0 invented entities

Review performed on abstract only; no equations or implementation details available to enumerate free parameters, axioms, or invented entities.

pith-pipeline@v0.9.1-grok · 5708 in / 959 out tokens · 17924 ms · 2026-06-28T06:59:48.163912+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

57 extracted references · 6 linked inside Pith

  1. [1]

    Hu, Edward J and Shen, Yelong and Wallis, Phillip and Allen-Zhu, Zeyuan and Li, Yuanzhi and Wang, Shean and Wang, Lu and Chen, Weizhu and others , journal=

  2. [2]

    Zhang, Qingru and Chen, Minshuo and Bukharin, Alexander and Karampatziakis, Nikos and He, Pengcheng and Cheng, Yu and Chen, Weizhu and Zhao, Tuo , journal=

  3. [3]

    Proceedings of the 17th Conference of the European Chapter of the Association for Computational Linguistics , pages=

    DyLoRA: Parameter-efficient tuning of pre-trained models using dynamic search-free low-rank adaptation , author=. Proceedings of the 17th Conference of the European Chapter of the Association for Computational Linguistics , pages=

  4. [4]

    Liu, Shih-Yang and Wang, Chien-Yi and Yin, Hongxu and Molchanov, Pavlo and Wang, Yu-Chiang Frank and Cheng, Kwang-Ting and Chen, Min-Hung , booktitle=

  5. [5]

    Kopiczko, Dawid J and Blankevoort, Tijmen and Asano, Yuki M , journal=

  6. [6]

    Proceedings of the Computer Vision and Pattern Recognition Conference , pages=

    Do we always need the simplicity bias? looking for optimal inductive biases in the wild , author=. Proceedings of the Computer Vision and Pattern Recognition Conference , pages=

  7. [7]

    Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=

    Towards Higher Effective Rank in Parameter-Efficient Fine-tuning using Khatri-Rao Product , author=. Proceedings of the IEEE/CVF International Conference on Computer Vision , pages=

  8. [8]

    Meng, Fanxu and Wang, Zhaohui and Zhang, Muhan , journal=

  9. [9]

    Hayou, Soufiane and Ghosh, Nikhil and Yu, Bin , journal=

  10. [10]

    Dettmers, Tim and Pagnoni, Artidoro and Holtzman, Ari and Zettlemoyer, Luke , journal=

  11. [11]

    Zhao, Jiawei and Zhang, Zhenyu and Chen, Beidi and Wang, Zhangyang and Anandkumar, Anima and Tian, Yuandong , journal=

  12. [12]

    Lialin, Vladislav and Shivagunde, Namrata and Muckatira, Sherin and Rumshisky, Anna , journal=

  13. [13]

    Zhang, Longteng and Zhang, Lin and Shi, Shaohuai and Chu, Xiaowen and Li, Bo , journal=

  14. [14]

    A rank stabilization scaling factor for fine-tuning with

    Kalajdzievski, Damjan , journal=. A rank stabilization scaling factor for fine-tuning with

  15. [15]

    Wang, Hanqing and Li, Yixia and Wang, Shuo and Chen, Guanhua and Chen, Yun , booktitle=

  16. [16]

    The Thirteenth International Conference on Learning Representations , year=

    RandLoRA: Full rank parameter-efficient fine-tuning of large models , author=. The Thirteenth International Conference on Learning Representations , year=

  17. [17]

    The Thirteenth International Conference on Learning Representations , year=

    Efficient Learning with Sine-Activated Low-Rank Matrices , author=. The Thirteenth International Conference on Learning Representations , year=

  18. [18]

    Advances in neural information processing systems , volume=

    Implicit neural representations with periodic activation functions , author=. Advances in neural information processing systems , volume=

  19. [19]

    CoRR , year=

    Parameter-Efficient Fine-Tuning with Discrete Fourier Transform , author=. CoRR , year=

  20. [20]

    ACL 2019-57th Annual Meeting of the Association for Computational Linguistics , year=

    What does BERT learn about the structure of language? , author=. ACL 2019-57th Annual Meeting of the Association for Computational Linguistics , year=

  21. [21]

    arXiv preprint arXiv:1905.05950 , year=

    BERT rediscovers the classical NLP pipeline , author=. arXiv preprint arXiv:1905.05950 , year=

  22. [22]

    CoRR , year=

    Layer-wise Importance Matters: Less Memory for Better Performance in Parameter-efficient Fine-tuning of Large Language Models , author=. CoRR , year=

  23. [23]

    Intrinsic dimensionality explains the effectiveness of language model fine-tuning , 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=

  24. [24]

    Proceedings of the AAAI conference on artificial intelligence , volume=

    On the effectiveness of parameter-efficient fine-tuning , author=. Proceedings of the AAAI conference on artificial intelligence , volume=

  25. [25]

    arXiv preprint arXiv:2302.13971 , year=

    Touvron, Hugo and Lavril, Thibaut and Izacard, Gautier and Martinet, Xavier and Lachaux, Marie-Anne and Lacroix, Timoth. arXiv preprint arXiv:2302.13971 , year=

  26. [26]

    Touvron, Hugo and Martin, Louis and Stone, Kevin and Albert, Peter and Almahairi, Amjad and Babaei, Yasmine and Bashlykov, Nikolay and Batra, Soumya and Bhargava, Prajjwal and Bhosale, Shruti and others , journal=

  27. [27]

    Grattafiori, Aaron and Dubey, Abhimanyu and Jauhri, Abhinav and Pandey, Abhinav and Kadian, Abhishek and Al-Dahle, Ahmad and Letman, Aiesha and Mathur, Akhil and Schelten, Alan and Vaughan, Alex and others , journal=. The

  28. [28]

    Team, Qwen and others , journal=

  29. [29]

    2024 , eprint=

    Phi-3 Technical Report: A Highly Capable Language Model Locally on Your Phone , author=. 2024 , eprint=

  30. [30]

    Nature machine intelligence , volume=

    Parameter-efficient fine-tuning of large-scale pre-trained language models , author=. Nature machine intelligence , volume=. 2023 , publisher=

  31. [31]

    arXiv preprint arXiv:2403.14608 , year=

    Parameter-efficient fine-tuning for large models: A comprehensive survey , author=. arXiv preprint arXiv:2403.14608 , year=

  32. [32]

    International conference on machine learning , pages=

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

  33. [33]

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

    Llm-adapters: An adapter family for parameter-efficient fine-tuning of large language models , author=. Proceedings of the 2023 conference on empirical methods in natural language processing , pages=

  34. [34]

    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=

  35. [35]

    Zellers, Rowan and Holtzman, Ari and Bisk, Yonatan and Farhadi, Ali and Choi, Yejin , journal=

  36. [36]

    Proceedings of the IRE , volume=

    Communication in the presence of noise , author=. Proceedings of the IRE , volume=. 2006 , publisher=

  37. [37]

    On the functions which are represented by the expansions of the interpolatory theory , author=. Proc. Royal Soc. Edinburgh , volume=

  38. [38]

    arXiv preprint arXiv:2101.00190 , year=

    Prefix-tuning: Optimizing continuous prompts for generation , author=. arXiv preprint arXiv:2101.00190 , year=

  39. [39]

    arXiv preprint arXiv:2104.08691 , year=

    The power of scale for parameter-efficient prompt tuning , author=. arXiv preprint arXiv:2104.08691 , year=

  40. [40]

    Zaken, Elad Ben and Goldberg, Yoav and Ravfogel, Shauli , booktitle=

  41. [41]

    Clark, Christopher and Lee, Kenton and Chang, Ming-Wei and Kwiatkowski, Tom and Collins, Michael and Toutanova, Kristina , journal=

  42. [42]

    Bisk, Yonatan and Zellers, Rowan and Gao, Jianfeng and Choi, Yejin and others , booktitle=

  43. [43]

    Sap, Maarten and Rashkin, Hannah and Chen, Derek and LeBras, Ronan and Choi, Yejin , journal=

  44. [44]

    2021 , publisher=

    Sakaguchi, Keisuke and Bras, Ronan Le and Bhagavatula, Chandra and Choi, Yejin , journal=. 2021 , publisher=

  45. [45]

    arXiv preprint arXiv:1803.05457 , year=

    Think you have solved question answering? try arc, the ai2 reasoning challenge , author=. arXiv preprint arXiv:1803.05457 , year=

  46. [46]

    arXiv preprint arXiv:1809.02789 , year=

    Can a suit of armor conduct electricity? a new dataset for open book question answering , author=. arXiv preprint arXiv:1809.02789 , year=

  47. [47]

    Liu, Yinhan and Ott, Myle and Goyal, Naman and Du, Jingfei and Joshi, Mandar and Chen, Danqi and Levy, Omer and Lewis, Mike and Zettlemoyer, Luke and Stoyanov, Veselin , journal=

  48. [48]

    Advances in Neural Information Processing Systems , volume=

    Few-shot parameter-efficient fine-tuning is better and cheaper than in-context learning , author=. Advances in Neural Information Processing Systems , volume=

  49. [49]

    Advances in neural information processing systems , volume=

    Compacter: Efficient low-rank hypercomplex adapter layers , author=. Advances in neural information processing systems , volume=

  50. [50]

    2017 , publisher=

    Applied Fourier Analysis , author=. 2017 , publisher=

  51. [51]

    Transactions of the American Institute of Electrical Engineers , volume=

    Certain topics in telegraph transmission theory , author=. Transactions of the American Institute of Electrical Engineers , volume=. 1928 , publisher=

  52. [52]

    GEC Journal of Technology , volume=

    An introduction to Shannon sampling and interpolation theory, with generalizations to nonuniform sampling , author=. GEC Journal of Technology , volume=

  53. [53]

    2009 , publisher=

    Real analysis: measure theory, integration, and Hilbert spaces , author=. 2009 , publisher=

  54. [54]

    arXiv preprint arXiv:2504.00254 , year=

    Elalora: Elastic & learnable low-rank adaptation for efficient model fine-tuning , author=. arXiv preprint arXiv:2504.00254 , year=

  55. [55]

    arXiv preprint arXiv:2505.18738 , year=

    AuroRA: Breaking Low-Rank Bottleneck of LoRA with Nonlinear Mapping , author=. arXiv preprint arXiv:2505.18738 , year=

  56. [56]

    arXiv preprint arXiv:2505.14238 , year=

    ABBA: Highly Expressive Hadamard Product Adaptation for Large Language Models , author=. arXiv preprint arXiv:2505.14238 , year=

  57. [57]

    Zheng, Lianmin and Chiang, Wei-Lin and Sheng, Ying and Zhuang, Siyuan and Wu, Zhanghao and Zhuang, Yonghao and Lin, Zi and Li, Zhuohan and Li, Dacheng and Xing, Eric P and Zhang, Hao and Gonzalez, Joseph E and Stoica, Ion , booktitle=. Judging