Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -68,25 +68,26 @@ The text (labels) in the dataset is in English
|
|
68 |
|
69 |
### Data Instances
|
70 |
|
71 |
-
A data point comprises an image and
|
72 |
|
73 |
```
|
74 |
{
|
75 |
'image': <PIL.PngImagePlugin.PngImageFile image mode=RGB size=224x224 at 0x23557C66160>,
|
76 |
-
'
|
77 |
}
|
78 |
```
|
79 |
|
80 |
### Data Fields
|
81 |
|
82 |
- `image`: A `PIL.Image.Image` object containing the 224x224 image.
|
83 |
-
- `label`:
|
84 |
| Label | Description |
|
85 |
| --- | --- |
|
86 |
| 0 | blackKing |
|
87 |
| 1 | blackQueen |
|
88 |
| 2 | whiteKing |
|
89 |
| 3 | whiteQueen |
|
|
|
90 |
|
91 |
### Data Splits
|
92 |
|
@@ -113,15 +114,15 @@ The data is obtained by machine generating images from "python-chess" library. P
|
|
113 |
|
114 |
#### Annotation process
|
115 |
|
116 |
-
|
117 |
|
118 |
#### Who are the annotators?
|
119 |
|
120 |
-
|
121 |
|
122 |
### Personal and Sensitive Information
|
123 |
|
124 |
-
|
125 |
|
126 |
## Considerations for Using the Data
|
127 |
|
|
|
68 |
|
69 |
### Data Instances
|
70 |
|
71 |
+
A data point comprises an image and the corresponding objects in bounding boxes.
|
72 |
|
73 |
```
|
74 |
{
|
75 |
'image': <PIL.PngImagePlugin.PngImageFile image mode=RGB size=224x224 at 0x23557C66160>,
|
76 |
+
'objects': { "label": [ 0 ], "bbox": [ [ 151, 151, 26, 26 ] ] }
|
77 |
}
|
78 |
```
|
79 |
|
80 |
### Data Fields
|
81 |
|
82 |
- `image`: A `PIL.Image.Image` object containing the 224x224 image.
|
83 |
+
- `label`: An integer between 0 and 3 representing the classes with the following mapping:
|
84 |
| Label | Description |
|
85 |
| --- | --- |
|
86 |
| 0 | blackKing |
|
87 |
| 1 | blackQueen |
|
88 |
| 2 | whiteKing |
|
89 |
| 3 | whiteQueen |
|
90 |
+
- `bbox`: A list of integers having sequence [x_center, y_center, width, height] for a particular bounding box
|
91 |
|
92 |
### Data Splits
|
93 |
|
|
|
114 |
|
115 |
#### Annotation process
|
116 |
|
117 |
+
The annotations were done manually.
|
118 |
|
119 |
#### Who are the annotators?
|
120 |
|
121 |
+
The annotations were done manually.
|
122 |
|
123 |
### Personal and Sensitive Information
|
124 |
|
125 |
+
None
|
126 |
|
127 |
## Considerations for Using the Data
|
128 |
|