Pith. sign in

REVIEW 5 major objections 7 minor 18 references

SRLoRA: Subspace Recomposition in Low-Rank Adaptation via Importance-Based Fusion and Reinitialization

T0 review · 5 major / 7 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read SRLoRA claims LoRA can escape its fixed low-rank subspace during training, without adding trainable parameters, by fusing low-importance pairs into the frozen weights and reopening them along unused singular directions.

desk verdict The subspace-recomposition mechanism is novel and worth a serious look, but the paper's own tables contradict its 'consistent improvement' claim; it deserves a serious referee, not as-is. read the letter →

arxiv 2505.12433 v1 pith:D3VXAPC3 submitted 2025-05-18 cs.CV cs.AIcs.LG

classification cs.CVcs.AIcs.LG
keywords SRLoRAlow-rankadaptationparameter-efficientfine-tuningimportance-basedfusionsubspacerecompositionsingularvaluedecompositionGLUEbenchmarkvisiontransformers
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

The paper's claim is that LoRA's real limitation is not its rank but the fact that its update subspace is fixed at initialization. SRLoRA addresses this by periodically scoring each rank-1 component of the LoRA update, fusing the least important components into the frozen weight matrix, and reinitializing them with singular directions of the original pretrained weights that have not been used yet. The number of trainable parameters stays exactly the same as in standard LoRA throughout. On GLUE tasks with DeBERTa-v3-base and on ViT image classification, the paper reports that SRLoRA converges faster and reaches higher accuracy than LoRA, with the clearest advantage on tasks that need a broader adaptation subspace.

What carries the argument

The load-bearing object is the rank-1 LoRA pair, one column of $B$ and the corresponding row of $A$. Periodic switch events decide which pairs to keep by the importance score $S_k^{(t)} = \frac{1}{m}\sum_i s(B_{ik}) + \frac{1}{n}\sum_j s(A_{kj})$, where each entry's score is the product of its exponentially smoothed sensitivity $\bar{I}$ and its smoothed uncertainty $\bar{U}$; low-scoring pairs are fused into the frozen weight, discarded, and replaced by the next unused SVD triplets of the original pretrained matrix. The subtractive step $W \leftarrow W - B_{\mathrm{new}}A_{\mathrm{new}}$ is what makes the replacement orthogonal to the active subspace, and the pointer $p_r$ is the bookkeeping device for next unused. The whole fuse, reinitialize, subtract cycle is the mechanism that is supposed to expand the effective subspace at constant parameter count.

What would settle it

Disable the fusion step but keep the reinitialization schedule, and compare final accuracy and the effective rank of the accumulated update; if the advantage persists without fusion, then importance-based fusion is not the driver. As a direct observable, compute the overlap between each newly chosen singular direction of $W_0$ and the span of the current frozen weight $W^{(t)}$ at each switch: high overlap means the subtractive reinitialization is recycling directions that are already represented, which would undercut the claimed subspace expansion.

Watch

Extended reading notes

Core claim

