err805 commited on
Commit
2c62bc8
·
verified ·
1 Parent(s): c9bc0fe

Add custom dataset card for iShape Logs

Browse files
Files changed (1) hide show
  1. README.md +31 -28
README.md CHANGED
@@ -1,30 +1,33 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype:
6
- image:
7
- decode: false
8
- - name: objects
9
- list:
10
- - name: name
11
- dtype: string
12
- - name: rle
13
- dtype: string
14
- splits:
15
- - name: train
16
- num_bytes: 893214106
17
- num_examples: 2000
18
- - name: validation
19
- num_bytes: 224286037
20
- num_examples: 500
21
- download_size: 1117732024
22
- dataset_size: 1117500143
23
- configs:
24
- - config_name: default
25
- data_files:
26
- - split: train
27
- path: data/train-*
28
- - split: validation
29
- path: data/validation-*
30
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: "iShape Logs"
3
+ size_categories:
4
+ - 1K<n<10K
5
+ task_categories:
6
+ - image-segmentation
7
+ tags:
8
+ - instance-segmentation
9
+ - mask-rle
10
+ - ishape
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ---
12
+
13
+ # iShape Logs
14
+
15
+ A subset of the iShape dataset for `log` instances.
16
+
17
+ Source dataset: https://ishape.github.io
18
+
19
+ ## Splits
20
+
21
+ | Split | Samples |
22
+ |---|---:|
23
+ | train | 2000 |
24
+ | validation | 500 |
25
+
26
+ ## Columns
27
+
28
+ - `image`: source image
29
+ - `objects`: object annotations with `name` and `rle`
30
+
31
+ ## Annotation Format
32
+
33
+ `rle` stores a COCO-style compressed mask string in `height width counts` form.