Francesco commited on
Commit
89bb824
1 Parent(s): a90bcbc

Upload README.md with huggingface_hub

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