Datasets:
Size:
10K<n<100K
License:
Updated readme with new downstream task labels for three
Browse files
README.md
CHANGED
@@ -47,7 +47,7 @@ task_ids:
|
|
47 |
|
48 |
A dataset containing three sets of playing card images. Each set contains 10,000 images and has a series of attributes. Cards are randomly rotated, flipped and scaled (within limits).
|
49 |
|
50 |
-
Train and test splits are provided in both JSON and
|
51 |
|
52 |
## Dataset Structure
|
53 |
|
@@ -92,22 +92,23 @@ Single playing card on a random background.
|
|
92 |
|
93 |
#### Three
|
94 |
|
95 |
-
Three randomly selected playing cards on a random background. Class label is
|
96 |
|
97 |
* **Number of playing cards**: 3
|
98 |
* **Concepts**: Cards present
|
99 |
-
* **Class label**:
|
100 |
* **Card points**: Coordinates of the cards and card classifications
|
101 |
|
102 |
##### Example
|
103 |
|
104 |
```
|
105 |
-
|
106 |
-
'img_path': 'imgs/three/
|
107 |
-
'concept_label': [
|
108 |
-
'class_label':
|
109 |
-
'card_points': [[[(
|
110 |
}
|
|
|
111 |
```
|
112 |
|
113 |
#### Three card poker
|
@@ -222,7 +223,12 @@ Three playing cards on a random background. Class label is set to hand rank for
|
|
222 |
|
223 |
| Class name | Count train | Count val |
|
224 |
| --- | --- | --- |
|
225 |
-
|
|
|
|
|
|
|
|
|
|
|
|
226 |
|
227 |
##### Concepts
|
228 |
|
|
|
47 |
|
48 |
A dataset containing three sets of playing card images. Each set contains 10,000 images and has a series of attributes. Cards are randomly rotated, flipped and scaled (within limits).
|
49 |
|
50 |
+
Train and test splits are provided in both JSON and pickle formats. Concept and task classification labels (both zero indexed) and names are provided in txt files.
|
51 |
|
52 |
## Dataset Structure
|
53 |
|
|
|
92 |
|
93 |
#### Three
|
94 |
|
95 |
+
Three randomly selected playing cards on a random background. Class label is set to hand rank for the game Three card poker.
|
96 |
|
97 |
* **Number of playing cards**: 3
|
98 |
* **Concepts**: Cards present
|
99 |
+
* **Class label**: Hand rank
|
100 |
* **Card points**: Coordinates of the cards and card classifications
|
101 |
|
102 |
##### Example
|
103 |
|
104 |
```
|
105 |
+
5159, {
|
106 |
+
'img_path': 'imgs/three/5159.png',
|
107 |
+
'concept_label': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
108 |
+
'class_label': 4,
|
109 |
+
'card_points': [[[(35, 517), (68, 374), (250, 567), (283, 424)], 15], [[(70, 364), (103, 221), (285, 413), (318, 270)], 24], [[(106, 210), (139, 67), (321, 260), (354, 117)], 13]]
|
110 |
}
|
111 |
+
|
112 |
```
|
113 |
|
114 |
#### Three card poker
|
|
|
223 |
|
224 |
| Class name | Count train | Count val |
|
225 |
| --- | --- | --- |
|
226 |
+
| straight_flush | 20 | 2 |
|
227 |
+
| three_of_a_kind | 17 | 11 |
|
228 |
+
| straight | 268 | 99 |
|
229 |
+
| flush | 332 | 149 |
|
230 |
+
| pair | 1171 | 524 |
|
231 |
+
| high_card | 5191 | 2216 |
|
232 |
|
233 |
##### Concepts
|
234 |
|