Papers
Topics
Authors
Recent
Search
2000 character limit reached

FL2T: Forget Less by Learning Together

Updated 12 January 2026
  • FL2T is a continual learning framework that enables order-agnostic, concept-incremental learning, mitigating catastrophic forgetting in diffusion models and federated environments.
  • It employs a set-invariant proxy module with transformer decoders to capture inter-concept interactions through prompt-conditioned attention and contrastive regularization.
  • FL2T’s dual regularization and dynamic parameter partitioning preserve prior knowledge efficiently, as shown by improved image and text alignment metrics on benchmarks.

Forget Less by Learning Together (FL2T) is a continual learning framework addressing catastrophic forgetting in models tasked with incrementally acquiring new knowledge without compromising previously learned skills. Originally proposed for custom diffusion models (CDMs), FL2T facilitates concurrent, order-agnostic concept learning by leveraging inter-concept interactions and dynamic parameter partitioning, thereby maintaining knowledge retention in both centralized and federated settings (Kaushik et al., 5 Jan 2026, Guo et al., 17 Mar 2025). The FL2T paradigm is supported by a set-invariant module that guides feature selection using learned proxies, and is broadly applicable across multimodal tasks, including instruction tuning in federated learning.

1. Order-Agnostic Concept-Incremental Learning

FL2T is motivated by the limitations of standard continual learning protocols, which typically require a fixed, sequential ordering of tasks. FL2T, by contrast, explicitly operates in an order-agnostic and concept-incremental regime: given GG customization tasks T={T1,,TG}T = \{T_1,\ldots,T_G\}, new concepts can be introduced in any permutation π(T1,,TG)\pi(T_1,\ldots,T_G). For each task gg, a dataset Tg={(xgk,pgk,ygk)}T_g = \{(x_g^k, p_g^k, y_g^k)\} is provided, where xgkx_g^k denotes sample images, pgkp_g^k are textual prompts, and ygky_g^k are associated concept tokens. Three critical constraints are imposed:

  1. Distinct concepts: Yg(i<gYi)=Y_g \cap (\bigcup_{i<g} Y_i) = \emptyset for all gg; cross-task concept duplication is disallowed.
  2. Order-agnosticity: Task order can be arbitrarily permuted during training.
  3. No replay: Past task data are not stored or retrievable in future iterations.

This formulation is particularly suitable for CDMs and federated learning scenarios where the arrival order of new tasks/concepts is typically uncontrolled and privacy considerations preclude data sharing (Kaushik et al., 5 Jan 2026, Guo et al., 17 Mar 2025).

2. Set-Invariant Inter-Concept Interaction via Proxies

Central to FL2T is a permutation-invariant inter-concept learning module integrating transformer decoders with proxy embeddings. For each previously learned concept, a stable embedding T={T1,,TG}T = \{T_1,\ldots,T_G\}0 is maintained. Proxies T={T1,,TG}T = \{T_1,\ldots,T_G\}1 (initialized as T={T1,,TG}T = \{T_1,\ldots,T_G\}2) capture contextualized relevance conditioned on the current task. The process involves:

  • Self-attention over proxies T={T1,,TG}T = \{T_1,\ldots,T_G\}3 and cross-attention between proxies (query) and the target prompt's embedding T={T1,,TG}T = \{T_1,\ldots,T_G\}4 (key/value) through stacked transformer decoder layers.
  • Refinement: The output, denoted T={T1,,TG}T = \{T_1,\ldots,T_G\}5, encodes prompt-conditioned inter-concept dependencies.
  • Concept representation: Each refined proxy concatenated with its original concept embedding is passed through an MLP T={T1,,TG}T = \{T_1,\ldots,T_G\}6 to yield T={T1,,TG}T = \{T_1,\ldots,T_G\}7 for T={T1,,TG}T = \{T_1,\ldots,T_G\}8.
  • Contrastive regularization: To prevent over-coupling (“rank collapse”), a set-level contrastive loss is imposed:

T={T1,,TG}T = \{T_1,\ldots,T_G\}9

where π(T1,,TG)\pi(T_1,\ldots,T_G)0 is cosine similarity and π(T1,,TG)\pi(T_1,\ldots,T_G)1 is a temperature hyperparameter.

Proxies are used to learn prompt-dependent relevance weights π(T1,,TG)\pi(T_1,\ldots,T_G)2 for all π(T1,,TG)\pi(T_1,\ldots,T_G)3, determining which prior concepts most effectively guide knowledge transfer and retention for the current learning episode (Kaushik et al., 5 Jan 2026).

3. Regularized Knowledge Consolidation and Parameter Partitioning

FL2T generalizes concept consolidation by combining task-specific and task-shared regularization:

  • Task-Specific Knowledge (TSP): Orthogonality is enforced between the low-rank LoRA subspaces π(T1,,TG)\pi(T_1,\ldots,T_G)4 (new task) and π(T1,,TG)\pi(T_1,\ldots,T_G)5 (previous tasks), weighted by learned π(T1,,TG)\pi(T_1,\ldots,T_G)6:

