Francesco commited on
Commit
a523fc3
1 Parent(s): 20ef1a9

Upload README.md with huggingface_hub

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