jinpeng0528 commited on
Commit
15c3b2f
·
verified ·
1 Parent(s): 3c4b29c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -3
README.md CHANGED
@@ -1,3 +1,41 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+ # [NeurIPS 2023] Saving 100x Storage: Prototype Replay for Reconstructing Training Sample Distribution in Class-Incremental Semantic Segmentation
5
+
6
+ This is the Hugging Face model repository for the paper "Saving 100x Storage: Prototype Replay for Reconstructing Training Sample Distribution in Class-Incremental Semantic Segmentation," accepted by NeurIPS 2023.
7
+
8
+ 📝 [Paper](https://proceedings.neurips.cc/paper_files/paper/2023/hash/708e0d691a22212e1e373dc8779cbe53-Abstract-Conference.html)
9
+ 🐙 [GitHub](https://github.com/jinpeng0528/STAR)
10
+
11
+ ## Installation & Data Preparation
12
+
13
+ Please follow the instructions provided in our [GitHub repository](https://github.com/jinpeng0528/STAR) for installation and data preparation.
14
+
15
+ ## Evaluation
16
+
17
+ #### PASCAL VOC 2012
18
+ To evaluate on the PASCAL VOC 2012 dataset, execute the following command:
19
+
20
+ ```shell
21
+ python eval_voc.py --device 0 --test --resume path/to/weight.pth
22
+ ```
23
+
24
+ #### ADE20K
25
+ To evaluate on the ADE20K dataset, execute the following command:
26
+
27
+ ```shell
28
+ python eval_ade.py --device 0 --test --resume path/to/weight.pth
29
+ ```
30
+
31
+ ## Citation
32
+
33
+ ```
34
+ @inproceedings{chen2023saving,
35
+ title={Saving 100x Storage: Prototype Replay for Reconstructing Training Sample Distribution in Class-Incremental Semantic Segmentation},
36
+ author={Chen, Jinpeng and Cong, Runmin and Luo, Yuxuan and Ip, Horace Ho Shing and Kwong, Sam},
37
+ booktitle={NeurIPS},
38
+ year={2023}
39
+ }
40
+ ```
41
+