File size: 1,020 Bytes
4223a27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
license: cc0-1.0
tags:
- chess
- lichess
- stockfish
---
# Dataset Card for the Stockfish Evaluations

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. 

The schema of a position looks like this:

```
{
  "fen": "8/8/2B2k2/p4p2/5P1p/Pb6/1P3KP1/8 w - -",
  "depth": 42,
  "evaluation": 5.64,
  "best_move": "Kg1",
  "best_line": "Kg1 Ke6 Kh2 Kd6 Be8 Kc5 Kh3 Kd6 Bb5 Ke7"
}
```

- **`fen`**: `string`, the position FEN only contains pieces, active color, castling rights, and en passant square.
- **`depth`**: `int`, the depth reached by the engine.
- **`evaluation`**: `string`, the evaluation for the given FEN/board state.
- **`best_move`**: `string`, the first move of the best_line, in **SAN** format.
- **`best_line`**: `string`, the first principal variation for the given highest available depth, in **SAN** format.