Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
1K<n<10K
Language Creators:
found
Annotations Creators:
crowdsourced
Source Datasets:
original
Tags:
rf100
License:
Francesco commited on
Commit
34188fb
1 Parent(s): a3fad72

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +124 -28
README.md CHANGED
@@ -23,33 +23,129 @@ dataset_info:
23
  class_label:
24
  names:
25
  '0': hand-gestures
26
- '1': '0'
27
- '2': '1'
28
- '3': '2'
29
- '4': '3'
30
- '5': '4'
31
- '6': '5'
32
- '7': '6'
33
- '8': '7'
34
- '9': '8'
35
- '10': '9'
36
- '11': '10'
37
- '12': '11'
38
- '13': '12'
39
- '14': '13'
40
- splits:
41
- - name: train
42
- num_bytes: 14297812.0
43
- num_examples: 642
44
- - name: validation
45
- num_bytes: 2089457.0
46
- num_examples: 94
47
- - name: test
48
- num_bytes: 3961941.0
49
- num_examples: 178
50
- download_size: 20342362
51
- dataset_size: 20349210.0
 
 
 
 
 
 
 
 
52
  ---
53
- # Dataset Card for "hand-gestures-jps7z"
54
 
55
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  class_label:
24
  names:
25
  '0': hand-gestures
26
+ '1': 0
27
+ '2': 1
28
+ '3': 2
29
+ '4': 3
30
+ '5': 4
31
+ '6': 5
32
+ '7': 6
33
+ '8': 7
34
+ '9': 8
35
+ '10': 9
36
+ '11': 10
37
+ '12': 11
38
+ '13': 12
39
+ '14': 13
40
+ annotations_creators:
41
+ - crowdsourced
42
+ language_creators:
43
+ - found
44
+ language:
45
+ - en
46
+ license:
47
+ - cc
48
+ multilinguality:
49
+ - monolingual
50
+ size_categories:
51
+ - 1K<n<10K
52
+ source_datasets:
53
+ - original
54
+ task_categories:
55
+ - object-detection
56
+ task_ids: []
57
+ pretty_name: hand-gestures-jps7z
58
+ tags:
59
+ - rf100
60
  ---
 
61
 
62
+ # Dataset Card for hand-gestures-jps7z
63
+
64
+ ** The original COCO dataset is stored at `dataset.tar.gz`**
65
+
66
+ ## Dataset Description
67
+
68
+ - **Homepage:** https://universe.roboflow.com/object-detection/hand-gestures-jps7z
69
+ - **Point of Contact:** francesco.zuppichini@gmail.com
70
+
71
+ ### Dataset Summary
72
+
73
+ hand-gestures-jps7z
74
+
75
+ ### Supported Tasks and Leaderboards
76
+
77
+ - `object-detection`: The dataset can be used to train a model for Object Detection.
78
+
79
+ ### Languages
80
+
81
+ English
82
+
83
+ ## Dataset Structure
84
+
85
+ ### Data Instances
86
+
87
+ A data point comprises an image and its object annotations.
88
+
89
+ ```
90
+ {
91
+ 'image_id': 15,
92
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x640 at 0x2373B065C18>,
93
+ 'width': 964043,
94
+ 'height': 640,
95
+ 'objects': {
96
+ 'id': [114, 115, 116, 117],
97
+ 'area': [3796, 1596, 152768, 81002],
98
+ 'bbox': [
99
+ [302.0, 109.0, 73.0, 52.0],
100
+ [810.0, 100.0, 57.0, 28.0],
101
+ [160.0, 31.0, 248.0, 616.0],
102
+ [741.0, 68.0, 202.0, 401.0]
103
+ ],
104
+ 'category': [4, 4, 0, 0]
105
+ }
106
+ }
107
+ ```
108
+
109
+ ### Data Fields
110
+
111
+ - `image`: the image id
112
+ - `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]`
113
+ - `width`: the image width
114
+ - `height`: the image height
115
+ - `objects`: a dictionary containing bounding box metadata for the objects present on the image
116
+ - `id`: the annotation id
117
+ - `area`: the area of the bounding box
118
+ - `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format)
119
+ - `category`: the object's category.
120
+
121
+
122
+ #### Who are the annotators?
123
+
124
+ Annotators are Roboflow users
125
+
126
+ ## Additional Information
127
+
128
+ ### Licensing Information
129
+
130
+ See original homepage https://universe.roboflow.com/object-detection/hand-gestures-jps7z
131
+
132
+ ### Citation Information
133
+
134
+ ```
135
+ @misc{ hand-gestures-jps7z,
136
+ title = { hand gestures jps7z Dataset },
137
+ type = { Open Source Dataset },
138
+ author = { Roboflow 100 },
139
+ howpublished = { \url{ https://universe.roboflow.com/object-detection/hand-gestures-jps7z } },
140
+ url = { https://universe.roboflow.com/object-detection/hand-gestures-jps7z },
141
+ journal = { Roboflow Universe },
142
+ publisher = { Roboflow },
143
+ year = { 2022 },
144
+ month = { nov },
145
+ note = { visited on 2023-03-29 },
146
+ }"
147
+ ```
148
+
149
+ ### Contributions
150
+
151
+ Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset.