Papers
Topics
Authors
Recent
Search
2000 character limit reached

Parameter-Efficient Continual Learning (PECL)

Updated 6 July 2026
  • 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 fΘ0f_{\Theta_0} is continually adapted by task-specific updates ΔΘt\Delta\Theta^t through objectives of the form

minΔΘt  LM(Dt,Mt;Θ0+k=1tΔΘk)s.t.ΔΘt0Θ00,\min_{\Delta\Theta^t}\; \mathcal L_M\bigl(D^t,M^t;\Theta_0+\sum_{k=1}^t\Delta\Theta^k\bigr) \quad \text{s.t.} \quad \|\Delta\Theta^t\|_0 \ll \|\Theta_0\|_0,

with variants that replace replay MtM^t 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 D1,,DTD^1,\dots,D^T arriving sequentially, with the central difficulty being catastrophic forgetting: adaptation to task tt 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 ANA_N, average forgetting FNF_N, 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 FS=mIoUjointmIoUCLFS=\text{mIoU}_{\mathrm{joint}}-\text{mIoU}_{\mathrm{CL}} (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 ΩN\Omega_N, 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 ΔΘt\Delta\Theta^t0 receives a low-rank update

ΔΘt\Delta\Theta^t1

so the adapted forward map becomes ΔΘt\Delta\Theta^t2, with parameter overhead ΔΘt\Delta\Theta^t3 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 ΔΘt\Delta\Theta^t4 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 ΔΘt\Delta\Theta^t5 is reused for all tasks. Task ΔΘt\Delta\Theta^t6 is trained with standard cross-entropy, while later tasks optimize ΔΘt\Delta\Theta^t7, 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 ΔΘt\Delta\Theta^t8. With rank ΔΘt\Delta\Theta^t9, the adapted projections correspond to about minΔΘt  LM(Dt,Mt;Θ0+k=1tΔΘk)s.t.ΔΘt0Θ00,\min_{\Delta\Theta^t}\; \mathcal L_M\bigl(D^t,M^t;\Theta_0+\sum_{k=1}^t\Delta\Theta^k\bigr) \quad \text{s.t.} \quad \|\Delta\Theta^t\|_0 \ll \|\Theta_0\|_0,0 of the full model’s parameters, decoder included. On PASCAL VOC, CLoRA improves over MiB on the 15–1 split from minΔΘt  LM(Dt,Mt;Θ0+k=1tΔΘk)s.t.ΔΘt0Θ00,\min_{\Delta\Theta^t}\; \mathcal L_M\bigl(D^t,M^t;\Theta_0+\sum_{k=1}^t\Delta\Theta^k\bigr) \quad \text{s.t.} \quad \|\Delta\Theta^t\|_0 \ll \|\Theta_0\|_0,1 mIoU and minΔΘt  LM(Dt,Mt;Θ0+k=1tΔΘk)s.t.ΔΘt0Θ00,\min_{\Delta\Theta^t}\; \mathcal L_M\bigl(D^t,M^t;\Theta_0+\sum_{k=1}^t\Delta\Theta^k\bigr) \quad \text{s.t.} \quad \|\Delta\Theta^t\|_0 \ll \|\Theta_0\|_0,2 FS to minΔΘt  LM(Dt,Mt;Θ0+k=1tΔΘk)s.t.ΔΘt0Θ00,\min_{\Delta\Theta^t}\; \mathcal L_M\bigl(D^t,M^t;\Theta_0+\sum_{k=1}^t\Delta\Theta^k\bigr) \quad \text{s.t.} \quad \|\Delta\Theta^t\|_0 \ll \|\Theta_0\|_0,3 mIoU and minΔΘt  LM(Dt,Mt;Θ0+k=1tΔΘk)s.t.ΔΘt0Θ00,\min_{\Delta\Theta^t}\; \mathcal L_M\bigl(D^t,M^t;\Theta_0+\sum_{k=1}^t\Delta\Theta^k\bigr) \quad \text{s.t.} \quad \|\Delta\Theta^t\|_0 \ll \|\Theta_0\|_0,4 FS, on 5–3 from minΔΘt  LM(Dt,Mt;Θ0+k=1tΔΘk)s.t.ΔΘt0Θ00,\min_{\Delta\Theta^t}\; \mathcal L_M\bigl(D^t,M^t;\Theta_0+\sum_{k=1}^t\Delta\Theta^k\bigr) \quad \text{s.t.} \quad \|\Delta\Theta^t\|_0 \ll \|\Theta_0\|_0,5 and minΔΘt  LM(Dt,Mt;Θ0+k=1tΔΘk)s.t.ΔΘt0Θ00,\min_{\Delta\Theta^t}\; \mathcal L_M\bigl(D^t,M^t;\Theta_0+\sum_{k=1}^t\Delta\Theta^k\bigr) \quad \text{s.t.} \quad \|\Delta\Theta^t\|_0 \ll \|\Theta_0\|_0,6 to minΔΘt  LM(Dt,Mt;Θ0+k=1tΔΘk)s.t.ΔΘt0Θ00,\min_{\Delta\Theta^t}\; \mathcal L_M\bigl(D^t,M^t;\Theta_0+\sum_{k=1}^t\Delta\Theta^k\bigr) \quad \text{s.t.} \quad \|\Delta\Theta^t\|_0 \ll \|\Theta_0\|_0,7 and minΔΘt  LM(Dt,Mt;Θ0+k=1tΔΘk)s.t.ΔΘt0Θ00,\min_{\Delta\Theta^t}\; \mathcal L_M\bigl(D^t,M^t;\Theta_0+\sum_{k=1}^t\Delta\Theta^k\bigr) \quad \text{s.t.} \quad \|\Delta\Theta^t\|_0 \ll \|\Theta_0\|_0,8, and on 10–1 from minΔΘt  LM(Dt,Mt;Θ0+k=1tΔΘk)s.t.ΔΘt0Θ00,\min_{\Delta\Theta^t}\; \mathcal L_M\bigl(D^t,M^t;\Theta_0+\sum_{k=1}^t\Delta\Theta^k\bigr) \quad \text{s.t.} \quad \|\Delta\Theta^t\|_0 \ll \|\Theta_0\|_0,9 and MtM^t0 to MtM^t1 and MtM^t2. In the PASCAL-VOC 15–1 scenario, it also yields MtM^t3 dB over MiB through a MtM^t4 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,

MtM^t5

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 MtM^t6 on CIFAR-100 with Adapter5 and MtM^t7 on ImageNet-R, surpassing DualPrompt by MtM^t8 and MtM^t9, 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 D1,,DTD^1,\dots,D^T0 on ImageNet-A versus D1,,DTD^1,\dots,D^T1 for RanPAC, D1,,DTD^1,\dots,D^T2 average over six datasets versus D1,,DTD^1,\dots,D^T3, and memory overhead of about D1,,DTD^1,\dots,D^T4–D1,,DTD^1,\dots,D^T5 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 D1,,DTD^1,\dots,D^T6-space through a diagonal Fisher estimate, using

D1,,DTD^1,\dots,D^T7

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 D1,,DTD^1,\dots,D^T8 to D1,,DTD^1,\dots,D^T9, from tt0 to tt1, from tt2 to tt3, and from tt4 to tt5, 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 tt6 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 tt7 and BWT tt8, while PIECE-S attains OP tt9 and BWT ANA_N0; on LLaVA-1.5-7B, PIECE-S reaches Flickr30K ANA_N1, OP ANA_N2, and BWT ANA_N3 (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 ANA_N4. Dynamic ConPET instead assigns one PET module per task plus a PET-based selector, activating only top-ANA_N5 modules per example; with fixed ANA_N6, ANA_N7, ANA_N8, and ANA_N9, its per-task cost is FNF_N0. ConPET reports that PET reduces tunable parameters from FNF_N1 to FNF_N2; Static ConPET reduces the scale of tunable parameters by over FNF_N3 times and improves by at least FNF_N4 absolute points in A and W on all six knowledge-extraction benchmarks, while Dynamic ConPET reaches FNF_N5 on FewNERD versus FNF_N6 for EMR* (2309.14763).

SAPT also uses multiple PET blocks, but aligns learning and selection through shared attention. For task FNF_N7, an input-derived query FNF_N8 attends over keys FNF_N9, producing attention weights FS=mIoUjointmIoUCLFS=\text{mIoU}_{\mathrm{joint}}-\text{mIoU}_{\mathrm{CL}}0 that both form the training-time mixture FS=mIoUjointmIoUCLFS=\text{mIoU}_{\mathrm{joint}}-\text{mIoU}_{\mathrm{CL}}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 FS=mIoUjointmIoUCLFS=\text{mIoU}_{\mathrm{joint}}-\text{mIoU}_{\mathrm{CL}}2, F.Ra FS=mIoUjointmIoUCLFS=\text{mIoU}_{\mathrm{joint}}-\text{mIoU}_{\mathrm{CL}}3, FWT FS=mIoUjointmIoUCLFS=\text{mIoU}_{\mathrm{joint}}-\text{mIoU}_{\mathrm{CL}}4, and BWT FS=mIoUjointmIoUCLFS=\text{mIoU}_{\mathrm{joint}}-\text{mIoU}_{\mathrm{CL}}5 on SuperNI, compared with AP FS=mIoUjointmIoUCLFS=\text{mIoU}_{\mathrm{joint}}-\text{mIoU}_{\mathrm{CL}}6 and F.Ra FS=mIoUjointmIoUCLFS=\text{mIoU}_{\mathrm{joint}}-\text{mIoU}_{\mathrm{CL}}7 for replay. On LongSeq it reaches AP FS=mIoUjointmIoUCLFS=\text{mIoU}_{\mathrm{joint}}-\text{mIoU}_{\mathrm{CL}}8 and F.Ra FS=mIoUjointmIoUCLFS=\text{mIoU}_{\mathrm{joint}}-\text{mIoU}_{\mathrm{CL}}9. Removing ARM drops AP to ΩN\Omega_N0 and raises F.Ra to ΩN\Omega_N1, 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 ΩN\Omega_N2, task-shared PET parameters ΩN\Omega_N3, a TII head ΩN\Omega_N4, and a TAP head ΩN\Omega_N5, together with stored representation statistics ΩN\Omega_N6 and ΩN\Omega_N7. 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 ΩN\Omega_N8 and HiDe-Adapter ΩN\Omega_N9; 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 ΔΘt\Delta\Theta^t00, it fine-tunes a copy on the current task, forms the layerwise task vector ΔΘt\Delta\Theta^t01, computes an SVD, and chooses the smallest rank ΔΘt\Delta\Theta^t02 whose explained variance exceeds a proximity-based threshold ΔΘt\Delta\Theta^t03. 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 ΔΘt\Delta\Theta^t04 versus ΔΘt\Delta\Theta^t05 for AGILE and ΔΘt\Delta\Theta^t06 for DER++; on ImageNet-R with 10 tasks and ViT-B/16, PEARL reaches ΔΘt\Delta\Theta^t07 versus ΔΘt\Delta\Theta^t08 for InfLoRA and ΔΘt\Delta\Theta^t09 for C-LoRA. Its limitations are equally explicit: parameter isolation causes model size to grow with ΔΘt\Delta\Theta^t10, Class-IL inference cost is ΔΘt\Delta\Theta^t11, 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 ΔΘt\Delta\Theta^t12, and the projection itself, for about ΔΘt\Delta\Theta^t13K trainable parameters, less than ΔΘt\Delta\Theta^t14 of CLIP. Session-wise gradient scaling

ΔΘt\Delta\Theta^t15

reduces prompt plasticity as the class set grows. On miniImageNet, the method reports ΔΘt\Delta\Theta^t16 in session 0, ΔΘt\Delta\Theta^t17 in session 8, average ΔΘt\Delta\Theta^t18, and performance drop ΔΘt\Delta\Theta^t19, whereas the next best methods in the summary lie around average ΔΘt\Delta\Theta^t20–ΔΘt\Delta\Theta^t21 with drops around ΔΘt\Delta\Theta^t22–ΔΘt\Delta\Theta^t23 (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 ΔΘt\Delta\Theta^t24 by SVD into head and tail singular directions, freezes the head ΔΘt\Delta\Theta^t25, and adapts only the low-energy tail by an approximate rotation

ΔΘt\Delta\Theta^t26

For later tasks, rotations are combined by convex weight averaging. On an OWSM v3.2 small model with ΔΘt\Delta\Theta^t27M parameters, only linear weights totaling about ΔΘt\Delta\Theta^t28M parameters are updated. CSSVD reaches average WER ΔΘt\Delta\Theta^t29 and BWT ΔΘt\Delta\Theta^t30 in Experiment 1, and ΔΘt\Delta\Theta^t31 and ΔΘt\Delta\Theta^t32 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 ΔΘt\Delta\Theta^t33 and ΔΘt\Delta\Theta^t34 of a pretrained weight ΔΘt\Delta\Theta^t35 and learns only a low-rank perturbation of the singular-value matrix,

ΔΘt\Delta\Theta^t36

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, ΔΘt\Delta\Theta^t37, slightly above ELLA at ΔΘt\Delta\Theta^t38; on TRACE it reaches OA ΔΘt\Delta\Theta^t39 and BWT ΔΘt\Delta\Theta^t40, compared with ΔΘt\Delta\Theta^t41 and ΔΘt\Delta\Theta^t42 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 ΔΘt\Delta\Theta^t43, ΔΘt\Delta\Theta^t44, and ΔΘt\Delta\Theta^t45, and edits a base representation ΔΘt\Delta\Theta^t46 by

ΔΘt\Delta\Theta^t47

while regularizing ΔΘt\Delta\Theta^t48. The paper gives an explicit drift bound,

ΔΘt\Delta\Theta^t49

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 ΔΘt\Delta\Theta^t50 of backbone parameters versus ΔΘt\Delta\Theta^t51–ΔΘt\Delta\Theta^t52 for adapters, and reports Avg ΔΘt\Delta\Theta^t53 on CIFAR-Inc5 versus ΔΘt\Delta\Theta^t54 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 ΔΘt\Delta\Theta^t55 and ΔΘt\Delta\Theta^t56, compared with ΔΘt\Delta\Theta^t57 and ΔΘt\Delta\Theta^t58 for the best prior baseline listed in the summary; on ImageNet-A it reports ΔΘt\Delta\Theta^t59 and ΔΘt\Delta\Theta^t60, compared with ΔΘt\Delta\Theta^t61 and ΔΘt\Delta\Theta^t62 (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 ΔΘt\Delta\Theta^t63 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.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Parameter-Efficient Continual Learning (PECL).