REVIEW 2 major objections 4 minor 14 references
An actor-critic policy can decide when to fine-tune a foundation model under a hard compute budget and still reach near full-fine-tuning accuracy.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · grok-4.5
2026-07-14 09:55 UTC pith:QMTTEVG5
load-bearing objection Clean CMDP framing of when to PEFT under a hard budget, with a working actor-critic policy and a DP special case; the 4%/97% numbers are real on AG News but rest on an untested three-scalar Markov state and a narrow regime. the 2 major comments →
Learning to Fine-tune Foundation Models under Resource Limitations
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
Under a fixed fine-tuning budget the optimal timing of updates can be learned online by treating model performance, residual budget and data-shift score as the state of a constrained MDP and solving it with an actor-critic policy; the resulting policy consistently outperforms equal-budget random or always-on baselines and approaches unrestricted full-parameter accuracy with far fewer steps.
What carries the argument
The constrained MDP whose state is the triple (moving-average performance, remaining budget, KL data-shift) and whose Lagrangian is optimized by an actor-critic pair that jointly learns the fine-tune-or-skip policy and the dual multiplier for the budget.
Load-bearing premise
The three summary numbers—recent accuracy, leftover budget and KL drift—are assumed to capture everything about the past that matters for future data and for the accuracy gain of the next fine-tuning step.
What would settle it
Run the same RoBERTa/AG-News experiment while adding an extra state feature that records which layers were last adapted; if the learned policy’s accuracy gap over random budgeted fine-tuning shrinks or disappears, the original three-dimensional state is insufficient.
If this is right
- A device can achieve nearly the same long-term accuracy as continuous full fine-tuning while spending only a quarter of the compute budget.
- The same control loop can be reused for any PEFT method (LoRA, adapters, etc.) because the framework never depends on the internal mechanics of the fine-tuning step.
- When post-fine-tuning accuracy can be predicted in advance, the identical problem reduces to a classical dynamic program whose optimal schedule can be computed offline.
- Budget-aware fine-tuning becomes a standard constrained-RL problem rather than a collection of ad-hoc drift detectors or loss-plateau heuristics.
Where Pith is reading between the lines
- The same state-and-budget formulation could be applied to multi-task or multi-device settings by simply expanding the action space to choose which model or which task to update next.
- If energy harvests periodically replenish the budget, the dual variable itself becomes a time-varying signal that automatically schedules more aggressive fine-tuning after recharge events.
- A lightweight surrogate that predicts accuracy gain from the current (p, d) pair would let the DP special case be used online, removing the need for post-decision evaluation.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies when to fine-tune a pre-trained foundation model under a finite compute budget when labeled batches arrive online. The decision is cast as a constrained MDP whose state is the triple (data-shift score d_t via class-frequency KL, moving-average performance p_t, remaining budget b_t). The objective is to maximize expected cumulative evaluation accuracy subject to an expected total cost constraint; the Lagrangian is optimized online by a simple actor-critic scheme (logistic actor, linear critic) with dual ascent on λ. A special case in which post-fine-tuning accuracy can be known a priori is reduced to a dynamic program. Experiments on AG News with RoBERTa (batch size 200, T=200, three seeds) report that, under a hard budget of 50 LoRA updates, the learned policy reaches average reward 0.85 / best accuracy 89.2 %, outperforming random budgeted fine-tuning by more than 4 % and attaining 97 % of always-full-parameter accuracy while using only 25 % of the steps.
Significance. The timing-of-update question under an explicit cumulative budget is under-explored relative to PEFT capacity allocation or offline threshold rules. The CMDP/Lagrangian formulation is standard yet cleanly specialized to continual fine-tuning, and the DP special case supplies an exact baseline when accuracy is predictable. If the reported gains hold under broader conditions, the work would give practitioners a principled, online controller for resource-limited continual adaptation of foundation models. Strengths include an explicit dual formulation, a fully specified actor-critic algorithm, and a transparent comparison against always/never/random budgeted baselines under identical step budgets.
major comments (2)
- Section III-B (Transition paragraph) asserts that s_t = (d_t, p_t, b_t) is a sufficient Markov state, i.e., that future data arrivals and post-FT accuracy a(Θ_t; D_ev) depend on the past only through these three scalars. No diagnostic is provided (e.g., residual-history ablation, comparison against a richer state that includes last-adapted layers or non-class features). If residual history is material, the learned policy solves a different MDP from the true environment and the Abstract/Table I gains are not guaranteed to transfer.
- The central empirical claim (Abstract and Table I: >4 % over random budgeted FT, 97 % of full-parameter accuracy at 25 % of the steps) rests on a single dataset (AG News), one base model (RoBERTa), fixed batch size B=200, horizon T=200, and three random seeds. No ablation of the class-frequency KL proxy, of the moving-average window w, or of alternative PEFT methods is reported. Without these checks the headline numbers remain regime-specific.
minor comments (4)
- Algorithm 1 and the surrounding text never state the concrete values of free parameters w, β_c, η_φ, η_θ, η_λ used in the reported runs; they should be listed for reproducibility.
- Figure 2 caption and the by-label numbers in the text are not accompanied by error bars or standard deviations across the three seeds, making the visual comparison harder to assess.
- The dual update in Algorithm 1 uses a smoothed per-step cost Ć; a short remark on how the choice of β_c affects constraint satisfaction would help readers implement the method.
- Related-work discussion of Online-LoRA and CARA is accurate but could more explicitly contrast the online dual-ascent mechanism with their offline or loss-plateau triggers.
Circularity Check
No circularity: the CMDP formulation, actor-critic updates, and empirical rewards are self-contained and do not reduce by construction to their own inputs.
full rationale
The paper defines a constrained MDP whose state (d_t, p_t, b_t) is a modelling choice (KL class-shift, moving-average accuracy, remaining budget), whose reward is the observed post-action evaluation accuracy a(Θ; D_ev), and whose cost is the indicator of a fine-tuning step. The actor-critic algorithm (Algorithm 1) maximises the Lagrangian of realised cumulative reward minus λ·cost; λ itself is updated from the realised average cost. Nothing is fitted to a subset of the target metric and then re-labelled a “prediction,” no uniqueness theorem is imported from the authors’ prior work, and the special-case DP merely assumes a priori knowledge of accuracies (an oracle setting, not a circular derivation). The experimental numbers (Table I, Fig. 2) are direct measurements of the learned policy against baselines under the same budget; they do not follow tautologically from the state definition. The Markov-sufficiency claim is an assumption whose validity is open, but that is a modelling risk, not circularity. Consequently the derivation chain contains no self-definitional, fitted-as-prediction, or self-citation-load-bearing steps.
Axiom & Free-Parameter Ledger
free parameters (4)
- moving-average window w
- cost-smoothing factor β_c
- actor/critic learning rates η_φ, η_θ, η_λ
- batch size B = 200 and horizon T = 200
axioms (4)
- domain assumption The triple (d_t, p_t, b_t) is a sufficient Markov state for future data and post-FT accuracy.
- domain assumption Fine-tuning cost depends only on batch size n_t via a known function C(n_t).
- ad hoc to paper Class-frequency KL divergence adequately quantifies distribution shift for the decision.
- standard math Standard Lagrangian duality for constrained MDPs yields an optimal trade-off when λ is updated online.
read the original abstract
We study the problem of optimal continual fine-tuning for a pre-trained Foundation Model deployed at a resource-limited device. At each time slot, a new batch of training data arrives, and the controller is faced with two options: either use the data to fine-tune the model and incur a compute cost, or do not fine-tune the model and discard the data. After the decision, the performance of the current model is measured in terms of an application-specific performance metric such as classification accuracy. Our objective is to learn an optimal policy that determines \emph{when to fine-tune the model} on a single task (e.g., sentiment analysis), under a finite compute budget. We formulate this online decision-making problem as a constrained Markov Decision Process, where the system state captures three essential aspects: (\textit{i}) model's performance, (\textit{ii}) computational budget, and (\textit{iii}) data distribution relevance to historic data encountered up to that point. The transition to the next state is stochastic and therefore, we propose a reinforcement learning-based method to solve this problem, namely the \emph{actor-critic} algorithm. We also consider the special case where the performance of fine-tuning for a given model can be predicted or estimated prior to decision; in this case the problem becomes a Dynamic Programming one. Experiments with a large pre-trained model on a widely-used text classification dataset demonstrate that our method consistently outperforms fine-tuning approaches with the same compute budget by more than $4\%$ in terms of accuracy and achieves $97\%$ of full-parameter fine-tuning accuracy while requiring only $25\%$ of the fine-tuning steps.
Figures
Reference graph
Works this paper leans on
-
[1]
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,” inProc. Int. Conf. Learn. Represent. (ICLR), 2022
2022
-
[2]
D. Aggarwal, S. Damle, N. Goyal, S. Lokam, and S. Sitaram, ”Explor- ing Continual Fine-Tuning for Enhancing Language Ability in Large Language Model,”arXiv preprint arXiv:2410.16006, 2024. [Online]
Pith/arXiv arXiv 2024
-
[3]
S. Hayou, N. Ghosh, and B. Yu, ”LoRA+: Efficient Low Rank Adapta- tion of Large Models,”arXiv preprint arXiv:2402.12354, 2024
Pith/arXiv arXiv 2024
-
[4]
N. Houlsby, A. Giurgiu, S. Jastrzebski, B. Morrone, Q. de Laroussilhe, A. Gesmundo, M. Attariyan, and S. Gelly, ”Parameter-Efficient Transfer Learning for NLP,”arXiv preprint arXiv:1902.00751, 2019
Pith/arXiv arXiv 1902
-
[5]
B. Lester, R. Al-Rfou, and N. Constant, ”The Power of Scale for Parameter-Efficient Prompt Tuning,”arXiv preprint:2104.08691, 2021
Pith/arXiv arXiv 2021
-
[6]
Karimi Mahabadi, J
R. Karimi Mahabadi, J. Henderson, and S. Ruder, ”Compacter: Efficient Low-Rank Hypercomplex Adapter Layers,” inNeurIPS, 2021
2021
-
[7]
Online-LoRA: Task-free online continual learning via low-rank adaptation,
X. Wei, G. Li, and R. Marculescu, “Online-LoRA: Task-free online continual learning via low-rank adaptation,” in Proc. IEEE/CVF Winter Conf. Appl. Comput. Vis. (W ACV), Feb. 2025, pp. 6634–6645
2025
-
[8]
Z. Wan, W. Du, L. Li, M. Pan, and X. Qin, ”Budget-Adaptive Adapter Tuning in Orthogonal Subspaces for Continual Learning in LLMs,” arXiv preprint arXiv:2505.22358, 2025
arXiv 2025
-
[9]
Q. Zhang, M. Chen, A. Bukharin, P. He, Y . Cheng, W. Chen, and T. Zhao, ”Adalora: Adaptive Budget Allocation for Parameter-Efficient Fine-Tuning,”arXiv preprint arXiv:2303.10512, 2023
Pith/arXiv arXiv 2023
-
[10]
P. S. Bhat, S. Yazdani, E. Arani, and B. Zonooz, ”Parameter Effi- cient Continual Learning with Dynamic Low-Rank Adaptation,”arXiv preprint arXiv:2505.11998, 2025
arXiv 2025
-
[11]
Towards cost-sensitive adapta- tion: When is it worth updating your predictive model?,
I. Zliobait ˙e, M. Budka, and F. T. Stahl, “Towards cost-sensitive adapta- tion: When is it worth updating your predictive model?,” Neurocomput- ing, vol. 150, pp. 240–249, 2015
2015
-
[12]
Cost-aware retraining for machine learning,
A. Mahadevan and M. Mathioudakis, “Cost-aware retraining for machine learning,” Knowledge-Based Systems, vol. 293, p. 111610, 2024
2024
-
[13]
An empirical study of Lagrangian methods in safe reinforcement learning,
L. Spoor, ´A. Serra-G ´omez, A. Plaat, and T. Moerland, “An empirical study of Lagrangian methods in safe reinforcement learning,” arXiv preprint arXiv:2510.17564, 2025
arXiv 2025
-
[14]
Y . Liu, M. Ott, N. Goyal, J. Du, M. Joshi, D. Chen, O. Levy, M. Lewis, L. Zettlemoyer, and V . Stoyanov, ”RoBERTa: A robustly optimized BERT pretraining approach,” arXiv preprint arXiv:1907.11692, 2019
Pith/arXiv arXiv 1907
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.