Hadassah commited on
Commit
2898b26
·
1 Parent(s): 127b0f6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +199 -1
README.md CHANGED
@@ -1,3 +1,201 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - crowdsourced
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license:
9
+ - unknown
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - n<1K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - object-detection
18
+ task_ids: []
19
+ paperswithcode_id: food
20
+ pretty_name: food
21
+ tags:
22
+ - food
23
+ dataset_info:
24
+ features:
25
+ - name: image_id
26
+ dtype: int64
27
+ - name: image
28
+ dtype: string
29
+ - name: width
30
+ dtype: int32
31
+ - name: height
32
+ dtype: int32
33
+ - name: objects
34
+ sequence:
35
+ - name: id
36
+ dtype: int64
37
+ - name: area
38
+ dtype: int64
39
+ - name: bbox
40
+ sequence: float32
41
+ length: 4
42
+ - name: category
43
+ dtype:
44
+ class_label:
45
+ names:
46
+ '1': Brocolli
47
+ '2': Tomato
48
+ '3': Potato
49
+ splits:
50
+ - name: train
51
+ num_bytes: 240481257
52
+ num_examples: 1000
53
+ - name: test
54
+ num_bytes: 4172715
55
+ num_examples: 29
56
+ download_size: 238482705
57
+ dataset_size: 244653972
58
  ---
59
+
60
+ # Dataset Card for CPPE - 5
61
+
62
+ ## Table of Contents
63
+ - [Table of Contents](#table-of-contents)
64
+ - [Dataset Description](#dataset-description)
65
+ - [Dataset Summary](#dataset-summary)
66
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
67
+ - [Languages](#languages)
68
+ - [Dataset Structure](#dataset-structure)
69
+ - [Data Instances](#data-instances)
70
+ - [Data Fields](#data-fields)
71
+ - [Data Splits](#data-splits)
72
+ - [Dataset Creation](#dataset-creation)
73
+ - [Curation Rationale](#curation-rationale)
74
+ - [Source Data](#source-data)
75
+ - [Annotations](#annotations)
76
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
77
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
78
+ - [Social Impact of Dataset](#social-impact-of-dataset)
79
+ - [Discussion of Biases](#discussion-of-biases)
80
+ - [Other Known Limitations](#other-known-limitations)
81
+ - [Additional Information](#additional-information)
82
+ - [Dataset Curators](#dataset-curators)
83
+ - [Licensing Information](#licensing-information)
84
+ - [Citation Information](#citation-information)
85
+ - [Contributions](#contributions)
86
+
87
+ ## Dataset Description
88
+
89
+
90
+
91
+ ### Dataset Summary
92
+
93
+ Sample dataset with vegetable annotations
94
+
95
+ ### Supported Tasks and Leaderboards
96
+
97
+ - `object-detection`: The dataset can be used to train a model for Object Detection.
98
+
99
+ ### Languages
100
+
101
+ English
102
+
103
+ ## Dataset Structure
104
+ [More Information Needed]
105
+
106
+ ### Data Instances
107
+
108
+ A data point comprises an image and its object annotations.
109
+
110
+ ```
111
+ {
112
+ 'image_id': 75,
113
+ 'image': Test_233.jpg,
114
+ 'width': 620,
115
+ 'height': 350,
116
+ 'objects': {
117
+ 'id': [212,213,214,215,216,217],
118
+ 'area': [9138.402799999996,7127.4616,8837.071,7997.723299999998,7590.117599999998,8844.078],
119
+ 'bbox': [
120
+ [245.82,165.21,95.63,95.56],
121
+ [363.72,100.47,84.08,84.77],
122
+ [ 154.88,99.7,91.01,97.1],
123
+ [308.24,8.77,89.47,89.39]
124
+ ],
125
+ 'category': [2, 2, 2, 2]
126
+ }
127
+ }
128
+ ```
129
+
130
+ ### Data Fields
131
+
132
+ - `image`: the image id
133
+ - `image`: `image name`
134
+ - `width`: the image width
135
+ - `height`: the image height
136
+ - `objects`: a dictionary containing bounding box metadata for the objects present on the image
137
+ - `id`: the annotation id
138
+ - `area`: the area of the bounding box
139
+ - `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format)
140
+ - `category`: the object's category:`Brocolli` (1),`Tomato` (2),`Potato` (3)
141
+
142
+ ### Data Splits
143
+
144
+ The data is not split
145
+
146
+ ## Dataset Creation
147
+
148
+ ### Curation Rationale
149
+
150
+ [More Information Needed]
151
+
152
+ ### Source Data
153
+
154
+ #### Initial Data Collection and Normalization
155
+
156
+ [More Information Needed]
157
+
158
+ #### Who are the source language producers?
159
+
160
+ The images for this dataset were collected from Flickr and Google Images.
161
+
162
+ ### Annotations
163
+
164
+ #### Annotation process
165
+
166
+ The dataset was labelled : Brocolli, Tomato, Potato
167
+
168
+ #### Who are the annotators?
169
+
170
+ Hadassah did the annotations using CVAT tool.
171
+
172
+ ### Personal and Sensitive Information
173
+
174
+ [More Information Needed]
175
+
176
+ ## Considerations for Using the Data
177
+
178
+ ### Social Impact of Dataset
179
+
180
+ [More Information Needed]
181
+
182
+ ### Discussion of Biases
183
+
184
+ [More Information Needed]
185
+
186
+ ### Other Known Limitations
187
+
188
+ [More Information Needed]
189
+
190
+ ## Additional Information
191
+
192
+ ### Dataset Curators
193
+ [More Information Needed]
194
+
195
+ ### Licensing Information
196
+
197
+ [More Information Needed]
198
+
199
+ ### Citation Information
200
+
201
+ ### Contributions