christopher
commited on
Commit
•
66f0e60
1
Parent(s):
917fc2d
Update README.md
Browse files
README.md
CHANGED
@@ -41,7 +41,10 @@ tags:
|
|
41 |
|
42 |
<!-- Provide a quick summary of the dataset. -->
|
43 |
|
44 |
-
4,062,423 chess puzzles, rated and tagged. See them in action on [Lichess](https://lichess.org/training/themes).
|
|
|
|
|
|
|
45 |
|
46 |
## Dataset Usage
|
47 |
|
@@ -54,6 +57,8 @@ dset = load_dataset("Lichess/puzzles", split="train")
|
|
54 |
|
55 |
## Dataset Details
|
56 |
|
|
|
|
|
57 |
One row of the dataset looks like this:
|
58 |
|
59 |
```python
|
@@ -68,13 +73,17 @@ One row of the dataset looks like this:
|
|
68 |
'GameUrl': 'https://lichess.org/4MWQCxQ6/black#31',
|
69 |
'OpeningTags': 'Kings_Pawn_Game Kings_Pawn_Game_Leonardis_Variation'}
|
70 |
```
|
|
|
71 |
|
72 |
-
|
73 |
-
|
74 |
-
Generating these chess puzzles took more than 50 years of CPU time. We went through 300,000,000 analyzed games from the Lichess database, and re-analyzed interesting positions with Stockfish 12/13/14/15 NNUE at 40 meganodes. The resulting puzzles were then [automatically tagged](https://github.com/ornicar/lichess-puzzler/tree/master/tagger). To determine the rating, each attempt to solve is considered as a Glicko2 rated game between the player and the puzzle. Finally, player votes refine the tags and define popularity.
|
75 |
-
|
76 |
-
## Dataset Structure
|
77 |
-
|
78 |
-
<!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
|
79 |
|
80 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
<!-- Provide a quick summary of the dataset. -->
|
43 |
|
44 |
+
4,062,423 chess puzzles, rated and tagged. See them in action on [Lichess](https://lichess.org/training/themes).
|
45 |
+
|
46 |
+
Generating these chess puzzles took more than **50 years of CPU time**. We went through **300,000,000 analyzed games** from the Lichess database, and re-analyzed interesting positions with Stockfish 12/13/14/15 NNUE at 40 meganodes. The resulting puzzles were then [automatically tagged](https://github.com/ornicar/lichess-puzzler/tree/master/tagger). To determine the rating, each attempt to solve is considered as a Glicko2 rated game between the player and the puzzle. Finally, player votes refine the tags and define popularity.
|
47 |
+
|
48 |
|
49 |
## Dataset Usage
|
50 |
|
|
|
57 |
|
58 |
## Dataset Details
|
59 |
|
60 |
+
### Dataset Sample
|
61 |
+
|
62 |
One row of the dataset looks like this:
|
63 |
|
64 |
```python
|
|
|
73 |
'GameUrl': 'https://lichess.org/4MWQCxQ6/black#31',
|
74 |
'OpeningTags': 'Kings_Pawn_Game Kings_Pawn_Game_Leonardis_Variation'}
|
75 |
```
|
76 |
+
### Dataset Fields
|
77 |
|
78 |
+
Every row of the dataset contains the following fields:
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
|
80 |
+
- `PuzzleId`:
|
81 |
+
- `FEN`:
|
82 |
+
- `Moves`:
|
83 |
+
- `Rating`:
|
84 |
+
- `RatingDeviation`:
|
85 |
+
- `Popularity`:
|
86 |
+
- `NbPlays`:
|
87 |
+
- `Themes`:
|
88 |
+
- `GameUrl`:
|
89 |
+
- `OpeningTags`:
|