Francesco commited on
Commit
a6c08f7
1 Parent(s): b69d264

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +110 -14
README.md CHANGED
@@ -49,19 +49,115 @@ dataset_info:
49
  '24': X
50
  '25': Y
51
  '26': Z
52
- splits:
53
- - name: train
54
- num_bytes: 14695315.0
55
- num_examples: 504
56
- - name: validation
57
- num_bytes: 2105536.0
58
- num_examples: 72
59
- - name: test
60
- num_bytes: 4021562.0
61
- num_examples: 144
62
- download_size: 20831640
63
- dataset_size: 20822413.0
 
 
 
 
 
 
 
 
64
  ---
65
- # Dataset Card for "sign-language-sokdr"
66
 
67
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  '24': X
50
  '25': Y
51
  '26': Z
52
+ annotations_creators:
53
+ - crowdsourced
54
+ language_creators:
55
+ - found
56
+ language:
57
+ - en
58
+ license:
59
+ - cc
60
+ multilinguality:
61
+ - monolingual
62
+ size_categories:
63
+ - 1K<n<10K
64
+ source_datasets:
65
+ - original
66
+ task_categories:
67
+ - object-detection
68
+ task_ids: []
69
+ pretty_name: sign-language-sokdr
70
+ tags:
71
+ - rf100
72
  ---
 
73
 
74
+ # Dataset Card for sign-language-sokdr
75
+
76
+ ** The original COCO dataset is stored at `dataset.tar.gz`**
77
+
78
+ ## Dataset Description
79
+
80
+ - **Homepage:** https://universe.roboflow.com/object-detection/sign-language-sokdr
81
+ - **Point of Contact:** francesco.zuppichini@gmail.com
82
+
83
+ ### Dataset Summary
84
+
85
+ sign-language-sokdr
86
+
87
+ ### Supported Tasks and Leaderboards
88
+
89
+ - `object-detection`: The dataset can be used to train a model for Object Detection.
90
+
91
+ ### Languages
92
+
93
+ English
94
+
95
+ ## Dataset Structure
96
+
97
+ ### Data Instances
98
+
99
+ A data point comprises an image and its object annotations.
100
+
101
+ ```
102
+ {
103
+ 'image_id': 15,
104
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x640 at 0x2373B065C18>,
105
+ 'width': 964043,
106
+ 'height': 640,
107
+ 'objects': {
108
+ 'id': [114, 115, 116, 117],
109
+ 'area': [3796, 1596, 152768, 81002],
110
+ 'bbox': [
111
+ [302.0, 109.0, 73.0, 52.0],
112
+ [810.0, 100.0, 57.0, 28.0],
113
+ [160.0, 31.0, 248.0, 616.0],
114
+ [741.0, 68.0, 202.0, 401.0]
115
+ ],
116
+ 'category': [4, 4, 0, 0]
117
+ }
118
+ }
119
+ ```
120
+
121
+ ### Data Fields
122
+
123
+ - `image`: the image id
124
+ - `image`: `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`
125
+ - `width`: the image width
126
+ - `height`: the image height
127
+ - `objects`: a dictionary containing bounding box metadata for the objects present on the image
128
+ - `id`: the annotation id
129
+ - `area`: the area of the bounding box
130
+ - `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format)
131
+ - `category`: the object's category.
132
+
133
+
134
+ #### Who are the annotators?
135
+
136
+ Annotators are Roboflow users
137
+
138
+ ## Additional Information
139
+
140
+ ### Licensing Information
141
+
142
+ See original homepage https://universe.roboflow.com/object-detection/sign-language-sokdr
143
+
144
+ ### Citation Information
145
+
146
+ ```
147
+ @misc{ sign-language-sokdr,
148
+ title = { sign language sokdr Dataset },
149
+ type = { Open Source Dataset },
150
+ author = { Roboflow 100 },
151
+ howpublished = { \url{ https://universe.roboflow.com/object-detection/sign-language-sokdr } },
152
+ url = { https://universe.roboflow.com/object-detection/sign-language-sokdr },
153
+ journal = { Roboflow Universe },
154
+ publisher = { Roboflow },
155
+ year = { 2022 },
156
+ month = { nov },
157
+ note = { visited on 2023-03-29 },
158
+ }"
159
+ ```
160
+
161
+ ### Contributions
162
+
163
+ Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset.