REVIEW 4 major objections 5 minor 62 references
Sequence Transferability and Task Order Selection in Continual Learning
T0 review · 4 major / 5 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read Two simple transferability scores predict continual-learning accuracy, and a greedy rule built on them picks task orders that beat random selection.
desk verdict TFT/TRT are sensible but incremental sequence transferability measures; the HCTOS ordering rule contradicts its own hard-to-easy rationale and is empirically under-supported. 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 machinery has three parts. The base component is a pairwise transferability metric $\mathrm{tr}(m, D)$ that estimates how well a model trained on one task transfers to another task's training data; the paper uses LogME for most experiments. On top of it, TFT and TRT average these scores along the task sequence, giving a data-dependent measure of forward transfer and of forgetting, respectively. The third part is the HCTOS greedy rule: train a simple model on each task, compute its transferability score to every other task, then build the order by repeatedly appending the task with the smallest sum of scores to all tasks not yet selected. This rule is designed to make each subsequent step's forward transferability score high, which by the TFT correlation should raise final average accuracy.
What would settle it
Run a replay-based continual learning algorithm (e.g., DER++) on all permutations of a small batch of, say, five tasks from a benchmark such as Split CIFAR-100; compute the algorithm's average accuracy and the TFT score for every permutation. If the rank correlation between TFT and average accuracy is not significantly positive, or if the HCTOS-selected order performs no better than random orders, the paper's central claim would be refuted.
Extended reading notes
Core claim
The central discovery the authors argue for is that the average accuracy of a continual learning algorithm on a sequence of tasks is well approximated by two simple sequence-level quantities: Total Forward Transferability, $\mathrm{tft}(A, \mathcal{D}) = \frac{1}{T-1}\sum_{t=2}^{T} \mathrm{tr}(m_{t-1}, D_t)$, and Total Reverse Transferability, $\mathrm{trt}(A, \mathcal{D}) = \frac{1}{T-1}\sum_{t=1}^{T-1} \mathrm{tr}(m_T, D_t)$, where $\mathrm{tr}$ is any existing pairwise transferability metric and $m_t$ is the model produced by the continual learning algorithm after seeing task $t$. They show empirically that across replay-based algorithms (A-GEM, ER, DER++, X-DER) and three image-classification benchmarks, higher average accuracy goes with higher TFT and TRT, and that for a fixed algorithm, average accuracy over random task orders correlates with the corresponding TFT and TRT values in the majority of settings. Based on the forward measure, they construct HCTOS, which orders tasks greedily by always placing next the task whose summed transferability to all remaining tasks is smallest, drawing on the empirical observation that transferring from hard to easy tasks yields high transfer scores. The paper reports that HCTOS beats random task ordering in one-batch and multi-batch settings and is stable to the number of samples used to train the scoring models and to the choice of base transferability metric.
Load-bearing premise
The load-bearing premise is that transferability scores computed from simple models trained independently on each task, before any continual learning happens, correctly predict which order of tasks will give the continual learning algorithm the highest average accuracy; specifically, that the greedy min-sum rule raises TFT and hence accuracy.
Editorial extensions
If this is right
- TFT and TRT can be used to compare continual learning algorithms on a fixed task sequence without running the full training to completion.
- Given a fixed algorithm, TFT and TRT can rank the hardness of different task sequences, which helps in designing benchmarks and in choosing among candidate orderings.
- HCTOS offers a practical way to reorder a batch of tasks before feeding them to a continual learning algorithm, improving average accuracy over chronological or random order.
- HCTOS remains effective when only a few samples per class are used to compute transferability scores and when different base metrics (LEEP, GBC, TransRate) are substituted for LogME.
- Because TRT is computed with the final model on all previous tasks, it tends to correlate more strongly with average accuracy than TFT does, reflecting the evaluation protocol itself.
Reading between the lines
- If the correlation between TFT and average accuracy holds beyond the benchmarks tested, the same scores could be adapted to class-incremental or online continual learning settings where task boundaries are less clean; the paper itself does not test this.
- The hard-to-easy ordering principle behind HCTOS suggests a potential link to curriculum learning: HCTOS can be viewed as a data-driven curriculum that arranges tasks by mutual transferability, and its ordering could be compared against standard curriculum heuristics.
- Because TFT and TRT inherit the behavior of the chosen base metric, a natural extension is to test whether the observed correlations survive when the base metric is replaced by a learned or domain-distance-based estimator rather than the label- and feature-based ones used here.
- The paper leaves open a model-free version of sequence transferability that predicts TFT and TRT without training any models; such a measure would make task order selection far cheaper for large batches.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes two sequence-level measures, Total Forward Transferability (TFT, Eq. 2) and Total Reverse Transferability (TRT, Eq. 3), defined as averages of an existing pairwise transferability metric (LogME) over the transitions of a continual learning (CL) run. It reports that these measures are positively correlated with average accuracy (AA) across four replay-based CL algorithms and three benchmarks (Section 5.1, Table 1, Figure 1), and it uses the TFT intuition to develop HCTOS (Algorithm 1), a heuristic that orders tasks within a batch by iteratively selecting the task with the smallest sum of transferability scores to all remaining tasks. Experiments on Split CIFAR-100 with DER++ and buffer size 360 claim HCTOS outperforms random ordering and is robust to choice of sample size and base transferability metric (Section 5.2, Figures 2-4).
Significance. If the correlations and the HCTOS advantage were well supported, TFT and TRT would be inexpensive, data-dependent descriptors of task sequences that could aid benchmark design and task-order selection. The correlation analysis covers several algorithms, buffer sizes, and datasets, and the paper is transparent that computing TFT/TRT requires running a CL algorithm (Section 3.3). However, the central task-ordering claim currently rests on a single narrow experiment with no error bars or significance tests, and, more importantly, the greedy rule in Algorithm 1 is not aligned with the TFT objective it is motivated by. These issues need to be resolved before the contributions can be assessed.
major comments (4)
- [3.2, Eqs. (2)-(3), Table 1] The definition of a transferability measure in Section 3.2 makes tr(m, D_target) monotone with the target accuracy after transfer learning. Consequently, TRT in Eq. (3), an average of tr(m_T, D_t) with the final CL model m_T, is by construction an average of proxies for the per-task accuracy of m_T after fine-tuning, while AA in Eq. (1) is the per-task accuracy of m_T without fine-tuning. The reported AA-TRT correlations are therefore partly expected and do not independently validate TRT as a new sequence-level characterization. The authors should either demonstrate that the correlations remain high when the base metric is not calibrated to predict post-transfer accuracy, or provide a formal argument that the relationship is not a near-tautology.
- [4.1, Algorithm 1] The motivation in Section 4.1 says the sequence should be constructed by maximizing the TFT step tr(m_{t_{i-1}}, D_{t_i}) in Eq. (4), citing hard-to-easy transfer as a reason to choose harder tasks first. However, Algorithm 1 lines 7-8 compute L_t = sum_{j not in S ∪ {t}} a_{t,j}, the sum of pairwise transferability scores from candidate task t to all remaining tasks, and select argmin_t L_t. This criterion depends on the candidate as source, not on the current CL model m_{t_{i-1}} as source, so it is not a greedy maximizer of the TFT term. Moreover, if hard-to-easy transfers yield high scores, a hard-first rule would prefer candidates with high outgoing scores to the remaining easy tasks, i.e., argmax, not argmin, of the row sum. No experiment in Section 5.2 measures whether HCTOS orders actually have high TFT or isolates the hard-to-easy mechanism. The authors should either align Algorithm 1 with the TFT objective, or provide direct evidence that the row-sum argmin rule raises TFT and final accuracy.
- [5.2, Figures 2-4] The central HCTOS claim is supported by experiments on a single benchmark (Split CIFAR-100), a single CL algorithm (DER++), and a single buffer size (360). Figures 2-4 do not report error bars, the number of random-order runs used for the baseline, or any significance test. Since the reported advantage over random is likely small relative to order-to-order variance, this is insufficient to support the abstract claim that the method 'can be shown to offer a better performance' than random selection. Please provide means and standard deviations over multiple seeds/order samples and statistical tests, across additional benchmarks, algorithms, and buffer sizes.
- [Table 1] The claim that TFT and TRT are 'well-correlated' with AA is stronger than Table 1 warrants. For example, the AA-TFT correlations on Split tiny-ImageNet for DER++ are 0.44, 0.37, 0.41, and 0.53, several of which are not statistically significant at p < 0.05, and many other entries across the table are moderate or non-significant. The statement that 'more than 70% of settings' show moderate to very high correlations is a post hoc summary that counts coefficients in the moderate range as support. The authors should report confidence intervals or rank correlations, specify exactly which settings violate the claim, and temper the wording of Result 2 and the abstract accordingly.
minor comments (5)
- [3.2] The definition of a transferability measure uses an 'if and only if' condition that is acknowledged to 'rarely hold' in practice. This is better presented as a desideratum or an idealization, rather than a definition, to avoid the impression of a circular construction.
- [5.1] The phrase 'more than 70% of the settings' is imprecise; please provide the exact number of settings and the thresholds used for 'moderate' and 'very high' categories.
- [Figure 2] The caption does not specify how many random orderings were averaged, whether error bars are omitted, or whether the difference is statistically significant; please add this information.
- [Algorithm 1] The 'simple model' trained in lines 1-4 is not fully specified: the main text says ResNet18 with 20 samples per class for Section 5.2, but the optimizer, epochs, and feature-extraction details for the simple models should be stated in the algorithm description or experimental setup.
- [5.1, Benchmarks] The 'Split mutual-CIFAR-10' benchmark is non-standard and its construction is only briefly described; please clarify how the overlapping class is assigned across the five tasks and how the mutual class affects evaluation.
Circularity Check
No significant circularity: TFT/TRT are empirical aggregates of an existing transferability metric, and HCTOS is an evaluated heuristic; self-citations are background only.
full rationale
The paper's central claims are empirical rather than derivational. TFT and TRT (Eqs. 2-3) are defined as averages of a base transferability metric tr, which Section 3.2 explicitly says only approximates an ideal monotonic relation to transfer accuracy ('the above condition rarely holds and existing transferability measures only try to approximate this ideal condition'). Therefore the observed correlations with average accuracy in Table 1 and Figure 1 are empirical findings about LogME, not logical consequences of the definitions. The paper also acknowledges that computing TFT/TRT requires running the CL algorithm and that model-free measures are future work, which is a limitation rather than a disguised fit. HCTOS (Algorithm 1) is a heuristic that computes pairwise transferability scores on cheap simple models and greedily orders tasks; it is compared directly against a random baseline in Section 5.2, with no parameter fitted to the target accuracy. The fact that the greedy rule (minimizing outgoing row sums) may not align with the stated TFT-maximization motivation is a correctness/consistency concern, not circularity. Self-citations (Nguyen et al. 2019, 2020, 2023; Tran et al. 2019) are used as background, definitions, or empirical observations; none is an unverified uniqueness theorem invoked to force the paper's choices. Overall, the derivation chain does not reduce to its own inputs.
Assumptions & free parameters
free parameters (1)
- sample size for simple models in Algorithm 1 =
20 random samples per class
assumptions (4)
- domain assumption The base transferability metric tr(m, D_target) is monotonically related to the target task accuracy after transfer learning.
- domain assumption All tasks are task-incremental classification tasks sharing one input space with task-specific label spaces.
- domain assumption Hard-to-easy task transitions produce higher transferability and learning harder tasks first benefits later transfer.
- ad hoc to paper Greedy selection of the task with the smallest sum of pairwise transferability scores to all remaining tasks approximates maximizing TFT and final accuracy.
Cite this review
Pith. "Pith review of Sequence Transferability and Task Order Selection in Continual Learning." pith.science (2026). https://pith.science/paper/HBAKSWXA
@misc{pith2026250206544,
author = {Pith},
title = {Pith review of: Sequence Transferability and Task Order Selection in Continual Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/HBAKSWXA}},
note = {Machine review of arXiv:2502.06544}
}
read the original abstract
In continual learning, understanding the properties of task sequences and their relationships to model performance is important for developing advanced algorithms with better accuracy. However, efforts in this direction remain underdeveloped despite encouraging progress in methodology development. In this work, we investigate the impacts of sequence transferability on continual learning and propose two novel measures that capture the total transferability of a task sequence, either in the forward or backward direction. Based on the empirical properties of these measures, we then develop a new method for the task order selection problem in continual learning. Our method can be shown to offer a better performance than the conventional strategy of random task selection.
Figures
Reference graph
Works this paper leans on
-
[1]
Task2vec: Task embedding for meta-learning
Alessandro Achille, Michael Lam, Rahul Tewari, Avinash Ravichandran, Subhransu Maji, Charless C Fowlkes, Stefano Soatto, and Pietro Perona. Task2vec: Task embedding for meta-learning. In CVPR , 2019
work page 2019
-
[2]
How stable are transferability metrics evaluations? In ECCV , 2022
Andrea Agostinelli, Michal P \'a ndy, Jasper Uijlings, Thomas Mensink, and Vittorio Ferrari. How stable are transferability metrics evaluations? In ECCV , 2022
work page 2022
-
[3]
An information-theoretic approach to transferability in task transfer learning
Yajie Bao, Yang Li, Shao-Lun Huang, Lin Zhang, Lizhong Zheng, Amir Zamir, and Leonidas Guibas. An information-theoretic approach to transferability in task transfer learning. In ICIP , 2019
work page 2019
-
[4]
The effect of task ordering in continual learning
Samuel J Bell and Neil D Lawrence. The effect of task ordering in continual learning. arXiv preprint arXiv:2205.13323 , 2022
arXiv 2022
-
[5]
Saliency-driven experience replay for continual learning
Giovanni Bellitto, Federica Proietto Salanitri, Matteo Pennisi, Matteo Boschini, Lorenzo Bonicelli, Angelo Porrello, Simone Calderara, Simone Palazzo, and Concetto Spampinato. Saliency-driven experience replay for continual learning. In NeurIPS , 2024
work page 2024
-
[6]
Make continual learning stronger via C-Flat
Ang Bian, Wei Li, Hangjie Yuan, Chengrong Yu, Zixiang Zhao, Mang Wang, Aojun Lu, and Tao Feng. Make continual learning stronger via C-Flat . In NeurIPS , 2024
work page 2024
-
[7]
Class-incremental continual learning into the extended der-verse
Matteo Boschini, Lorenzo Bonicelli, Pietro Buzzega, Angelo Porrello, and Simone Calderara. Class-incremental continual learning into the extended der-verse. TPAMI , 2022
work page 2022
-
[8]
Online algorithms and stochastic approximations
L \'e on Bottou. Online algorithms and stochastic approximations. Online learning in neural networks , 1998
work page 1998
Show all 62 references
-
[9]
Dark experience for general continual learning: a strong, simple baseline
Pietro Buzzega, Matteo Boschini, Angelo Porrello, Davide Abati, and Simone Calderara. Dark experience for general continual learning: a strong, simple baseline. In NeurIPS , 2020
2020
-
[10]
On anytime learning at macroscale
Lucas Caccia, Jing Xu, Myle Ott, Marcaurelio Ranzato, and Ludovic Denoyer. On anytime learning at macroscale. In CoLLAs , 2022
2022
-
[11]
A comprehensive empirical evaluation on online continual learning
Antonio Carta, Andrea Cossu, Julio Hurtado, Vincenzo Lomonaco, Joost Van de Weijer, Hamed Hemati, et al. A comprehensive empirical evaluation on online continual learning. In ICCV Workshops , 2023
2023
-
[12]
Efficient lifelong learning with A-GEM
Arslan Chaudhry, Marc'Aurelio Ranzato, Marcus Rohrbach, and Mohamed Elhoseiny. Efficient lifelong learning with A-GEM . In ICLR , 2019
2019
-
[13]
On tiny episodic memories in continual learning
Arslan Chaudhry, Marcus Rohrbach, Mohamed Elhoseiny, Thalaiyasingam Ajanthan, Puneet K Dokania, Philip HS Torr, and Marc'Aurelio Ranzato. On tiny episodic memories in continual learning. In ICML Workshops , 2019
2019
-
[14]
Is forgetting less a good inductive bias for forward transfer? In ICLR , 2023
Jiefeng Chen, Timothy Nguyen, Dilan Gorur, and Arslan Chaudhry. Is forgetting less a good inductive bias for forward transfer? In ICLR , 2023
2023
-
[15]
A continual learning survey: Defying forgetting in classification tasks
Matthias De Lange, Rahaf Aljundi, Marc Masana, Sarah Parisot, Xu Jia, Ale s Leonardis, Gregory Slabaugh, and Tinne Tuytelaars. A continual learning survey: Defying forgetting in classification tasks. TPAMI , 2021
2021
-
[16]
Continual learning in practice
Tom Diethe, Tom Borchert, Eno Thereska, Borja Balle, and Neil Lawrence. Continual learning in practice. In NeurIPS Workshops , 2018
2018
-
[17]
Orthogonal gradient descent for continual learning
Mehrdad Farajtabar, Navid Azizan, Alex Mott, and Ang Li. Orthogonal gradient descent for continual learning. In AISTATS , 2020
2020
-
[18]
ETran : Energy-based transferability estimation
Mohsen Gholami, Mohammad Akbari, Xinglu Wang, Behnam Kamranian, and Yong Zhang. ETran : Energy-based transferability estimation. In ICCV , 2023
2023
-
[19]
Continual variational dropout: a view of auxiliary local variables in continual learning
Nam Le Hai, Trang Nguyen, Linh Ngo Van, Thien Huu Nguyen, and Khoat Than. Continual variational dropout: a view of auxiliary local variables in continual learning. Machine Learning , 2024
2024
-
[20]
Replay in deep learning: Current approaches and missing biological elements
Tyler L Hayes, Giri P Krishnan, Maxim Bazhenov, Hava T Siegelmann, Terrence J Sejnowski, and Christopher Kanan. Replay in deep learning: Current approaches and missing biological elements. Neural Computation , 2021
2021
-
[21]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR , 2016
2016
-
[22]
Frustratingly easy transferability estimation
Long-Kai Huang, Junzhou Huang, Yu Rong, Qiang Yang, and Ying Wei. Frustratingly easy transferability estimation. In ICML , 2022
2022
-
[23]
Optimal continual learning has perfect memory and is NP -hard
Jeremias Knoblauch, Hisham Husain, and Tom Diethe. Optimal continual learning has perfect memory and is NP -hard. In ICML , 2020
2020
-
[24]
Learning multiple layers of features from tiny images
Alex Krizhevsky. Learning multiple layers of features from tiny images . Master's thesis, University of Toronto, 2009
2009
-
[25]
Learning without forgetting
Zhizhong Li and Derek Hoiem. Learning without forgetting. TPAMI , 2017
2017
-
[26]
Ranking neural checkpoints
Yandong Li, Xuhui Jia, Ruoxin Sang, Yukun Zhu, Bradley Green, Liqiang Wang, and Boqing Gong. Ranking neural checkpoints. In CVPR , 2021
2021
-
[27]
Exploring model transferability through the lens of potential energy
Xiaotong Li, Zixuan Hu, Yixiao Ge, Ying Shan, and Ling-Yu Duan. Exploring model transferability through the lens of potential energy. In ICCV , 2023
2023
-
[28]
Beyond not-forgetting: Continual learning with backward knowledge transfer
Sen Lin, Li Yang, Deliang Fan, and Junshan Zhang. Beyond not-forgetting: Continual learning with backward knowledge transfer. In NeurIPS , 2022
2022
-
[29]
Theory on forgetting and generalization of continual learning
Sen Lin, Peizhong Ju, Yingbin Liang, and Ness Shroff. Theory on forgetting and generalization of continual learning. In ICML , 2023
2023
-
[30]
Gradient episodic memory for continual learning
David Lopez-Paz and Marc'Aurelio Ranzato. Gradient episodic memory for continual learning. In NeurIPS , 2017
2017
-
[31]
The more fine-grained, the better for transfer learning
Farzaneh Mahdisoltani, Guillaume Berger, Waseem Gharbieh, Roland Memisevic, and David Fleet. The more fine-grained, the better for transfer learning. In NeurIPS Workshops , 2018
2018
-
[32]
PackNet : Adding multiple tasks to a single network by iterative pruning
Arun Mallya and Svetlana Lazebnik. PackNet : Adding multiple tasks to a single network by iterative pruning. In CVPR , 2018
2018
-
[33]
Class-incremental learning: Survey and performance evaluation on image classification
Marc Masana, Xialei Liu, Bart omiej Twardowski, Mikel Menta, Andrew D Bagdanov, and Joost Van De Weijer. Class-incremental learning: Survey and performance evaluation on image classification. TPAMI , 2023
2023
-
[34]
Catastrophic interference in connectionist networks: The sequential learning problem
Michael McCloskey and Neal J Cohen. Catastrophic interference in connectionist networks: The sequential learning problem. Psychology of Learning and Motivation , 24:109--165, 1989
1989
-
[35]
Toward understanding catastrophic forgetting in continual learning
Cuong V Nguyen, Alessandro Achille, Michael Lam, Tal Hassner, Vijay Mahadevan, and Stefano Soatto. Toward understanding catastrophic forgetting in continual learning. arXiv preprint arXiv:1908.01091 , 2019
1908 arXiv
-
[36]
LEEP : A new measure to evaluate transferability of learned representations
Cuong V Nguyen, Tal Hassner, Matthias Seeger, and Cedric Archambeau. LEEP : A new measure to evaluate transferability of learned representations. In ICML , 2020
2020
-
[37]
Simple transferability estimation for regression tasks
Cuong N Nguyen, Phong Tran, Lam Si Tung Ho, Vu Dinh, Anh T Tran, Tal Hassner, and Cuong V Nguyen. Simple transferability estimation for regression tasks. In UAI , 2023
2023
-
[38]
Lifelong learning for deep neural networks with Bayesian principles
Cuong V Nguyen, Siddharth Swaroop, Thang D Bui, Yingzhen Li, and Richard E Turner. Lifelong learning for deep neural networks with Bayesian principles . In Towards Human Brain Inspired Lifelong Learning , pages 51--72. World Scientific, 2024
2024
-
[39]
Transferability estimation using Bhattacharyya class separability
Michal P \'a ndy, Andrea Agostinelli, Jasper Uijlings, Vittorio Ferrari, and Thomas Mensink. Transferability estimation using Bhattacharyya class separability . In CVPR , 2022
2022
-
[40]
Continual lifelong learning with neural networks: A review
German I Parisi, Ronald Kemker, Jose L Part, Christopher Kanan, and Stefan Wermter. Continual lifelong learning with neural networks: A review. Neural Networks , 2019
2019
-
[41]
Lifelong learning with non-iid tasks
Anastasia Pentina and Christoph H Lampert. Lifelong learning with non-iid tasks. In NeurIPS , 2015
2015
-
[42]
A theory for knowledge transfer in continual learning
Diana Benavides Prado and Patricia Riddle. A theory for knowledge transfer in continual learning. In CoLLAs , 2022
2022
-
[43]
Formalizing the generalization-forgetting trade-off in continual learning
Krishnan Raghavan and Prasanna Balaprakash. Formalizing the generalization-forgetting trade-off in continual learning. In NeurIPS , 2021
2021
-
[44]
Random path selection for continual learning
Jathushan Rajasegaran, Munawar Hayat, Salman H Khan, Fahad Shahbaz Khan, and Ling Shao. Random path selection for continual learning. In NeurIPS , 2019
2019
-
[45]
iCaRL: Incremental classifier and representation learning
Sylvestre-Alvise Rebuffi, Alexander Kolesnikov, Georg Sperl, and Christoph H Lampert. iCaRL: Incremental classifier and representation learning . In CVPR , 2017
2017
-
[46]
Continual learning in reinforcement environments
Mark Bishop Ring. Continual learning in reinforcement environments . Phd thesis, University of Texas at Austin, 1994
1994
-
[47]
Prototypical networks for few-shot learning
Jake Snell, Kevin Swersky, and Richard Zemel. Prototypical networks for few-shot learning. In NeurIPS , 2017
2017
-
[48]
OTCE : A transferability metric for cross-domain cross-task representations
Yang Tan, Yang Li, and Shao-Lun Huang. OTCE : A transferability metric for cross-domain cross-task representations. In CVPR , 2021
2021
-
[49]
Mind the interference: Retaining pre-trained knowledge in parameter efficient continual learning of vision-language models
Longxiang Tang, Zhuotao Tian, Kai Li, Chunming He, Hantao Zhou, Hengshuang Zhao, Xiu Li, and Jiaya Jia. Mind the interference: Retaining pre-trained knowledge in parameter efficient continual learning of vision-language models. In ECCV , 2024
2024
-
[50]
A lifelong learning perspective for mobile robot control
Sebastian Thrun. A lifelong learning perspective for mobile robot control. Intelligent Robots and Systems , pages 201--214, 1995
1995
-
[51]
Transferability and hardness of supervised classification tasks
Anh T Tran, Cuong V Nguyen, and Tal Hassner. Transferability and hardness of supervised classification tasks. In ICCV , 2019
2019
-
[52]
Matching networks for one shot learning
Oriol Vinyals, Charles Blundell, Timothy Lillicrap, Koray Kavukcuoglu, and Daan Wierstra. Matching networks for one shot learning. In NeurIPS , 2016
2016
-
[53]
Continual learning for visual search with backward consistent feature embedding
Timmy ST Wan, Jun-Cheng Chen, Tzer-Yi Wu, and Chu-Song Chen. Continual learning for visual search with backward consistent feature embedding. In CVPR , 2022
2022
-
[54]
A comprehensive survey of continual learning: Theory, method and application
Liyuan Wang, Xingxing Zhang, Hang Su, and Jun Zhu. A comprehensive survey of continual learning: Theory, method and application. TPAMI , 2024
2024
-
[55]
Large scale incremental learning
Yue Wu, Yinpeng Chen, Lijuan Wang, Yuancheng Ye, Zicheng Liu, Yandong Guo, and Yun Fu. Large scale incremental learning. In CVPR , 2019
2019
-
[56]
Fast and accurate transferability measurement by evaluating intra-class feature variance
Huiwen Xu and U Kang. Fast and accurate transferability measurement by evaluating intra-class feature variance. In ICCV , 2023
2023
-
[57]
Pick the best pre-trained model: Towards transferability estimation for medical image segmentation
Yuncheng Yang, Meng Wei, Junjun He, Jie Yang, Jin Ye, and Yun Gu. Pick the best pre-trained model: Towards transferability estimation for medical image segmentation. In MICCAI , 2023
2023
-
[58]
Optimization and generalization of regularization-based continual learning: a loss approximation viewpoint
Dong Yin, Mehrdad Farajtabar, Ang Li, Nir Levine, and Alex Mott. Optimization and generalization of regularization-based continual learning: a loss approximation viewpoint. arXiv preprint arXiv:2006.10974 , 2021
2006 arXiv
-
[59]
Lifelong learning with dynamically expandable networks
Jaehong Yoon, Eunho Yang, Jeongtae Lee, and Sung Ju Hwang. Lifelong learning with dynamically expandable networks. In ICLR , 2018
2018
-
[60]
LogME : Practical assessment of pre-trained models for transfer learning
Kaichao You, Yong Liu, Jianmin Wang, and Mingsheng Long. LogME : Practical assessment of pre-trained models for transfer learning. In ICML , 2021
2021
-
[61]
Continual learning through synaptic intelligence
Friedemann Zenke, Ben Poole, and Surya Ganguli. Continual learning through synaptic intelligence. In ICML , 2017
2017
-
[62]
write newline
" write newline "" before.all 'output.state := FUNCTION fin.entry add.period write newline FUNCTION new.block output.state before.all = 'skip after.block 'output.state := if FUNCTION new.sentence output.state after.block = 'skip output.state before.all = 'skip after.sentence '...
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.