Francesco commited on
Commit
964a5e5
1 Parent(s): 4bcf630

Upload README.md with huggingface_hub

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