bingbangboom commited on
Commit
6188196
1 Parent(s): 0d50608

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -1
README.md CHANGED
@@ -21,7 +21,7 @@ dataset_info:
21
  num_bytes: 477938253.5
22
  num_examples: 12500
23
  - name: test
24
- num_bytes: 479103793.0
25
  num_examples: 12500
26
  download_size: 4435938030
27
  dataset_size: 4776986468.652
@@ -34,4 +34,23 @@ configs:
34
  path: data/validation-*
35
  - split: test
36
  path: data/test-*
 
 
 
 
 
 
 
 
 
37
  ---
 
 
 
 
 
 
 
 
 
 
 
21
  num_bytes: 477938253.5
22
  num_examples: 12500
23
  - name: test
24
+ num_bytes: 479103793
25
  num_examples: 12500
26
  download_size: 4435938030
27
  dataset_size: 4776986468.652
 
34
  path: data/validation-*
35
  - split: test
36
  path: data/test-*
37
+ license: cc0-1.0
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 124,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.