not-lain commited on
Commit
315491c
·
verified ·
1 Parent(s): 44667da

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +42 -15
README.md CHANGED
@@ -1,19 +1,11 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: mask
7
- dtype: image
8
- splits:
9
- - name: train
10
- num_bytes: 269160334
11
- num_examples: 10553
12
- - name: test
13
- num_bytes: 138830657
14
- num_examples: 5019
15
- download_size: 409047495
16
- dataset_size: 407990991
17
  configs:
18
  - config_name: default
19
  data_files:
@@ -22,3 +14,38 @@ configs:
22
  - split: test
23
  path: data/test-*
24
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-nc-4.0
3
+ pretty_name: DUTS
4
+ task_categories:
5
+ - image-segmentation
6
+ tags:
7
+ - saliency-detection
8
+ - salient-object-detection
 
 
 
 
 
 
 
 
9
  configs:
10
  - config_name: default
11
  data_files:
 
14
  - split: test
15
  path: data/test-*
16
  ---
17
+
18
+ # DUTS
19
+
20
+ DUTS is a large-scale saliency detection (salient object detection) dataset. It
21
+ contains a training set, **DUTS-TR** (10,553 images), and a test set,
22
+ **DUTS-TE** (5,019 images). Each image is paired with a binary ground-truth
23
+ saliency mask.
24
+
25
+ ## Splits
26
+
27
+ | Split | Source | Rows |
28
+ |-------|----------|--------|
29
+ | train | DUTS-TR | 10,553 |
30
+ | test | DUTS-TE | 5,019 |
31
+
32
+ ## Columns
33
+
34
+ - `image`: the RGB input image (`datasets.Image`).
35
+ - `mask`: the ground-truth saliency mask (`datasets.Image`, single channel).
36
+
37
+ Image and mask are matched by filename stem.
38
+
39
+ ## License
40
+
41
+ Released for academic / research use. No explicit SPDX license is provided by
42
+ the authors; this mirror is published under `cc-by-nc-4.0`. See
43
+ <https://saliencydetection.net/duts/> for the original terms.
44
+
45
+ ## Credits
46
+
47
+ Source: <https://saliencydetection.net/duts/>
48
+
49
+ Paper: Lijun Wang, Huchuan Lu, Yifan Wang, Mengyang Feng, Dong Wang, Baocai Yin,
50
+ Xiang Ruan. *Learning to Detect Salient Objects with Image-level Supervision.*
51
+ CVPR 2017.