Parameter-Efficient Continual Learning (PECL)
- Parameter-Efficient Continual Learning (PECL) is a framework that adapts large, pre-trained models to new tasks using minimal parameter updates, thereby addressing catastrophic forgetting.
- It leverages methods like LoRA, adapters, and prompts to introduce low-dimensional updates, balancing stability on previous tasks with plasticity for new challenges.
- Evaluations in PECL combine performance metrics with resource usage measures, highlighting improvements in accuracy, reduced forgetting, and efficient compute/storage trade-offs.
Parameter-Efficient Continual Learning (PECL), also termed Parameter-Efficient Continual Fine-Tuning (PECFT), studies how a large pre-trained model can be adapted over a sequence of tasks while updating and storing only a small fraction of its parameters, rather than repeatedly fine-tuning the full network. In the survey formulation, a pre-trained model is continually adapted by task-specific updates through objectives of the form
with variants that replace replay by regularization, routing, or subspace constraints (Coleman et al., 18 Apr 2025). PECL emerged from the conjunction of continual learning and parameter-efficient fine-tuning, and now spans class-incremental vision, language-model adaptation, multimodal instruction learning, semantic segmentation, and automatic speech recognition.
1. Formal problem setting and evaluation
Continual learning assumes a stream of tasks arriving sequentially, with the central difficulty being catastrophic forgetting: adaptation to task degrades performance on earlier tasks. Parameter-efficient fine-tuning, by contrast, freezes most of a pre-trained model and introduces only a low-dimensional update or a small module. PECL combines these constraints: it seeks stability on old tasks, plasticity on new tasks, and small per-task training, storage, and inference overheads (Coleman et al., 18 Apr 2025).
Evaluation is modality-dependent. General continual-learning studies commonly report average accuracy , average forgetting , forward transfer, and backward transfer (Coleman et al., 18 Apr 2025). LLM-oriented PECL work uses Whole Accuracy and Average Accuracy in continual knowledge extraction, or AP, F.Ra, FWT, and BWT in instruction-following benchmarks (2309.14763). Class-incremental semantic segmentation work evaluates mean IoU and Forget Score, defined as (Muralidhara et al., 26 Jul 2025). ASR work measures word error rate and BWT, where negative BWT indicates forgetting (Eeckt et al., 8 Jun 2026).
A distinctive feature of PECL is that task performance is often evaluated jointly with resource usage. The PECFT survey explicitly separates continual-learning metrics from parameter-efficiency metrics such as trainable parameters per task, model-size efficiency, and storage overhead (Coleman et al., 18 Apr 2025). CLoRA goes further by using NetScore , combining final mIoU, average trainable parameters, and training MACs, thereby making compute and memory part of the evaluation rather than a secondary implementation detail (Muralidhara et al., 26 Jul 2025).
2. Architectural building blocks and update regimes
The basic PECL design space mirrors PEFT. The survey divides PEFT mechanisms into additive methods such as adapters and prompts, reparameterization methods such as LoRA, and selective methods such as masking or BitFit (Coleman et al., 18 Apr 2025). In LoRA, a frozen weight 0 receives a low-rank update
1
so the adapted forward map becomes 2, with parameter overhead 3 per layer (Muralidhara et al., 26 Jul 2025). This low-rank form underlies a large fraction of PECL work because it decouples the frozen backbone from a small trainable subspace.
The continual-learning side of the design space remains equally varied. The survey retains the classical distinctions among regularization-based, replay-based, architecture-based, and optimization-based continual learning, but shows that each can be instantiated with parameter-efficient modules rather than full-model updates (Coleman et al., 18 Apr 2025). ConPET is replay-based but task-number-independent in compute; LAE is memory-free and relies on online/offline PET dynamics; SAPT uses multiple PET blocks with learned selection; EWC-LoRA revisits regularization in low-rank space; and PIECE abandons inserted modules entirely by updating only the top 4 of existing parameters in place (2309.14763).
A common misconception is that PECL is equivalent to prompt-based continual learning. LAE explicitly argues that prompting is only one instantiation of PET, and demonstrates a unified continual-learning framework with Adapter, LoRA, and Prefix modules under the same Learning–Accumulation–Ensemble recipe (Gao et al., 2023). This suggests that PECL is better understood as a family of update parameterizations and continual-learning controls, not as a single architectural pattern.
3. Shared-state and fixed-footprint methods
One line of work keeps the number of adapted parameters effectively constant across tasks. CLoRA is a direct example in class-incremental semantic segmentation: every multi-head attention query and value projection in a frozen ViT encoder is replaced by a LoRA decomposition, and the same adapter 5 is reused for all tasks. Task 6 is trained with standard cross-entropy, while later tasks optimize 7, where the distillation term follows MiB’s background-aware strategy to avoid background shift. Because there is only one set of LoRA weights, inference requires no task-ID and no adapter merging; the update is simply folded once into 8. With rank 9, the adapted projections correspond to about 0 of the full model’s parameters, decoder included. On PASCAL VOC, CLoRA improves over MiB on the 15–1 split from 1 mIoU and 2 FS to 3 mIoU and 4 FS, on 5–3 from 5 and 6 to 7 and 8, and on 10–1 from 9 and 0 to 1 and 2. In the PASCAL-VOC 15–1 scenario, it also yields 3 dB over MiB through a 4 reduction in trainable parameters at almost identical mIoU (Muralidhara et al., 26 Jul 2025).
LAE adopts a different fixed-size strategy. It keeps a frozen pre-trained backbone and maintains two PET modules of the same type: an online module for plasticity and an offline module for stability, with the offline copy updated by EMA,
5
At inference, predictions from the online and offline experts are combined by normalized max-fusion. LAE stores no raw past data and no separate PET copy per task, and it reports 6 on CIFAR-100 with Adapter5 and 7 on ImageNet-R, surpassing DualPrompt by 8 and 9, respectively (Gao et al., 2023).
SAFE also preserves a fixed parameter budget, but splits adaptation into a slow PET branch learned only in the first session and a fast PET branch updated in later sessions. The first session uses a transfer loss built from feature cross-correlation with the pre-trained model, while later sessions use cross-classification and cosine feature-alignment losses to limit semantic drift. During inference, an entropy-based aggregation strategy weights the slow and fast learners. SAFE reports 0 on ImageNet-A versus 1 for RanPAC, 2 average over six datasets versus 3, and memory overhead of about 4–5 of the backbone, constant across sessions (Zhao et al., 2024).
Regularization-based constant-footprint PECL reappears in EWC-LoRA. Instead of allocating a new adapter per task, it trains a shared LoRA branch and penalizes changes in the full 6-space through a diagonal Fisher estimate, using
7
After each task, the LoRA update is merged into the base model and the temporary branch is discarded. On CIFAR-100, DomainNet, ImageNet-R, and ImageNet-A, final-task accuracy rises from 8 to 9, from 0 to 1, from 2 to 3, and from 4 to 5, respectively, relative to Vanilla LoRA (Zheng et al., 19 Feb 2026).
PIECE removes PET modules altogether. It computes importance scores from either the diagonal Fisher (PIECE-F) or a second-order normalized score combining gradient and curvature (PIECE-S), selects the top 6 of parameters, and updates only that in-place subset. The method introduces no new parameters, uses no prior data, and is evaluated on language and multimodal foundation models. On Llama3-8B, PIECE-F attains OP 7 and BWT 8, while PIECE-S attains OP 9 and BWT 0; on LLaVA-1.5-7B, PIECE-S reaches Flickr30K 1, OP 2, and BWT 3 (Wang et al., 19 Nov 2025). The contrast between PIECE-F and PIECE-S makes explicit a recurrent PECL trade-off: higher transfer can come with weaker retention, and stronger retention can reduce adaptivity.
4. Task-modular, routing, and hierarchical methods
A second major regime allocates task-specific PET modules but controls their training or activation to keep continual complexity manageable. ConPET formalizes this in LLM continual learning. Static ConPET adapts replay-based methods such as EMR, EA-EMR, and CRL by replacing full fine-tuning with PET and a dynamic replay strategy that samples from all previous tasks under a fixed batch-count budget, so per-task cost remains 4. Dynamic ConPET instead assigns one PET module per task plus a PET-based selector, activating only top-5 modules per example; with fixed 6, 7, 8, and 9, its per-task cost is 0. ConPET reports that PET reduces tunable parameters from 1 to 2; Static ConPET reduces the scale of tunable parameters by over 3 times and improves by at least 4 absolute points in A and W on all six knowledge-extraction benchmarks, while Dynamic ConPET reaches 5 on FewNERD versus 6 for EMR* (2309.14763).
SAPT also uses multiple PET blocks, but aligns learning and selection through shared attention. For task 7, an input-derived query 8 attends over keys 9, producing attention weights 0 that both form the training-time mixture 1 and perform inference-time soft selection without task-ID. To stabilize the selector, the Attentive Reflection Module trains a lightweight generative replay PET block per task and applies a KL loss so that current attention on pseudo-inputs remains close to stored historical attention. On T5-Large, SAPT-LoRA reaches AP 2, F.Ra 3, FWT 4, and BWT 5 on SuperNI, compared with AP 6 and F.Ra 7 for replay. On LongSeq it reaches AP 8 and F.Ra 9. Removing ARM drops AP to 0 and raises F.Ra to 1, showing that the attention-alignment mechanism is not a minor auxiliary term (Zhao et al., 2024).
HiDe-PET provides a more explicitly decomposed formulation. It models continual learning with pre-training as three subproblems: within-task prediction, task-identity inference, and task-adaptive prediction. The architecture therefore combines task-specific PET parameters 2, task-shared PET parameters 3, a TII head 4, and a TAP head 5, together with stored representation statistics 6 and 7. Across Split CIFAR-100, Split ImageNet-R, Split CUB-200, and Split Cars-196, HiDe-PET improves on recent prompt- and adapter-based baselines. Under Sup-21/1K on Split CIFAR-100, LAE-Adapter reports FAA 8 and HiDe-Adapter 9; gains are larger on fine-grained splits and weaker pre-training (Wang et al., 2024).
PEARL combines task-specific adapters with dynamic rank allocation. Starting from a shared reference model 00, it fine-tunes a copy on the current task, forms the layerwise task vector 01, computes an SVD, and chooses the smallest rank 02 whose explained variance exceeds a proximity-based threshold 03. New LoRA adapters are then initialized from the truncated factors and trained while the reference remains fixed. On Seq-CIFAR100 with 5 tasks under Class-IL, PEARL with ResNet-18 reaches 04 versus 05 for AGILE and 06 for DER++; on ImageNet-R with 10 tasks and ViT-B/16, PEARL reaches 07 versus 08 for InfLoRA and 09 for C-LoRA. Its limitations are equally explicit: parameter isolation causes model size to grow with 10, Class-IL inference cost is 11, and the method requires known task boundaries and per-task full-reference fine-tuning for SVD estimation (Bhat et al., 17 May 2025).
In few-shot class-incremental learning, CPE-CLIP extends prompt-based PECL to a multimodal setting. It freezes CLIP’s vision and language encoders and learns only language prompts, vision prompts derived through a projection 12, and the projection itself, for about 13K trainable parameters, less than 14 of CLIP. Session-wise gradient scaling
15
reduces prompt plasticity as the class set grows. On miniImageNet, the method reports 16 in session 0, 17 in session 8, average 18, and performance drop 19, whereas the next best methods in the summary lie around average 20–21 with drops around 22–23 (D'Alessandro et al., 2023).
5. Spectral and representation-space formulations
Several recent PECL methods replace standard low-rank adaptation by explicitly structured subspaces. In ASR, CSSVD decomposes each pretrained weight matrix 24 by SVD into head and tail singular directions, freezes the head 25, and adapts only the low-energy tail by an approximate rotation
26
For later tasks, rotations are combined by convex weight averaging. On an OWSM v3.2 small model with 27M parameters, only linear weights totaling about 28M parameters are updated. CSSVD reaches average WER 29 and BWT 30 in Experiment 1, and 31 and 32 in Experiment 2, outperforming PECL baselines while staying near zero forgetting (Eeckt et al., 8 Jun 2026).
TailLoR also works in spectral coordinates, but fixes the singular bases 33 and 34 of a pretrained weight 35 and learns only a low-rank perturbation of the singular-value matrix,
36
A soft spectral penalty weights updates more heavily in dominant directions, so optimization is routed into the singular-value tail. On Standard and Long Sequence benchmarks with T5-Large, TailLoR with head protection obtains the best combined OA, 37, slightly above ELLA at 38; on TRACE it reaches OA 39 and BWT 40, compared with 41 and 42 for ELLA (Dragoi et al., 4 Jun 2026). This suggests that not all low-rank coordinates are equally safe for continual adaptation.
CoRe moves the intervention from weight space to representation space. For each task and selected layer, it introduces 43, 44, and 45, and edits a base representation 46 by
47
while regularizing 48. The paper gives an explicit drift bound,
49
so stability is controlled at the level of hidden representations rather than inferred from weight norms. Empirically, CoRe reports the highest accuracy on CIFAR-Inc10 while using the fewest parameters, about 50 of backbone parameters versus 51–52 for adapters, and reports Avg 53 on CIFAR-Inc5 versus 54 for Adapter in the summary (Luo et al., 11 Mar 2026).
These methods indicate a broader shift within PECL: instead of treating low-rank updates as purely engineering devices, recent work uses singular directions, orthogonal subspaces, or representation-level constraints as explicit stability mechanisms. That shift is visible in vision, language, and speech, although the concrete parameterizations remain different across modalities.
6. Theory, resource trade-offs, and open problems
Theoretical work has started to formalize why some PECL schemes forget less than others. NTK-CL recasts test-time forgetting as generalization gaps under Neural Tangent Kernel analysis and identifies three governing factors: training sample size, task-level feature orthogonality, and regularization. Its algorithm responds directly to these factors by tripling each sample’s representation through three branches, using adaptive EMA to preserve intra-task NTK structure, imposing dissimilarity and orthogonality losses to suppress inter-task NTK overlap, and regularizing parameter drift. On CIFAR-100 it reports 55 and 56, compared with 57 and 58 for the best prior baseline listed in the summary; on ImageNet-A it reports 59 and 60, compared with 61 and 62 (Liu et al., 2024).
Several recurring misconceptions can be stated precisely. First, PECL is not inherently rehearsal-free: ConPET stores all past data on disk and SAPT uses generative replay PET blocks, whereas LAE, SAFE, and PIECE are explicitly memory-free or zero-history in the summaries (2309.14763). Second, PECL is not synonymous with per-task parameter growth: Dynamic ConPET, SAPT, PEARL, and CPE-CLIP grow task modules, but CLoRA, EWC-LoRA, SAFE, LAE, and PIECE maintain constant or in-place parameter footprints across tasks (Muralidhara et al., 26 Jul 2025). Third, parameter efficiency is not exhausted by counting trainable parameters. CLoRA’s NetScore shows that mIoU alone can miss substantial compute savings; EWC-LoRA adds about 63 GB Fisher overhead relative to Vanilla LoRA on ViT-B/16; and PEARL’s Class-IL inference requires routing each input through all task heads, so low adaptation cost does not imply low deployment cost (Zheng et al., 19 Feb 2026).
Open problems are repeatedly identified across the literature. The PECFT survey highlights subspace interference, task-agnostic inference, module merging, richer reasoning tasks, and more realistic online or unsupervised streams (Coleman et al., 18 Apr 2025). ConPET proposes hierarchical PET module trees, adaptive replay budgets, and meta-continual PET (2309.14763). PEARL leaves alternative distance metrics and adapter folding as future directions (Bhat et al., 17 May 2025). CoRe points to adaptive rank selection and compression across many task modules (Luo et al., 11 Mar 2026). A plausible implication is that future PECL research will be shaped less by a single dominant PET primitive than by how explicitly a method controls the stability–plasticity trade-off, resource overhead, and task inference under deployment constraints.