bingbangboom commited on
Commit
4223a27
1 Parent(s): 401c754

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -3
README.md CHANGED
@@ -1,3 +1,28 @@
1
- ---
2
- license: cc0-1.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ tags:
4
+ - chess
5
+ - lichess
6
+ - stockfish
7
+ ---
8
+ # Dataset Card for the Stockfish Evaluations
9
+
10
+ A dataset of chess positions evaluated with various flavours of Stockfish running within user browsers. Produced by, and for, the [Lichess analysis board](https://lichess.org/analysis). Evaluations are formatted as JSON; one position per line.
11
+
12
+ The schema of a position looks like this:
13
+
14
+ ```
15
+ {
16
+ "fen": "8/8/2B2k2/p4p2/5P1p/Pb6/1P3KP1/8 w - -",
17
+ "depth": 42,
18
+ "evaluation": 5.64,
19
+ "best_move": "Kg1",
20
+ "best_line": "Kg1 Ke6 Kh2 Kd6 Be8 Kc5 Kh3 Kd6 Bb5 Ke7"
21
+ }
22
+ ```
23
+
24
+ - **`fen`**: `string`, the position FEN only contains pieces, active color, castling rights, and en passant square.
25
+ - **`depth`**: `int`, the depth reached by the engine.
26
+ - **`evaluation`**: `string`, the evaluation for the given FEN/board state.
27
+ - **`best_move`**: `string`, the first move of the best_line, in **SAN** format.
28
+ - **`best_line`**: `string`, the first principal variation for the given highest available depth, in **SAN** format.