SRLoRA's central claim is that a fixed-parameter LoRA update can be made exploratory by treating each rank-1 pair $B_{\cdot k} A_{k\cdot}$ as a disposable component. At scheduled steps, the method ranks these components by an importance score $S_k$ derived from smoothed gradient-weight sensitivities and their uncertainties, fuses the low-scoring fraction into the frozen weight via $W \leftarrow W + \sum_{k \in I_{\mathrm{low}}} B_{\cdot k} A_{k\cdot}$, deletes those pairs, and rebuilds them from the next unused singular directions of the pretrained matrix $W_0$ using $B_{\mathrm{new}} = U_{[:,p_r:p_r+r']}\Sigma^{1/2}$ and $A_{\mathrm{new}}=\Sigma^{1/2}V^{\top}_{[:,p_r:p_r+r']}$. The new projection is then subtracted from the current weight, $W \leftarrow W - B_{\mathrm{new}}A_{\mathrm{new}}$, so the fresh directions start out orthogonal to the already-explored space. The paper argues this loop lets LoRA explore a larger effective subspace than static LoRA, at identical parameter count, and backs the argument with faster training-loss reduction on RTE, QNLI, SST-2 and CoLA plus higher CIFAR-100 accuracy.

Load-bearing premise

SRLoRA's load-bearing assumption is that the singular vectors of the original pretrained weight matrix $W_0$ remain a good exploratory basis even after the frozen weights have been modified by fusions and subtractions, so the next unused directions really are new and useful rather than redundant or harmful.

Editorial extensions

If this is right

  • SRLoRA can be added to an existing LoRA pipeline with a one-time SVD of each target weight plus periodic importance computation, and no extra trainable parameters are needed, so memory and deployment costs stay at LoRA's level.
  • Convergence should speed up relative to LoRA in the early phase of fine-tuning, because the first fusion-and-reinitialization event replaces low-importance directions with large singular directions of the pretrained weights.
  • The benefit is conditional on the task: when the initial $r$ directions already cover what the task needs, or when the dataset is simple enough that LoRA saturates, the recomposition loop has little room to help, as the paper's own STL-10 and MNIST numbers show.
  • A longer training schedule with more switch events permits more subspace exploration at the same parameter budget, so SRLoRA's relative advantage should grow with training length up to the chosen target-rank ceiling $r_{\mathrm{target}}$.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The fixed basis from $W_0$ is a design choice, not a necessity; comparing SRLoRA against a variant that re-SVDs the current updated weight $W^{(t)}$ at each switch would show whether the original singular vectors or simply the act of switching carries the benefit.
  • The same fuse-and-reinitialize loop could be lifted to other PEFT modules, such as adapters, prefixes, or vector layers, wherever a component can be scored and a fresh orthogonal direction can be supplied; the paper only demonstrates it for SVD-initialized LoRA.
  • An adaptive switch scheduler, triggered by flattening of the importance-score distribution or by loss stagnation instead of a fixed step count, is the natural next test and could reduce sensitivity to the timing of the swaps.
  • One implication the paper leaves implicit is that the subtraction in Eq. (12) can overwrite parts of the frozen weight that earlier fusions already placed there; tracking how much of the fused content gets removed by later subtractions would quantify interference between fusions and reinitializations.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

5 major / 7 minor

Summary. The paper proposes SRLoRA, a modification of LoRA that periodically recomposes the low-rank update subspace without changing the parameter budget. At fixed intervals, rank-1 components of the LoRA update are scored by a smoothed gradient-weight product; the lowest-scoring pairs are fused into the frozen weight matrix and reinitialized using the next unused left and right singular vectors of the original pretrained weight. The new projection is subtracted from the frozen weights to avoid duplication. The method is evaluated on six GLUE tasks with DeBERTa-v3-base and on CIFAR-100, STL-10, and MNIST with ViT-B/16, and the paper reports loss curves and final accuracy tables. The abstract claims consistent faster convergence and improved accuracy over standard LoRA.

Significance. The core idea, refreshing the low-rank subspace under a fixed parameter budget, is a reasonable direction for PEFT, and the CIFAR-100 gain (92.51 vs. 90.06) is a positive signal. The paper also builds on known components such as PiSSA initialization and sensitivity-based importance, which makes the method easy to compare with prior work. However, the evidence in the manuscript does not support the headline claim: final results are mixed on GLUE and clearly worse on MNIST (94.83 vs. 98.89), and there are no error bars, ablations, or comparisons with AdaLoRA or DyLoRA. The algorithm is incompletely specified, because the pointer p_r is never updated, and one importance formula contradicts its own description. As presented, the contribution is a promising but unverified mechanism rather than a validated method.

major comments (5)
  1. [Abstract; §4.2, Tables 3 and 4] The claim that SRLoRA 'consistently achieves faster convergence and improved accuracy over standard LoRA' is contradicted by the paper's own final-accuracy tables. In Table 3, SRLoRA is worse than LoRA on MRPC (90.3/86.6 vs. 90.8/87.5), CoLA (65.1 vs. 65.4), and QNLI (93.4 vs. 94.0); in Table 4, MNIST accuracy drops from 98.89 to 94.83. The Conclusion's statement that 'gains are less pronounced on simpler datasets' does not account for a 4-point drop on MNIST. Because no error bars or repeated-seed results are reported, the claimed consistency cannot be assessed.
  2. [Algorithm 1; Eq. (11)] The method is under-specified because the pointer p_r, described in Eq. (11) as 'the index of the last used singular direction', is never updated in Algorithm 1 or in the text. Step 8 uses p_r to reinitialize components, but no line advances p_r after a switch, so a reader cannot determine which directions are used at the second and subsequent switches. The algorithm should specify p_r ← p_r + r′ after each switch and state the condition p_r + r′ ≤ d.
  3. [Section 3.1, Eq. (6)] The importance formula and its verbal description are inconsistent. Eq. (5) defines \bar{U} as an EMA of the absolute deviation, i.e., uncertainty; Eq. (6) computes s = \bar{I}\bar{U}. The text says this prioritizes parameters that are 'stable and reliable (indicated by a low deviation captured by \bar{U})', but a low \bar{U} value makes s smaller, not larger. Either the formula or the description is wrong, and this matters because the low-scoring components are exactly the ones chosen for fusion.
  4. [Eqs. (10)–(12), §3.2] The reinitialization mechanism assumes that singular vectors of the original W0 remain a useful exploration basis after W has been altered by repeated fusion and subtraction steps. Eq. (12) subtracts the new projection from the current W, but this only removes the initialization at the switch moment; after gradient updates the active subspace drifts, so the 'unused' directions may become redundant or harmful. No experiment or analysis checks the overlap between the reinitialized components and the current frozen weights. This is a load-bearing assumption for the claimed subspace-recomposition benefit.
  5. [§4.1 and §4.2] The experimental validation is incomplete for the paper's novelty claims. There is no comparison with AdaLoRA or DyLoRA, despite these being cited as the adaptive-rank baselines that SRLoRA is meant to improve upon, and there are no ablations of the fusion ratio γ, the switching schedule, or the target rank r_target. Without these, it is unclear whether the observed CIFAR-100 gain comes from the subspace recomposition mechanism or from PiSSA initialization and the particular hyperparameter choices.
minor comments (7)
  1. [Section 1] The second paragraph contains the duplicated phrase 'from from the singular value decomposition'.
  2. [Eqs. (3)–(6)] Eq. (3) uses I(w_ij) while Eqs. (4)–(6) use I^{(t)}(w_ij); the notation should be consistent throughout.
  3. [Algorithm 1] Step 9 writes B_new1 and A_new1 without the matrix subscripts used in Eq. (11); the notation should be aligned.
  4. [Table 3] The SRLoRA row is misformatted ('1.33M/184M96.190.3/86.6'), and the caption should state explicitly that MRPC and STS-B report two metrics (F1/Acc and Pearson/Spearman, respectively).
  5. [Figures 4 and 5] The captions introduce 'active intervals' and 'candidate rank pairs' without definitions in the Method section; these terms should be defined or removed.
  6. [Eq. (2)] PiSSA initialization is presented without stating that the frozen weight is replaced by the residual W0 − BA; this is important for understanding Eqs. (10)–(12).
  7. [Table 4] Vision training hyperparameters such as SGD learning rate, batch size, and data augmentation are not reported for the image experiments; these should be provided for reproducibility.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: SRLoRA is a training algorithm whose gains are empirical; no prediction reduces to a fitted input or self-citation by construction.

full rationale

The paper does not contain a derivation chain in which an output quantity is defined in terms of the quantity it purports to predict. SRLoRA is a training procedure: it computes SVD of the frozen weight W0 (Eq. 1), uses PiSSA initialization (Eq. 2), tracks sensitivity-based importance scores (Eqs. 3-7), fuses low-importance pairs into the frozen weights (Eqs. 8-9), and reinitializes freed ranks with unused SVD directions (Eqs. 11-12). The empirical claims about faster convergence and accuracy are made by comparing training curves and final metrics against LoRA and PiSSA on external benchmarks; they are not obtained by plugging the same data into a formula that was fit to those benchmarks. Equations 13-14 define the number of switches and the switching interval from user-specified hyperparameters (rtarget, r, r'), so they describe a schedule rather than a prediction whose fitted value is later reported as a result. The importance score in Eq. 6 is a composition of previously published sensitivity and uncertainty estimators, cited to the original sources, and is used only to choose which pairs to fuse; it is not a parameter fitted to the test tasks and then presented as a discovered law. There is no load-bearing self-citation: references to PiSSA, AdaLoRA, DyLoRA, and PLATON are external prior work, and the present authors do not rely on their own previous results to justify the central mechanism. The remaining concerns identified by the reader, such as the unspecified update rule for the SVD-direction pointer pr, the possible staleness of W0-based directions after W changes, and the mixed results in Tables 3 and 4, are reproducibility, correctness, and evidence-quality issues, not circularity. A claim that is empirically unsupported or under-specified is different from a claim that reduces to its own inputs by construction. Because no step of the paper exhibits self-definitional dependence, fitted-input-as-prediction, or self-citation chain, the circularity score is 0.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

SRLoRA introduces no new physical or model-level entities; 'unused singular directions' are a selection from the existing SVD rather than a new postulated object. The method does depend on two domain assumptions: W0's SVD remains a useful basis after W changes, and the sensitivity metric identifies fusable pairs. The per-task target rank and fusion ratio are choice-dependent hyperparameters, while the orthogonality-by-subtraction claim is only true at initialization.

free parameters (4)
  • target rank r_target = SST-2: 512; MRPC: 256; CoLA: 256; QNLI: 128; RTE: 16; STS-B: 32
    Used in Eq. 13 to compute the number of switch events. It is set per task with no selection rule or ablation, so it can act as a per-task tuning knob that affects the results.
  • fusion ratio gamma = 0.5
    Fraction of LoRA ranks fused and reinitialized at each switch. Chosen by hand with no sensitivity analysis.
  • EMA smoothing factors beta1, beta2 = 0.85, 0.85
    Borrowed from AdaLoRA defaults. They affect the stability and ranking of importance scores, but no ablation is reported here.
  • LoRA rank r = 8
    Rank of the adaptation matrices for all methods. Fixed for comparison, but the subspace capacity and number of switch events depend on it.
assumptions (4)
  • standard math Every real matrix W0 admits an SVD with orthonormal U, V and nonnegative singular values (Eq. 1).
    Standard linear algebra result used to initialize and reinitialize LoRA pairs.
  • domain assumption The SVD of the original pretrained weight W0 remains a valid basis for exploring new subspaces after W has been modified by fusions and subtractions.
    Invoked in Eqs. 11 and 12. Reinitialized pairs are built from W0's singular vectors even though W is no longer W0. If stale, the 'unused principal directions' may not increase representational capacity.
  • domain assumption The gradient-weight product |w * grad L|, smoothed by EMA, reliably identifies LoRA components whose removal least harms performance.
    Eqs. 3 to 6 adopt sensitivity from prior pruning literature. The paper does not validate this metric on LoRA pairs, yet it determines which pairs are fused.
  • domain assumption Subtracting a newly reinitialized projection from W ensures it is orthogonal to the currently active subspace and avoids duplication.
    Eq. 12 claims this subtraction preserves diversity. Exact orthogonality holds only at initialization relative to W0's singular vectors; it is not maintained under gradient updates, so the assumption is stronger than stated.

how reviews work

0 comments
Cite this review

Pith. "Pith review of SRLoRA: Subspace Recomposition in Low-Rank Adaptation via Importance-Based Fusion and Reinitialization." pith.science (2026). https://pith.science/paper/D3VXAPC3

@misc{pith2026250512433,
  author       = {Pith},
  title        = {Pith review of: SRLoRA: Subspace Recomposition in Low-Rank Adaptation via Importance-Based Fusion and Reinitialization},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/D3VXAPC3}},
  note         = {Machine review of arXiv:2505.12433}
}
read the original abstract

Low-Rank Adaptation (LoRA) is a widely adopted parameter-efficient fine-tuning (PEFT) method that injects two trainable low-rank matrices (A and B) into frozen pretrained models. While efficient, LoRA constrains updates to a fixed low-rank subspace (Delta W = BA), which can limit representational capacity and hinder downstream performance. We introduce Subspace Recomposition in Low-Rank Adaptation (SRLoRA) via importance-based fusion and reinitialization, a novel approach that enhances LoRA's expressiveness without compromising its lightweight structure. SRLoRA assigns importance scores to each LoRA pair (a column of B and the corresponding row of A), and dynamically recomposes the subspace during training. Less important pairs are fused into the frozen backbone, freeing capacity to reinitialize new pairs along unused principal directions derived from the pretrained weight's singular value decomposition. This mechanism enables continual subspace refreshment and richer adaptation over time, without increasing the number of trainable parameters. We evaluate SRLoRA on both language and vision tasks, including the GLUE benchmark and various image classification datasets. SRLoRA consistently achieves faster convergence and improved accuracy over standard LoRA, demonstrating its generality, efficiency, and potential for broader PEFT applications.

Figures

Figures reproduced from arXiv: 2505.12433 by the authors.

Figure 1
Figure 1. Comparison with LoRA and SRLoRA. The blue areas represent pretrained/frozen [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Overview of SRLoRA. (a) SVD of pretrained weights. (b) Fusion of low [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Training loss comparison on RTE, QNLI, SST2 and CoLA tasks. SRLoRA demon [PITH_FULL_IMAGE:figures/full_fig_p010_3.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: Variance of activation intervals across different candidate ranks for each SRLoRA [PITH_FULL_IMAGE:figures/full_fig_p010_4.png]
Figure 5
Figure 5. Figure 5: Active intervals for target ranks in Layer 3 of DeBERTa-v3-base on the CoLA task. [PITH_FULL_IMAGE:figures/full_fig_p011_5.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

18 extracted references · 8 canonical work pages

  1. [1]

    Bert: Pre- training of deep bidirectional transformers for language understanding, 2019

    Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre- training of deep bidirectional transformers for language understanding, 2019. URL https://arxiv.org/abs/1810.04805

  2. [2]

    Parameter- efficient fine-tuning for large models: A comprehensive survey, 2024

    Zeyu Han, Chao Gao, Jinyang Liu, Jeff Zhang, and Sai Qian Zhang. Parameter- efficient fine-tuning for large models: A comprehensive survey, 2024. URLhttps: //arxiv.org/abs/2403.14608. HAODONG Y ANG, LEI W ANG, AND MD ZAKIR HOSSAIN: RESEARCH REPORT13

  3. [3]

    DeBERTav3: Improving deBERTa using ELECTRA-style pre-training with gradient-disentangled embedding sharing

    Pengcheng He, Jianfeng Gao, and Weizhu Chen. DeBERTav3: Improving deBERTa using ELECTRA-style pre-training with gradient-disentangled embedding sharing. In The Eleventh International Conference on Learning Representations, 2023. URL https://openreview.net/forum?id=sE7-XhLxHA

  4. [4]

    Parameter- efficient transfer learning for nlp, 2019

    Neil Houlsby, Andrei Giurgiu, Stanislaw Jastrzebski, Bruna Morrone, Quentin de Laroussilhe, Andrea Gesmundo, Mona Attariyan, and Sylvain Gelly. Parameter- efficient transfer learning for nlp, 2019. URLhttps://arxiv.org/abs/1902. 00751

  5. [5]

    LoRA: Low-rank adaptation of large language models

    Edward J Hu, yelong shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. LoRA: Low-rank adaptation of large language models. InInternational Conference on Learning Representations, 2022. URLhttps:// openreview.net/forum?id=nZeVKeeFYf9

  6. [6]

    LLM-adapters: An adapter family for parameter- efficient fine-tuning of large language models

    Zhiqiang Hu, Lei Wang, Yihuai Lan, Wanyu Xu, Ee-Peng Lim, Lidong Bing, Xing Xu, Soujanya Poria, and Roy Ka-Wei Lee. LLM-adapters: An adapter family for parameter- efficient fine-tuning of large language models. InThe 2023 Conference on Empirical Methods in Natural Language Processing, 2023. URLhttps://openreview. net/forum?id=gdUBK65fwn

  7. [7]

    The power of scale for parameter- efficient prompt tuning, 2021

    Brian Lester, Rami Al-Rfou, and Noah Constant. The power of scale for parameter- efficient prompt tuning, 2021. URLhttps://arxiv.org/abs/2104.08691

  8. [8]

    Prefix-tuning: Optimizing continuous prompts for generation, 2021

    Xiang Lisa Li and Percy Liang. Prefix-tuning: Optimizing continuous prompts for generation, 2021. URLhttps://arxiv.org/abs/2101.00190

Show all 18 references
  1. [9]

    Super tickets in pre-trained language models: From model compression to improving generalization, 2021

    Chen Liang, Simiao Zuo, Minshuo Chen, Haoming Jiang, Xiaodong Liu, Pengcheng He, Tuo Zhao, and Weizhu Chen. Super tickets in pre-trained language models: From model compression to improving generalization, 2021. URLhttps://arxiv. org/abs/2105.12002

  2. [10]

    PiSSA: Principal singular values and singular vectors adaptation of large language models

    Fanxu Meng, Zhaohui Wang, and Muhan Zhang. PiSSA: Principal singular values and singular vectors adaptation of large language models. InThe Thirty-eighth An- nual Conference on Neural Information Processing Systems, 2024. URLhttps: //openreview.net/forum?id=6ZBHIEtdP4

  3. [11]

    Are sixteen heads really better than one?, 2019

    Paul Michel, Omer Levy, and Graham Neubig. Are sixteen heads really better than one?, 2019. URLhttps://arxiv.org/abs/1905.10650

  4. [12]

    Very deep convolutional networks for large- scale image recognition, 2015

    Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large- scale image recognition, 2015. URLhttps://arxiv.org/abs/1409.1556

  5. [13]

    Dylora: Parameter efficient tuning of pre-trained models using dynamic search-free low-rank adaptation, 2023

    Mojtaba Valipour, Mehdi Rezagholizadeh, Ivan Kobyzev, and Ali Ghodsi. Dylora: Parameter efficient tuning of pre-trained models using dynamic search-free low-rank adaptation, 2023. URLhttps://arxiv.org/abs/2210.07558

  6. [14]

    LoRA-GA: Low-rank adaptation with gra- dient approximation

    Shaowen Wang, Linxi Yu, and Jian Li. LoRA-GA: Low-rank adaptation with gra- dient approximation. InThe Thirty-eighth Annual Conference on Neural Informa- tion Processing Systems, 2024. URLhttps://openreview.net/forum?id= VaLAWrLHJv. 14HAODONG Y ANG, LEI W ANG, AND MD ZAKIR HOS...

  7. [15]

    Parameter- efficient fine-tuning methods for pretrained language models: A critical review and assessment, 2023

    Lingling Xu, Haoran Xie, Si-Zhao Joe Qin, Xiaohui Tao, and Fu Lee Wang. Parameter- efficient fine-tuning methods for pretrained language models: A critical review and assessment, 2023. URLhttps://arxiv.org/abs/2312.12148

  8. [16]

    Bitfit: Simple parameter- efficient fine-tuning for transformer-based masked language-models, 2022

    Elad Ben Zaken, Shauli Ravfogel, and Yoav Goldberg. Bitfit: Simple parameter- efficient fine-tuning for transformer-based masked language-models, 2022. URL https://arxiv.org/abs/2106.10199

  9. [17]

    Platon: Pruning large transformer models with upper con- fidence bound of weight importance, 2022

    Qingru Zhang, Simiao Zuo, Chen Liang, Alexander Bukharin, Pengcheng He, Weizhu Chen, and Tuo Zhao. Platon: Pruning large transformer models with upper con- fidence bound of weight importance, 2022. URLhttps://arxiv.org/abs/ 2206.12562

  10. [18]

    Adaptive budget allocation for parameter-efficient fine-tuning

    Qingru Zhang, Minshuo Chen, Alexander Bukharin, Pengcheng He, Yu Cheng, Weizhu Chen, and Tuo Zhao. Adaptive budget allocation for parameter-efficient fine-tuning. InThe Eleventh International Conference on Learning Representations, 2023. URL https://openreview.net/forum?id=lq62uWRJjiY

Pith tools

Reviewed August 15, 2026 · model on record in the stance chip above.