bingbangboom commited on
Commit
affc8f9
·
verified ·
1 Parent(s): f22de69

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -3
README.md CHANGED
@@ -1,3 +1,17 @@
1
- ---
2
- license: cc0-1.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ tags:
4
+ - chess
5
+ - lichess
6
+ - chess puzzles
7
+ ---
8
+ # Dataset Card for Chess Puzzles (SAN)
9
+ 4,130,824 chess puzzles from [Lichess](https://lichess.org/training/themes) with moves converted to standard algebric notation.
10
+ Puzzles are formatted as standard CSV. The fields are as follows:
11
+
12
+ **`PuzzleId,new_FEN,best_Moves,Rating,RatingDeviation`**
13
+ - **`PuzzleId`**: `string`, the puzzle's unique identifier. The puzzle would be live at `https://lichess.org/training/{PuzzleID}`.
14
+ - **`new_FEN`**: `string`, the FEN string of the position **after** the opponent has made their move. It is now player's turn to make the move and solve the puzzle.
15
+ - **`best_Moves`**: `string`, the solution to the puzzle. All player moves of the solution are "only moves", i.e. playing any other move would considerably worsen the player position. An exception is made for mates in one: there can be several. Any move that checkmates should win the puzzle.
16
+ - **`Rating`**: `int`, the Glicko-2 rating of the puzzle.
17
+ - **`RatingDeviation`**: `int`, the Glicko-2 rating deviation of the puzzle.