MendelXu commited on
Commit
a049f4e
1 Parent(s): 112fe8b

Update model cards

Browse files
Files changed (2) hide show
  1. README.md +32 -3
  2. arch.png +0 -0
README.md CHANGED
@@ -1,3 +1,32 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SAN
2
+ **Side Adapter Network for Open-Vocabulary Semantic Segmentation**
3
+
4
+ [Github](https://github.com/MendelXu/SAN)
5
+
6
+
7
+ ## Model description
8
+
9
+ SAN models the semantic segmentation task as a region recognition problem. A side network is attached to a frozen CLIP model with two branches: one for predicting mask proposals, and the other for predicting attention bias which is applied in the CLIP model to recognize the class of masks. This decoupled design has the benefit CLIP in recognizing the class of mask proposals. Since the attached side network can reuse CLIP features, it can be very light. In addition, the entire network can be trained end-to-end, allowing the side network to be adapted to the frozen CLIP model, which makes the predicted mask proposals CLIP-aware.
10
+ Our approach is fast, accurate, and only adds a few additional trainable parameters. We evaluate our approach on multiple semantic segmentation benchmarks. Our method significantly outperforms other counterparts, with up to 18 times fewer trainable parameters and 19 times faster inference speed.
11
+
12
+ ![](arch.png)
13
+
14
+
15
+ [Side Adapter Network for Open-Vocabulary Semantic Segmentation](https://arxiv.org/abs/2302.12242)
16
+ Mengde Xu, Zheng Zhang, Fangyun Wei, Han Hu, Xiang Bai, CVPR 2023
17
+
18
+ ## Citation
19
+
20
+ If you find LayoutLM useful in your research, please cite the following paper:
21
+
22
+ ```
23
+ @proceedings{xu2023side,
24
+ title={Side Adapter Network for Open-Vocabulary Semantic Segmentation},
25
+ author={Mengde Xu, Zheng Zhang, Fangyun Wei, Han Hu, Xiang Bai},
26
+ journal={CVPR},
27
+ year={2023}
28
+ eprint={2302.12242},
29
+ archivePrefix={arXiv},
30
+ primaryClass={cs.CV}
31
+ }
32
+ ```
arch.png ADDED