bingbangboom commited on
Commit
5f70323
·
verified ·
1 Parent(s): 493005a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -38
README.md CHANGED
@@ -1,38 +1,56 @@
1
- ---
2
- license: cc0-1.0
3
- dataset_info:
4
- features:
5
- - name: image
6
- dtype: image
7
- - name: board_state
8
- dtype: string
9
- - name: active_color
10
- dtype: string
11
- - name: castling_rights
12
- dtype: string
13
- - name: en_passant_target_square
14
- dtype: string
15
- - name: best_continuation
16
- dtype: string
17
- splits:
18
- - name: train
19
- num_bytes: 26061473408.474
20
- num_examples: 999999
21
- - name: validation
22
- num_bytes: 3293166231.0
23
- num_examples: 125000
24
- - name: test
25
- num_bytes: 3242260311.0
26
- num_examples: 125000
27
- download_size: 31940403915
28
- dataset_size: 32596899950.474
29
- configs:
30
- - config_name: default
31
- data_files:
32
- - split: train
33
- path: data/train-*
34
- - split: validation
35
- path: data/validation-*
36
- - split: test
37
- path: data/test-*
38
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ dataset_info:
4
+ features:
5
+ - name: image
6
+ dtype: image
7
+ - name: board_state
8
+ dtype: string
9
+ - name: active_color
10
+ dtype: string
11
+ - name: castling_rights
12
+ dtype: string
13
+ - name: en_passant_target_square
14
+ dtype: string
15
+ - name: best_continuation
16
+ dtype: string
17
+ splits:
18
+ - name: train
19
+ num_bytes: 26061473408.474
20
+ num_examples: 999999
21
+ - name: validation
22
+ num_bytes: 3293166231
23
+ num_examples: 125000
24
+ - name: test
25
+ num_bytes: 3242260311
26
+ num_examples: 125000
27
+ download_size: 31940403915
28
+ dataset_size: 32596899950.474
29
+ configs:
30
+ - config_name: default
31
+ data_files:
32
+ - split: train
33
+ path: data/train-*
34
+ - split: validation
35
+ path: data/validation-*
36
+ - split: test
37
+ path: data/test-*
38
+ language:
39
+ - en
40
+ tags:
41
+ - chess
42
+ - chess puzzles
43
+ - lichess
44
+ - chess positions
45
+ - chess board
46
+ ---
47
+ # Dataset Card for Chess Puzzles Images (mini)
48
+ This dataset contains 1,249,999 chess board positions in JPG format, derived from [Lichess](https://lichess.org/training/themes) puzzles. Each image is accompanied by a shortened FEN string, indication for the color to play as, castling and en passant availability, and best moves in standard algebraic notation.
49
+ The fields are as follows:
50
+
51
+ - **`image`**: `image`, A visual representation of the chess board showing the current piece arrangement.
52
+ - **`board_state`**: `string`, A shortened FEN (Forsyth–Edwards Notation) string representing the piece placement on the board after the opponent's move. This state indicates the position from which the player must find the correct continuation.
53
+ - **`active_color`**: `string`, Indicates which player's turn it is to move. "w" for White to move and "b" for Black to move.
54
+ - **`castling_rights`**: `string`, Indicates the remaining castling options for both players. If neither side has the ability to castle, this field uses the character "-". Otherwise, **this field contains one or more letters**: "K" if White can castle kingside, "Q" if White can castle queenside, "k" if Black can castle kingside, and "q" if Black can castle queenside.
55
+ - **`en_passant_target_square`**: `string`, Specifies the square in algebraic notation where an en passant capture is possible. If no en passant capture is available, this field contains "-".
56
+ - **`best_continuation`**: `string`, The solution to the puzzle, consisting of "only moves" - moves that are significantly better than any alternatives. For mate-in-one puzzles, multiple solutions may exist if they all result in checkmate.