DRDN: Decoupled Representation Dynamic Network for From-Scratch ViT Class-Incremental Learning
Summary
The Decoupled Representation Dynamic Network (DRDN) is a novel approach for from-scratch Vision Transformer (ViT) Class-Incremental Learning (CIL) that addresses challenges in preserving shared backbone representations and mitigating cross-task confusion. Existing dynamic expansion methods often bias decision boundaries towards recent tasks and under-optimize shared representations. DRDN tackles this with two orthogonal mechanisms: continuous masked image modeling (MIM) applied at each incremental step, routing reconstruction gradients solely through the backbone to maintain general visual structure; and hierarchical task token expansion across transformer layers with a modified per-task attention rule to reduce inter-task interference. In the from-scratch ViT CIL setting, DRDN consistently outperforms token-expansion baselines. On CIFAR100-B0 over 10 steps, DRDN achieves 77.19% average accuracy, surpassing DKT by 1.36 points and DyTox by 3.53 points, with its advantage increasing over longer sequences. The MIM decoder is training-only, adding no inference overhead.
Key takeaway
For Machine Learning Engineers developing from-scratch Vision Transformer models for class-incremental learning, consider DRDN's decoupled approach. Its continuous masked image modeling for backbone stability and hierarchical task token expansion for task-specific discrimination can significantly improve long-term accuracy. You should evaluate integrating these mechanisms to mitigate cross-task confusion. This enhances shared representation preservation, especially in scenarios requiring extended incremental sequences without external pretraining.
Key insights
DRDN improves ViT class-incremental learning by decoupling shared backbone representation preservation from task-specific discrimination.
Principles
- Decouple shared and task-specific learning.
- MIM can preserve general visual structure.
- Per-task attention reduces interference.
Method
DRDN applies continuous masked image modeling (MIM) to the backbone for shared representation learning, while using hierarchical task token expansion with a modified per-task attention rule for task-specific discrimination.
In practice
- Use MIM for backbone representation stability.
- Implement hierarchical task token expansion.
- Modify attention for per-task isolation.
Topics
- Class-Incremental Learning
- Vision Transformers
- Masked Image Modeling
- Dynamic Networks
- Representation Learning
- Computer Vision
Best for: Research Scientist, AI Scientist, Machine Learning Engineer, Computer Vision Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Computer Vision and Pattern Recognition.