π(T1,,TG)\pi(T_1,\ldots,T_G)7

  • Task-Shared Knowledge (TSH): Each task's subspace update π(T1,,TG)\pi(T_1,\ldots,T_G)8 is encouraged to align with a global shared subspace π(T1,,TG)\pi(T_1,\ldots,T_G)9 via projection gg0:

gg1

  • Full objective: The total loss for task gg2 is:

gg3

with gg4 as trade-off coefficients (gg5 empirically).

This dual regularization realizes flexible knowledge partitioning. In federated continual instruction tuning, dynamic parameter partitioning is executed by maintaining a cache of low-rank LoRA subspaces indexed per task and gated at inference via subspace selective activation (SSA), using identity tokens and cosine relevance scores (Guo et al., 17 Mar 2025).

4. Training and Inference Procedure

FL2T training is performed in two main stages:

  1. Independent concept adaptation: For each concept, fine-tune a copy of the base model (e.g., UNet for diffusion; LMM for instruction tuning) with a dedicated LoRA adapter, then extract the stable embedding gg6.
  2. Order-agnostic aggregation: For any incoming task gg7:
    • Initialize proxies gg8.
    • Apply the transformer-based proxy module over gg9 conditioned on Tg={(xgk,pgk,ygk)}T_g = \{(x_g^k, p_g^k, y_g^k)\}0.
    • Compute relevance weights and aggregate loss contributions according to proxy-guided regularization.
    • Update the LoRA weights Tg={(xgk,pgk,ygk)}T_g = \{(x_g^k, p_g^k, y_g^k)\}1 (and, if applicable, global subspaces and projections) via gradient descent.

Because the aggregation step is permutation-invariant, FL2T is robust to task order, and the modular design enables direct applicability to federated scenarios, where per-task knowledge is stored in disentangled subspaces and activated selectively per input (Guo et al., 17 Mar 2025).

At inference, SSA is used to combine task-specific subspaces via relevance-weighted gating:

Tg={(xgk,pgk,ygk)}T_g = \{(x_g^k, p_g^k, y_g^k)\}2

with Tg={(xgk,pgk,ygk)}T_g = \{(x_g^k, p_g^k, y_g^k)\}3 set by softmax-normalized cosine similarity between the test instruction and each task's identity token.

5. Empirical Results and Comparative Analysis

Empirical evaluations substantiate FL2T’s effectiveness at mitigating catastrophic forgetting and improving retention:

  • On the CIFC benchmark (10 concepts), FL2T with proxy guidance improves CLIP Image Alignment (IA) scores by +1.8 points (78.0→79.8) and Text Alignment (TA) by +0.6 (74.8→75.4) over CIDM, which was the state-of-the-art sequential method at the time (Kaushik et al., 5 Jan 2026).
  • On CelebA and ImageNet, similar or greater improvements are observed in both IA and TA metrics.
  • In ablation studies, "proxy-guidance" consistently outperforms both "no guidance" and cosine-only alternatives, indicating the importance of contextually learned relevance. Fewer reference images and lower LoRA ranks are required for FL2T to match or exceed baseline performance, confirming parameter efficiency.
  • In federated continual instruction tuning, the DISCO framework, an instantiation of FL2T with Dynamic Knowledge Organization (DKO) and SSA, achieves Last/Avg test scores of 55.47%/62.07% (Task-related Hom-FCIT, β=1.0), a +4.57%/+1.89% gain over the best baseline (O-LoRA). Benefits increase under higher data heterogeneity and larger numbers of tasks (Guo et al., 17 Mar 2025).

6. Theoretical Properties and Scalability

Theoretical analysis demonstrates that proxy-guided relevance weights Tg={(xgk,pgk,ygk)}T_g = \{(x_g^k, p_g^k, y_g^k)\}4 can provably reduce one-step model drift (i.e., the aggregate shift in parameter space when acquiring new knowledge) relative to uniform aggregation schemes, thus better preserving previous task performance (Kaushik et al., 5 Jan 2026). The set-invariant mechanism ensures scalability as the number of concepts/tasks increases, with stable improvement in knowledge retention observed for up to 30 concurrent tasks. Careful selection of transformer module depth (two layers empirically optimal) mitigates risks of rank collapse and over-aggregation.

7. Applications and Extensions

FL2T’s conceptual and algorithmic framework is directly applicable to:

  • Customization of diffusion models, enabling order-agnostic, scalable incremental concept learning with minimal forgetting (Kaushik et al., 5 Jan 2026).
  • Federated multimodal instruction tuning, where distributed clients must acquire new skills while respecting privacy and communication constraints (Guo et al., 17 Mar 2025).
  • Any domain requiring parameter-efficient continual learning with protection against interference, including large language and vision models, provided that knowledge modularization and prompt-conditioning are feasible.

A plausible implication is that proxy-mediated, set-invariant parameter composition and selective subspace gating could generalize to other forms of continual and federated learning, beyond generative models.


References:

Definition Search Book Streamline Icon: https://streamlinehq.com
References (2)

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 Forget Less by Learning Together (FL2T).