Francesco commited on
Commit
abc5420
1 Parent(s): e2a16f9

Upload README.md with huggingface_hub

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