Francesco commited on
Commit
e286c16
1 Parent(s): 29f3c02

Upload README.md with huggingface_hub

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