REVIEW 4 major objections 4 minor 49 references
LoRASuite: Efficient LoRA Adaptation Across Large Language Model Upgrades
T0 review · 4 major / 4 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read LoRASuite claims old LoRA adapters can be recycled across LLM upgrades, beating full retraining on some backbones.
desk verdict Real problem, first framing, but the transfer matrix is undefined for the actual rectangular embeddings and the headline gains seem to come from the high-LR fine-tuning step rather than the transfer. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the embedding-derived transfer matrix $W_h = E_o^{-1}E_n$, which is composed into every head-level update, e.g. $(\Delta W_Q^j)_n = W_h^T (\Delta W_Q^i)_o ((W_Q^i)_o)^T W_h (W_Q^j)_n$, so that a single linear map is responsible for moving LoRA updates across hidden-space changes. Around it sit the layer-mapping machinery (minibatch CKA with a dynamic-programming alignment under a maximum-offset constraint), the head-mapping machinery (cosine similarity over input-independent interaction matrices $W_{QK}$ and $W_{VO}$, assigned by the Hungarian algorithm), and an SVD step that re-factors each transformed update into low-rank $B_n, A_n$. A deliberate small fine-tuning stage compensates for the numerical instability of purely matrix-multiplication transforms.
What would settle it
For an upgrade such as MiniCPM-S-1B to MiniCPM-2B (hidden size 1536 to 2304), identify the exact matrix used as $W_h$ and check whether it satisfies $W_h E_o = E_n$ on the shared-token rows; if no such matrix is specified, substitute a random matrix of the same shape in 'LoRASuite w/o LFT' and compare — if accuracy barely changes, the transfer matrix is not carrying the claimed effect.
Extended reading notes
Core claim
LoRASuite's central claim is that a LoRA update $B_o A_o$ trained on an older LLM can be transplanted into a newer LLM of the same architecture by transforming it through known parameter differences rather than retraining. Hidden-size and vocabulary changes are handled with a transfer matrix $W_h = E_o^{-1}E_n$ built from the two models' embedding weights (with a shared-token intersection step when vocabularies differ); intermediate-size changes use $W_i = W_o^{-1} W_h W_n$; layer-depth changes are aligned by a dynamic program over minibatch CKA similarities; and attention-head differences are assigned with the Hungarian algorithm on cosine similarities between per-head interaction matrices $W_{QK}$ and $W_{VO}$. The relocated head-level updates are factored back into low-rank form by SVD, and a short fine-tuning pass is added because the transformed parameters come from matrix products rather than backpropagation. On five backbone upgrade pairs the method consistently beats same-scale vanilla LoRA, and on MiniCPM-S-1B to MiniCPM-2B and Qwen-1.5-1.8B to Qwen-2.5-3B it beats full-scale LoRA retraining on math tasks by +1.4 and +6.6 average points.
Load-bearing premise
The load-bearing premise is that one linear map computed from the two models' embedding weights can carry LoRA updates from the old hidden space to the new one; in the reported upgrades the embedding matrices are rectangular, so the stated inverse $W_h = E_o^{-1}E_n$ does not exist and the paper does not specify its replacement.
Editorial extensions
If this is right
- LoRA weights trained for an older model version can be transplanted into the new version rather than discarded, removing the main retraining cost of model upgrades.
- With only 100 fine-tuning samples, LoRASuite beats full 10,000-sample LoRA retraining on MiniCPM math tasks (43.80 vs 42.39 average) and on Qwen math tasks (56.88 vs 50.32).
- The same recipe transfers DoRA adapters to within less than 1 point of full-scale retraining, so the approach generalizes beyond vanilla LoRA.
- Memory drops by 5.5 GB and training time by 78.23% compared with full LoRA retraining, which is what makes per-app adapters on devices economically plausible.
Reading between the lines
- Because the reported hidden-size upgrades all involve rectangular embedding matrices, the written formula $W_h = E_o^{-1}E_n$ cannot be evaluated as stated; replacing it with a least-squares pseudo-inverse is the natural minimal variant to test and is not reported in the paper.
- If the embedding-derived map is genuinely carrying the transfer, the same construction should extend to cross-family upgrades that share a tokenizer; the paper restricts itself to same-architecture upgrades, so this is an open testable extrapolation.
- The finding that LoRASuite's advantage jumps from +0.27 points at learning rate $10^{-4}$ to +21.30 at $9 \times 10^{-4}$ suggests the transferred initialization matters mainly through the fine-tuning trajectory, so a sweep over optimizers and schedules is a direct way to separate initialization value from fine-tuning value.
- The method's modularity means any improved component (better similarity metric than CKA, better assignment than Hungarian) can be swapped in independently; comparing components one at a time would isolate which stage contributes most.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes LoRASuite, a method for adapting LoRA adapters trained on an older LLM to a newer version of the same architecture family without retraining from scratch. The authors categorize model upgrades into six types (vocabulary size, hidden size, intermediate size, layer depth, head count, attention type) and propose modular remedies: a transfer matrix W_h = E_o^{-1}E_n computed from the embedding weights of the two models (for vocab/hidden changes), a similar W_i for intermediate sizes, a dynamic-programming layer mapping driven by minibatch CKA similarities, and a Hungarian-based attention-head mapping using cosine similarity of input-independent interaction matrices; the transferred parameters are then decomposed by SVD and optionally refined by a small-scale fine-tuning step (LFT). Experiments across six backbone upgrade pairs and fifteen math/commonsense datasets report that LoRASuite with 100-1000 examples outperforms same-scale vanilla LoRA and, for MiniCPM and Qwen, exceeds full-scale LoRA retraining, while cutting memory by 5.5 GB and time by 78.23%. The paper also reports ablations of the layer- and head-mapping components.
Significance. If the central claims held, the contribution would be practically significant: recycling existing LoRA adapters across model upgrades would avoid expensive retraining, and the modular treatment of six upgrade factors is a sensible decomposition of a problem that has received little direct attention. The evaluation is broad (six backbone pairs, fifteen datasets), and the ablations (Figures 11-13) at least demonstrate that the layer- and head-mapping components affect post-fine-tuning accuracy. Credit is also due for the honest limitations paragraph, which concedes that the fine-tuning step is required for optimal performance. However, the paper's core construction is currently not well-defined: W_h uses an inverse of rectangular embedding matrices that does not exist in the stated sense, Eq. (3) is asserted without derivation or code, the CKA inputs are unspecified, and the headline comparisons are run with different learning-rate schedules for LoRASuite and its baselines. The Yi-6B to Yi-1.5-9B results (w/o LFT far above vanilla) also contradict the paper's own explanation that the transfer is numerically unstable.
major comments (4)
- [Section 3.1, Eq. (3), Algorithm 2] The central transfer construction is not instantiable as written. The paper defines W_h = E_o^{-1} E_n, but in every reported upgrade with a hidden-size change the embedding matrices are rectangular with the vocabulary dimension far exceeding the hidden dimension (e.g., MiniCPM-S-1B: 73,008x1,536 to MiniCPM-2B: 123,040x2,304; Bloom-560m to Bloomz-1B1: 250k x 1,024 to 250k x 1,536), so the inverse E_o^{-1} does not exist. The shared-token intersection step does not fix this, since the number of shared tokens is still far larger than the hidden dimension. The same problem affects W_i = W_o^{-1} W_h W_n for up/down projections (e.g., Llama-2-7B intermediate 11,008 to Llama-3-8B intermediate 14,336). No pseudo-inverse, least-squares objective, rank condition, or regularization is stated, and since no code is released, Tables 4-18 cannot be traced to any definite construction. The authors should specify the exact construction (e.g., E_o^+ E_n with a stated SVD cutoff or ridge objective), verify it on the reported settings, and state whether any of the reported numbers change.
- [Section 4.1, Tables 4-5, Tables 7-8, Figure 4(b)] The main comparison that supports the abstract's claim ('consistently outperforms small-scale vanilla LoRA') is confounded by unequal training recipes. In Tables 7 and 8, LoRASuite's fine-tuning step uses LR 1e-3 with zero warmup, while LoRA baselines use LR 3e-4 with warmup ratio 0.1 (or 100 warmup steps); the main tables therefore do not show a like-for-like comparison at the same data scale. The paper's own sensitivity analysis (Figure 4(b)) shows that when the learning rate is lowered to 1e-4 the LoRASuite advantage over LoRA (Small) shrinks to 0.27 points, and no matched-recipe baseline is reported for the other five backbone pairs in Figures 2-3. As a result, the reported gains and the 'exceeds full-scale LoRA retraining' claims rest on a narrow, unstated hyperparameter window. Please report matched-schedule baselines (same LR, same warmup, same data scale) in all main tables, plot both methods across the LR grid with per-task numbers, and report variance over seeds.
- [Section 3.1, Algorithm 1, Eq. (3)] The CKA computation and the head-level update are under-specified. It is not stated which corpus or prompt set is used to collect the activations for the CKA similarity matrix S, how many minibatches are used, what batch size and sequence length, or whether activations come from the base models or from LoRA-adapted models; the heatmaps in Figures 7-10 therefore cannot be reproduced. Equation (3) is asserted without derivation: the composition W_h^T (Delta W_Q)_o (W_Q)_o^T W_h (W_Q)_n mixes the LoRA update, the original projection weights, and the target projection weights in a way that is not explained, and the dimension bookkeeping when both head count and hidden size change (H_o != H_n, d_o != d_n) is not spelled out. A derivation of Eq. (3) (or a reference to the linear-algebra identity it relies on), together with the concrete CKA configuration, is needed before the method can be evaluated independently.
- [Section 4.1, Tables 9-10] The interpretation of the 'w/o LFT' rows is internally inconsistent. On MiniCPM the paper notes (correctly) that 'LoRASuite w/o LFT' matches the vanilla model (Tables 4-5: 23.96 vs 23.85 math; 32.69 vs 32.72 commonsense) and attributes this to numerical instability of matrix-multiplication-only transforms. But for Yi-6B to Yi-1.5-9B the same 'w/o LFT' configuration is far above vanilla (math 73.07 vs 65.86; commonsense 74.29 vs 56.78), and in Table 9 the fine-tuned LoRASuite is actually worse than 'w/o LFT' on AQuA (30.31 vs 38.58). One of these two patterns must be wrong, or the mechanism must be something other than 'numerical instability' (e.g., the eval pipeline has high variance, or the Yi numbers reflect an uncontrolled component). The paper should explain this discrepancy and report per-seed variance, since the flagship claim that the transfer itself is valuable rests entirely on the post-LFT numbers.
minor comments (4)
- [Throughout] Typos and formatting issues: 'increase the learning rate to to compensate' (Section 3.2), 'fintuing' (Section 4.1), 'Sensitive Analysis' (Section 4.2), inconsistent 'LoRa'/'LoRA' capitalization, and the 'SV AMP' column header should be typeset correctly.
- [Tables 4-18 and Figures 4, 11-13] No randomness control is reported: the tables show single-run numbers without seeds or confidence intervals, which matters in particular for the small-scale (100-example) settings where accuracy differences of 1-2 points are used to support the component ablations.
- [Algorithm 1, Section 3.3] The pseudocode's input/output notation ('/# Store...') is inconsistent with the surrounding text, and the complexity claim in Section 3.3 writes O(nlayer(Delta_layer^2 + n_head^3)) without defining the scope of the constants; please clean up the pseudocode formatting.
- [Abstract, Figure 1] The abstract's memory saving of 5.5 GB and time reduction of 78.23% are reported as headline numbers, but Figure 1 measures a single setting (MiniCPM); please state explicitly that these figures are setting-specific.
Circularity Check
No significant circularity: the transfer mappings are computed from known backbone weights and similarity metrics, not from the benchmark numbers they are evaluated against.
full rationale
LoRASuite's derivation chain does not reduce to its own inputs. The transfer matrix Wh = E_o^-1 E_n (Section 3.1) and the head-level update in Equation (3) are constructed from the embedding and projection weights of the old and new backbones, together with CKA and cosine-similarity measures; none of these quantities is fitted to the downstream task accuracies reported in Tables 4-5 or Figures 2-3, so the 'LoRASuite w LFT' results are genuine evaluations rather than in-sample predictions of fitted values. The paper's own limitation statement (Section 5: 'LoRASuite requires an additional small-scale fine-tuning step to achieve optimal performance') and the near-vanilla 'LoRASuite w/o LFT' rows weaken the causal claim that the algebraic transformation itself supplies the gains, and the comparison is complicated by unequal learning-rate and warmup settings between LoRASuite and LoRA (Small) in Tables 7-8, but these are correctness and experimental-design concerns, not circularity. The undefined E_o^-1 for rectangular embedding matrices is an instantiation gap rather than a definitional equivalence. No self-citation is load-bearing: references [28], [29], and [33] are external methodological sources for CKA and the Hungarian algorithm. Therefore no circular step is exhibited.
Assumptions & free parameters
free parameters (3)
- LFT learning rate =
1e-3
- Fine-tuning data scale =
100 or 1,000 samples
- CKA minibatch configuration =
not specified
assumptions (4)
- ad hoc to paper Embedding matrices E_o and E_n admit a meaningful inverse or pseudo-inverse such that W_h = E_o^{-1} E_n maps old hidden representations to new ones.
- domain assumption CKA similarity between layers computed on a shared input distribution is a valid guide for transferring LoRA weights.
- domain assumption Attention head behavior is captured by input-independent interaction matrices W_QK and W_VO, and cosine similarity among them is a valid matching criterion.
- domain assumption The small-scale fine-tuning step preserves and stabilizes transformed LoRA weights.
Cite this review
Pith. "Pith review of LoRASuite: Efficient LoRA Adaptation Across Large Language Model Upgrades." pith.science (2026). https://pith.science/paper/BMFFUYQU
@misc{pith2026250513515,
author = {Pith},
title = {Pith review of: LoRASuite: Efficient LoRA Adaptation Across Large Language Model Upgrades},
year = {2026},
howpublished = {\url{https://pith.science/paper/BMFFUYQU}},
note = {Machine review of arXiv:2505.13515}
}
read the original abstract
As Large Language Models (LLMs) are frequently updated, LoRA weights trained on earlier versions quickly become obsolete. The conventional practice of retraining LoRA weights from scratch on the latest model is costly, time-consuming, and environmentally detrimental, particularly as the diversity of LLMs and downstream tasks expands. This motivates a critical question: "How can we efficiently leverage existing LoRA weights to adapt to newer model versions?" To address this, we propose LoRASuite, a modular approach tailored specifically to various types of LLM updates. First, we compute a transfer matrix utilizing known parameters from both old and new LLMs. Next, we allocate corresponding layers and attention heads based on centered kernel alignment and cosine similarity metrics, respectively. A subsequent small-scale, skillful fine-tuning step ensures numerical stability. Experimental evaluations demonstrate that LoRASuite consistently surpasses small-scale vanilla LoRA methods. Notably, on backbone LLMs such as MiniCPM and Qwen, LoRASuite even exceeds the performance of full-scale LoRA retraining, with average improvements of +1.4 and +6.6 points on math tasks, respectively. Additionally, LoRASuite significantly reduces memory consumption by 5.5 GB and computational time by 78.23%.
Figures
Figures from the paper (7 more)
Reference graph
Works this paper leans on
-
[1]
Lora: Low-rank adaptation of large language models,
E. J. Hu, Y . Shen, P. Wallis, Z. Allen-Zhu, Y . Li, S. Wang, L. Wang, and W. Chen, “Lora: Low-rank adaptation of large language models,” in International Conference on Learning Representations, 2022. [Online]. Available: https://openreview.net/forum?id=nZeVKeeFYf9
work page 2022
-
[2]
Gemini nano with the google ai edge sdk,
Google, “Gemini nano with the google ai edge sdk,” 2025. [Online]. Available: https://developer.android.com/ai/gemini-nano
work page 2025
-
[3]
Autodroid: Llm-powered task automation in android,
H. Wen, Y . Li, G. Liu, S. Zhao, T. Yu, T. J.-J. Li, S. Jiang, Y . Liu, Y . Zhang, and Y . Liu, “Autodroid: Llm-powered task automation in android,” in Proceedings of the 30th Annual International Conference on Mobile Computing and Networking, 2024, pp. 543–557
work page 2024
-
[4]
Llama 2: Open foundation and fine-tuned chat models,
H. Touvron, L. Martin, K. Stone, P. Albert, A. Almahairi, Y . Babaei, N. Bashlykov, S. Batra, P. Bhargava, S. Bhosaleet al., “Llama 2: Open foundation and fine-tuned chat models,” arXiv preprint arXiv:2307.09288, 2023
arXiv 2023
-
[5]
The llama 4 herd: The beginning of a new era of natively multimodal ai innovation,
Meta, “The llama 4 herd: The beginning of a new era of natively multimodal ai innovation,”
-
[6]
A. Yang, B. Yang, B. Huiet al., “Qwen2 technical report,” arXiv preprint arXiv:2407.10671, 2024
arXiv 2024
-
[7]
A. Yang, B. Yang, B. Zhanget al., “Qwen2.5 technical report,”arXiv preprint arXiv:2412.15115, 2024
arXiv 2024
-
[8]
Fwdllm: Efficient federated finetuning of large language models with perturbed inferences,
M. Xu, D. Cai, Y . Wu, X. Li, and S. Wang, “Fwdllm: Efficient federated finetuning of large language models with perturbed inferences,” in 2024 USENIX Annual Technical Conference (USENIX ATC 24), 2024, pp. 579–596
work page 2024
Show all 49 references
-
[9]
Understanding the performance and estimating the cost of llm fine-tuning,
Y . Xia, J. Kim, Y . Chen, H. Ye, S. Kundu, C. Hao, and N. Talati, “Understanding the performance and estimating the cost of llm fine-tuning,” arXiv preprint arXiv:2408.04693, 2024
2024 arXiv
-
[10]
Energy and policy considerations for modern deep learning research,
E. Strubell, A. Ganesh, and A. McCallum, “Energy and policy considerations for modern deep learning research,” in Proceedings of the AAAI conference on artificial intelligence, vol. 34, no. 09, 2020, pp. 13 693–13 696
2020
-
[11]
What you can cram into a single vector: Probing sentence embeddings for linguistic properties,
A. Conneau, G. Kruszewski, G. Lample, L. Barrault, and M. Baroni, “What you can cram into a single vector: Probing sentence embeddings for linguistic properties,” arXiv preprint arXiv:1805.01070, 2018
2018 arXiv
-
[12]
Towards automated circuit discovery for mechanistic interpretability,
A. Conmy, A. Mavor-Parker, A. Lynch, S. Heimersheim, and A. Garriga-Alonso, “Towards automated circuit discovery for mechanistic interpretability,”Advances in Neural Information Processing Systems, vol. 36, pp. 16 318–16 352, 2023
2023
-
[13]
Locating and editing factual associations in gpt,
K. Meng, D. Bau, A. Andonian, and Y . Belinkov, “Locating and editing factual associations in gpt,” Advances in Neural Information Processing Systems, vol. 35, pp. 17 359–17 372, 2022
2022
-
[14]
Analyzing transformers in embedding space,
G. Dar, M. Geva, A. Gupta, and J. Berant, “Analyzing transformers in embedding space,”arXiv preprint arXiv:2209.02535, 2022
2022 arXiv
-
[15]
A practical review of mechanistic inter- pretability for transformer-based language models,
D. Rai, Y . Zhou, S. Feng, A. Saparov, and Z. Yao, “A practical review of mechanistic inter- pretability for transformer-based language models,” arXiv preprint arXiv:2407.02646, 2024
2024
-
[16]
Parameter-efficient transfer learning for nlp,
N. Houlsby, A. Giurgiu, S. Jastrzebski, B. Morrone, Q. De Laroussilhe, A. Gesmundo, M. At- tariyan, and S. Gelly, “Parameter-efficient transfer learning for nlp,” inInternational conference on machine learning. PMLR, 2019, pp. 2790–2799
2019
-
[17]
The power of scale for parameter-efficient prompt tuning,
B. Lester, R. Al-Rfou, and N. Constant, “The power of scale for parameter-efficient prompt tuning,” arXiv preprint arXiv:2104.08691, 2021
2021 arXiv
-
[18]
Few-shot parameter-efficient fine-tuning is better and cheaper than in-context learning,
H. Liu, D. Tam, M. Muqeeth, J. Mohta, T. Huang, M. Bansal, and C. A. Raffel, “Few-shot parameter-efficient fine-tuning is better and cheaper than in-context learning,” Advances in Neural Information Processing Systems, vol. 35, pp. 1950–1965, 2022. 10
1950
-
[19]
Bitfit: Simple parameter-efficient fine-tuning for transformer-based masked language-models,
E. B. Zaken, S. Ravfogel, and Y . Goldberg, “Bitfit: Simple parameter-efficient fine-tuning for transformer-based masked language-models,” arXiv preprint arXiv:2106.10199, 2021
2021
-
[20]
Training neural networks with fixed sparse masks,
Y .-L. Sung, V . Nair, and C. A. Raffel, “Training neural networks with fixed sparse masks,” Advances in Neural Information Processing Systems, vol. 34, pp. 24 193–24 205, 2021
2021
-
[21]
Input-tuning: Adapting unfamiliar inputs to frozen pretrained models,
S. An, Y . Li, Z. Lin, Q. Liu, B. Chen, Q. Fu, W. Chen, N. Zheng, and J.-G. Lou, “Input-tuning: Adapting unfamiliar inputs to frozen pretrained models,” arXiv preprint arXiv:2203.03131, 2022
2022 arXiv
-
[22]
Adaptive budget allocation for parameter-efficient fine-tuning,
Q. Zhang, M. Chen, A. Bukharin, P. He, Y . Cheng, W. Chen, and T. Zhao, “Adaptive budget allocation for parameter-efficient fine-tuning,” in The Eleventh International Conference on Learning Representations , 2023. [Online]. Available: https://openreview.net/forum?id= lq62uWRJjiY
2023
-
[23]
Losparse: Structured compres- sion of large language models based on low-rank and sparse approximation,
Y . Li, Y . Yu, Q. Zhang, C. Liang, P. He, W. Chen, and T. Zhao, “Losparse: Structured compres- sion of large language models based on low-rank and sparse approximation,” inInternational Conference on Machine Learning. PMLR, 2023, pp. 20 336–20 350
2023
-
[24]
Dora: Weight-decomposed low-rank adaptation,
S.-Y . Liu, C.-Y . Wang, H. Yin, P. Molchanov, Y .-C. F. Wang, K.-T. Cheng, and M.-H. Chen, “Dora: Weight-decomposed low-rank adaptation,” arXiv preprint arXiv:2402.09353, 2024
2024 arXiv
-
[25]
Pissa: Principal singular values and singular vectors adaptation of large language models,
F. Meng, Z. Wang, and M. Zhang, “Pissa: Principal singular values and singular vectors adaptation of large language models,” arXiv preprint arXiv:2404.02948, 2024
2024 arXiv
-
[26]
Lora+: Efficient low rank adaptation of large models,
S. Hayou, N. Ghosh, and B. Yu, “Lora+: Efficient low rank adaptation of large models,”arXiv preprint arXiv:2402.12354, 2024
2024 arXiv
-
[27]
Delving deep into rectifiers: Surpassing human-level performance on imagenet classification,
K. He, X. Zhang, S. Ren, and J. Sun, “Delving deep into rectifiers: Surpassing human-level performance on imagenet classification,” in Proceedings of the IEEE international conference on computer vision, 2015, pp. 1026–1034
2015
-
[28]
Do wide and deep networks learn the same things? uncovering how neural network representations vary with width and depth,
T. Nguyen, M. Raghu, and S. Kornblith, “Do wide and deep networks learn the same things? uncovering how neural network representations vary with width and depth,” in International Conference on Learning Representations , 2021. [Online]. Available: https://openreview.net/forum?...
2021
-
[29]
Similarity of neural network representations revisited,
S. Kornblith, M. Norouzi, H. Lee, and G. Hinton, “Similarity of neural network representations revisited,” in International conference on machine learning. PMLR, 2019, pp. 3519–3529
2019
-
[30]
Feature selection via dependence maximization,
L. Song, A. Smola, A. Gretton, J. Bedo, and K. Borgwardt, “Feature selection via dependence maximization,” The Journal of Machine Learning Research, vol. 13, pp. 1393–1434, 2012
2012
-
[31]
Post selection inference with kernels,
M. Yamada, Y . Umezu, K. Fukumizu, and I. Takeuchi, “Post selection inference with kernels,” in International conference on artificial intelligence and statistics. PMLR, 2018, pp. 152–160
2018
-
[32]
On the variance of the adaptive learning rate and beyond,
L. Liu, H. Jiang, P. He, W. Chen, X. Liu, J. Gao, and J. Han, “On the variance of the adaptive learning rate and beyond,” arXiv preprint arXiv:1908.03265, 2019
1908 arXiv
-
[33]
Algorithms for the assignment and transportation problems,
J. Munkres, “Algorithms for the assignment and transportation problems,”Journal of the society for industrial and applied mathematics, vol. 5, no. 1, pp. 32–38, 1957
1957
-
[34]
Boolq: Exploring the surprising difficulty of natural yes/no questions,
C. Clark, K. Lee, M.-W. Chang, T. Kwiatkowski, M. Collins, and K. Toutanova, “Boolq: Exploring the surprising difficulty of natural yes/no questions,”arXiv preprint arXiv:1905.10044, 2019
1905 arXiv
-
[35]
Piqa: Reasoning about physical commonsense in natural language,
Y . Bisk, R. Zellers, J. Gao, Y . Choiet al., “Piqa: Reasoning about physical commonsense in natural language,” in Proceedings of the AAAI conference on artificial intelligence , vol. 34, no. 05, 2020, pp. 7432–7439
2020
-
[36]
Socialiqa: Commonsense reasoning about social interactions,
M. Sap, H. Rashkin, D. Chen, R. LeBras, and Y . Choi, “Socialiqa: Commonsense reasoning about social interactions,” arXiv preprint arXiv:1904.09728, 2019
1904 arXiv
-
[37]
Hellaswag: Can a machine really finish your sentence?
R. Zellers, A. Holtzman, Y . Bisk, A. Farhadi, and Y . Choi, “Hellaswag: Can a machine really finish your sentence?” arXiv preprint arXiv:1905.07830, 2019. 11
1905 arXiv
-
[38]
Winogrande: An adversarial winograd schema challenge at scale,
K. Sakaguchi, R. L. Bras, C. Bhagavatula, and Y . Choi, “Winogrande: An adversarial winograd schema challenge at scale,” Communications of the ACM, vol. 64, no. 9, pp. 99–106, 2021
2021
-
[39]
Think you have solved question answering? try arc, the ai2 reasoning challenge,
P. Clark, I. Cowhey, O. Etzioni, T. Khot, A. Sabharwal, C. Schoenick, and O. Tafjord, “Think you have solved question answering? try arc, the ai2 reasoning challenge,” arXiv preprint arXiv:1803.05457, 2018
2018 arXiv
-
[40]
Can a suit of armor conduct electricity? a new dataset for open book question answering,
T. Mihaylov, P. Clark, T. Khot, and A. Sabharwal, “Can a suit of armor conduct electricity? a new dataset for open book question answering,” arXiv preprint arXiv:1809.02789, 2018
2018 arXiv
-
[41]
Llm-adapters: An adapter family for parameter-efficient fine-tuning of large language models,
Z. Hu, Y . Lan, L. Wang, W. Xu, E.-P. Lim, R. K.-W. Lee, L. Bing, and S. Poria, “Llm-adapters: An adapter family for parameter-efficient fine-tuning of large language models,” arXiv preprint arXiv:2304.01933, 2023
2023 arXiv
-
[42]
Program induction by rationale generation: Learning to solve and explain algebraic word problems,
W. Ling, D. Yogatama, C. Dyer, and P. Blunsom, “Program induction by rationale generation: Learning to solve and explain algebraic word problems,” arXiv preprint arXiv:1705.04146, 2017
2017 arXiv
-
[43]
Training verifiers to solve math word problems,
K. Cobbe, V . Kosaraju, M. Bavarian, M. Chen, H. Jun, L. Kaiser, M. Plappert, J. Tworek, J. Hilton, R. Nakano et al., “Training verifiers to solve math word problems,” arXiv preprint arXiv:2110.14168, 2021
2021 arXiv
-
[44]
Mawps: A math word problem repository,
R. Koncel-Kedziorski, S. Roy, A. Amini, N. Kushman, and H. Hajishirzi, “Mawps: A math word problem repository,” inProceedings of the 2016 conference of the north american chapter of the association for computational linguistics: human language technologies, 2016, pp. 1152–1157
2016
-
[45]
Are nlp models really able to solve simple math word problems?
A. Patel, S. Bhattamishra, and N. Goyal, “Are nlp models really able to solve simple math word problems?” arXiv preprint arXiv:2103.07191, 2021
2021 arXiv
-
[46]
Chain-of- thought prompting elicits reasoning in large language models,
J. Wei, X. Wang, D. Schuurmans, M. Bosma, F. Xia, E. Chi, Q. V . Le, D. Zhouet al., “Chain-of- thought prompting elicits reasoning in large language models,” Advances in neural information processing systems, vol. 35, pp. 24 824–24 837, 2022
2022
-
[47]
Transformer layers as painters,
Q. Sun, M. Pickett, A. K. Nain, and L. Jones, “Transformer layers as painters,” in Proceedings of the AAAI Conference on Artificial Intelligence, vol. 39, no. 24, 2025, pp. 25 219–25 227
2025
-
[48]
Insights on representational similarity in neural networks with canonical correlation,
A. Morcos, M. Raghu, and S. Bengio, “Insights on representational similarity in neural networks with canonical correlation,” Advances in neural information processing systems, vol. 31, 2018. 12 Algorithm 3 Hungarian Algorithm Require: Cost matrixC of sizem×n Ensure: Optimal as...
2018
-
[2025]
Available: https://ai.meta.com/blog/llama-4-multimodal-intelligence/
[Online]. Available: https://ai.meta.com/blog/llama-4-multimodal-intelligence/
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.