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
c59b6cd
1 Parent(s): 1822861

Upload README.md with huggingface_hub

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