jalFaizy commited on
Commit
a23285f
1 Parent(s): 287afe7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -2
README.md CHANGED
@@ -68,14 +68,30 @@ The text (labels) in the dataset is in English
68
 
69
  ### Data Instances
70
 
71
- [Needs More Information]
 
 
 
 
 
 
 
72
 
73
  ### Data Fields
74
 
75
- [Needs More Information]
 
 
 
 
 
 
 
76
 
77
  ### Data Splits
78
 
 
 
79
  Train Valid 204 52
80
 
81
  ## Dataset Creation
 
68
 
69
  ### Data Instances
70
 
71
+ A data point comprises an image and its label.
72
+
73
+ ```
74
+ {
75
+ 'image': <PIL.PngImagePlugin.PngImageFile image mode=RGB size=224x224 at 0x23557C66160>,
76
+ 'label': 0
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
 
91
  ### Data Splits
92
 
93
+ The data is split into training and validation set. The training set contains 204 images and the validation set 52 images.
94
+
95
  Train Valid 204 52
96
 
97
  ## Dataset Creation