JackFurby commited on
Commit
5bf8d7e
·
1 Parent(s): 2d4a804

Updated readme with new downstream task labels for three

Browse files
Files changed (1) hide show
  1. README.md +15 -9
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 Pkl formats. Concept and task classification labels (both starting from 0) and names are provided in txt files.
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 always set to 0 (for now).
96
 
97
  * **Number of playing cards**: 3
98
  * **Concepts**: Cards present
99
- * **Class label**: 0
100
  * **Card points**: Coordinates of the cards and card classifications
101
 
102
  ##### Example
103
 
104
  ```
105
- 1878, {
106
- 'img_path': 'imgs/three/1878.png',
107
- 'concept_label': [1, 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, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
108
- 'class_label': 0,
109
- 'card_points': [[[(22, 342), (148, 308), (72, 531), (198, 497)], 38], [[(333, 461), (207, 495), (283, 272), (157, 306)], 0], [[(292, 270), (418, 236), (343, 459), (468, 425)], 4]]
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
- | All | 6999 | 3001 |
 
 
 
 
 
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