NimaBoscarino
commited on
Commit
·
b7fe0c5
1
Parent(s):
f26b08c
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,45 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
tags:
|
5 |
+
- background-removal
|
6 |
license: apache-2.0
|
7 |
+
library: pytorch
|
8 |
+
model-index:
|
9 |
+
- name: IS-Net_DIS
|
10 |
+
results:
|
11 |
+
- task:
|
12 |
+
name: Image Segmentation
|
13 |
+
type: image-segmentation
|
14 |
+
metrics:
|
15 |
+
- name: Human Correction Efforts
|
16 |
+
type: human_correction_efforts
|
17 |
+
value: 1016
|
18 |
+
|
19 |
---
|
20 |
+
|
21 |
+
# IS-Net_DIS-general-use
|
22 |
+
|
23 |
+
* Model Authors: Xuebin Qin, Hang Dai, Xiaobin Hu, Deng-Ping Fan*, Ling Shao, Luc Van Gool
|
24 |
+
* Paper: Highly Accurate Dichotomous Image Segmentation (ECCV 2022 - https://arxiv.org/pdf/2203.03041.pdf
|
25 |
+
* Code Repo: https://github.com/xuebinqin/DIS
|
26 |
+
* Project Homepage: https://xuebinqin.github.io/dis/index.html
|
27 |
+
|
28 |
+
Note that this is an _optimized_ version of the IS-NET model.
|
29 |
+
|
30 |
+
From the paper abstract:
|
31 |
+
|
32 |
+
> [...] we introduce a simple intermediate supervision baseline (IS- Net) using both feature-level and mask-level guidance for DIS model training. Without tricks, IS-Net outperforms var- ious cutting-edge baselines on the proposed DIS5K, mak- ing it a general self-learned supervision network that can help facilitate future research in DIS.
|
33 |
+
|
34 |
+
![](https://raw.githubusercontent.com/xuebinqin/DIS/main/figures/is-net.png)
|
35 |
+
|
36 |
+
# Citation
|
37 |
+
|
38 |
+
```
|
39 |
+
@InProceedings{qin2022,
|
40 |
+
author={Xuebin Qin and Hang Dai and Xiaobin Hu and Deng-Ping Fan and Ling Shao and Luc Van Gool},
|
41 |
+
title={Highly Accurate Dichotomous Image Segmentation},
|
42 |
+
booktitle={ECCV},
|
43 |
+
year={2022}
|
44 |
+
}
|
45 |
+
```
|