---
license: mit
datasets:
- uoft-cs/cifar100
- uoft-cs/cifar10
- zh-plus/tiny-imagenet
language:
- en
metrics:
- accuracy
base_model:
- microsoft/resnet-18
pipeline_tag: image-classification
---
# IDER: Idempotent Experience Replay for Reliable Continual Learning
[](https://arxiv.org/abs/2603.00624)
[](LICENSE)
[](https://mail.google.com/mail/?view=cm&fs=1&to=zhanwnagliu@gmail.com)
IDER is a novel framework for continual learning based on the idempotent property, which mitigates catastrophic forgetting and improves prediction reliability. It is a simple and robust method that can be easily integrated into other state-of-the-art approaches.
Zhanwang Liu1*,
Yuting Li1*‡,
Haoyuan Gao1,
Yexin Li4,
Linghe Kong1,
Lichao Sun3,
Weiran Huang1,2†
1 School of Computer Science, Shanghai Jiao Tong University
2 Shanghai Innovation Institute
3 Lehigh University
4 State Key Laboratory of General Artificial Intelligence, BIGAI
* Equal contribution.
† Corresponding author.
‡ Project lead.
## 🎉 News
- [x] **[2026.01.26]** Our paper has been accepted by ICLR 2026!
## Table of Content
* [1. Quick Start](#1-quick-start)
* [2. Reproduced Results](#2-reproduced-results)
* [3. Tools](#3-tools)
* [4. Citation](#4-citation)
* [5. Acknowledgement](#5-acknowledgement)
## 1. Quick Start
### 1.1. Environment
Clone this repository and install the requirements. Our model can be learnt in a **single GPU RTX-4090 24G**
```bash
conda env create -f environment.yaml
conda activate icl
```
The code was tested on Python 3.10 and PyTorch 1.13.0.
### 1.2. Training
Train and evaluate ResNet18 on different datasets using ER and ER+ID with different buffers. Run the following command: