Francesco commited on
Commit
02a0263
1 Parent(s): a1e0560

Upload README.md with huggingface_hub

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