Francesco commited on
Commit
1cedf75
1 Parent(s): 3554872

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +110 -14
README.md CHANGED
@@ -82,19 +82,115 @@ dataset_info:
82
  '57': Ziggs
83
  '58': Zilean
84
  '59': Zyra
85
- splits:
86
- - name: train
87
- num_bytes: 140953202.042
88
- num_examples: 1162
89
- - name: validation
90
- num_bytes: 15729040.0
91
- num_examples: 112
92
- - name: test
93
- num_bytes: 38172395.0
94
- num_examples: 307
95
- download_size: 194844864
96
- dataset_size: 194854637.042
 
 
 
 
 
 
 
 
97
  ---
98
- # Dataset Card for "team-fight-tactics"
99
 
100
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  '57': Ziggs
83
  '58': Zilean
84
  '59': Zyra
85
+ annotations_creators:
86
+ - crowdsourced
87
+ language_creators:
88
+ - found
89
+ language:
90
+ - en
91
+ license:
92
+ - cc
93
+ multilinguality:
94
+ - monolingual
95
+ size_categories:
96
+ - 1K<n<10K
97
+ source_datasets:
98
+ - original
99
+ task_categories:
100
+ - object-detection
101
+ task_ids: []
102
+ pretty_name: team-fight-tactics
103
+ tags:
104
+ - rf100
105
  ---
 
106
 
107
+ # Dataset Card for team-fight-tactics
108
+
109
+ ** The original COCO dataset is stored at `dataset.tar.gz`**
110
+
111
+ ## Dataset Description
112
+
113
+ - **Homepage:** https://universe.roboflow.com/object-detection/team-fight-tactics
114
+ - **Point of Contact:** francesco.zuppichini@gmail.com
115
+
116
+ ### Dataset Summary
117
+
118
+ team-fight-tactics
119
+
120
+ ### Supported Tasks and Leaderboards
121
+
122
+ - `object-detection`: The dataset can be used to train a model for Object Detection.
123
+
124
+ ### Languages
125
+
126
+ English
127
+
128
+ ## Dataset Structure
129
+
130
+ ### Data Instances
131
+
132
+ A data point comprises an image and its object annotations.
133
+
134
+ ```
135
+ {
136
+ 'image_id': 15,
137
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x640 at 0x2373B065C18>,
138
+ 'width': 964043,
139
+ 'height': 640,
140
+ 'objects': {
141
+ 'id': [114, 115, 116, 117],
142
+ 'area': [3796, 1596, 152768, 81002],
143
+ 'bbox': [
144
+ [302.0, 109.0, 73.0, 52.0],
145
+ [810.0, 100.0, 57.0, 28.0],
146
+ [160.0, 31.0, 248.0, 616.0],
147
+ [741.0, 68.0, 202.0, 401.0]
148
+ ],
149
+ 'category': [4, 4, 0, 0]
150
+ }
151
+ }
152
+ ```
153
+
154
+ ### Data Fields
155
+
156
+ - `image`: the image id
157
+ - `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]`
158
+ - `width`: the image width
159
+ - `height`: the image height
160
+ - `objects`: a dictionary containing bounding box metadata for the objects present on the image
161
+ - `id`: the annotation id
162
+ - `area`: the area of the bounding box
163
+ - `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format)
164
+ - `category`: the object's category.
165
+
166
+
167
+ #### Who are the annotators?
168
+
169
+ Annotators are Roboflow users
170
+
171
+ ## Additional Information
172
+
173
+ ### Licensing Information
174
+
175
+ See original homepage https://universe.roboflow.com/object-detection/team-fight-tactics
176
+
177
+ ### Citation Information
178
+
179
+ ```
180
+ @misc{ team-fight-tactics,
181
+ title = { team fight tactics Dataset },
182
+ type = { Open Source Dataset },
183
+ author = { Roboflow 100 },
184
+ howpublished = { \url{ https://universe.roboflow.com/object-detection/team-fight-tactics } },
185
+ url = { https://universe.roboflow.com/object-detection/team-fight-tactics },
186
+ journal = { Roboflow Universe },
187
+ publisher = { Roboflow },
188
+ year = { 2022 },
189
+ month = { nov },
190
+ note = { visited on 2023-03-29 },
191
+ }"
192
+ ```
193
+
194
+ ### Contributions
195
+
196
+ Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset.