Francesco commited on
Commit
5f30c22
1 Parent(s): 4ca7097

Upload README.md with huggingface_hub

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