nielsr HF Staff commited on
Commit
ca3e77a
·
verified ·
1 Parent(s): d68bd18

Add model card and metadata

Browse files

Hi! I'm Niels from the community science team at Hugging Face. I've noticed this repository doesn't have a complete model card. This PR adds metadata linking the repository to the [MePo paper](https://huggingface.co/papers/2602.07940), sets the appropriate pipeline tag for classification, and provides a summary of the method along with links to the official code and citation info.

Files changed (1) hide show
  1. README.md +46 -3
README.md CHANGED
@@ -1,3 +1,46 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ pipeline_tag: image-classification
4
+ tags:
5
+ - continual-learning
6
+ - meta-learning
7
+ - computer-vision
8
+ ---
9
+
10
+ # MePo: Meta Post-Refinement for Rehearsal-Free General Continual Learning
11
+
12
+ This repository contains the model checkpoints and artifacts for **MePo** (**Me**ta **Po**st-Refinement), as presented in the paper [MePo: Meta Post-Refinement for Rehearsal-Free General Continual Learning](https://huggingface.co/papers/2602.07940).
13
+
14
+ ## Introduction
15
+
16
+ **MePo** is an innovative approach for Pretrained Models (PTMs)-based General Continual Learning (GCL). It addresses the challenges of online datastreams and blurry task boundaries by refining the pretrained backbone before downstream continual learning. Inspired by meta-plasticity and reconstructive memory in neuroscience, MePo adapts representation learning to facilitate rapid adaptation to evolving environments in a rehearsal-free manner.
17
+
18
+ ## Resources
19
+
20
+ - **Paper:** [MePo: Meta Post-Refinement for Rehearsal-Free General Continual Learning](https://huggingface.co/papers/2602.07940)
21
+ - **GitHub Repository:** [SunGL001/MePo](https://github.com/SunGL001/MePo)
22
+
23
+ ## Methodology Overview
24
+
25
+ MePo improves GCL performance through three core components:
26
+ 1. **Meta-Learning for Representation Learning**: A bi-level meta-learning paradigm that constructs pseudo task sequences from pretraining data to refine the backbone.
27
+ 2. **Meta Covariance Initialization**: Initializes a meta covariance matrix as the reference geometry of the pretrained representation space, enabling the exploitation of second-order statistics.
28
+ 3. **Feature Alignment**: Ensures robust output alignment during downstream tasks.
29
+
30
+ The method serves as a plug-in strategy that achieves significant gains across various benchmarks such as CIFAR-100, ImageNet-R, and CUB-200.
31
+
32
+ ## Citation
33
+
34
+ If you find this work useful for your research, please cite:
35
+
36
+ ```bibtex
37
+ @misc{sun2026mepometapostrefinementrehearsalfree,
38
+ title={MePo: Meta Post-Refinement for Rehearsal-Free General Continual Learnin},
39
+ author={Guanglong Sun and Hongwei Yan and Liyuan Wang and Zhiqi Kang and Shuang Cui and Hang Su and Jun Zhu and Yi Zhong},
40
+ year={2026},
41
+ eprint={2602.07940},
42
+ archivePrefix={arXiv},
43
+ primaryClass={cs.AI},
44
+ url={https://arxiv.org/abs/2602.07940},
45
+ }
46
+ ```