Francesco commited on
Commit
f9dfc9f
1 Parent(s): 9aac0e0

Upload README.md with huggingface_hub

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