nfiekas commited on
Commit
f39fc10
·
verified ·
1 Parent(s): c100ac1

Better describe columns

Browse files
Files changed (1) hide show
  1. README.md +8 -6
README.md CHANGED
@@ -2,12 +2,14 @@
2
  license: cc0-1.0
3
  ---
4
 
5
- # fishnet-evals
6
 
7
- Chess positions and evaluations computed using Lichess's distributed Stockfish analysis.
8
 
9
- ## Columns
10
 
11
- * `fen`: FEN of the position. En passant square only included if fully legal en passant available.
12
- * `cp` / `mate`: Evaluation of the position in centipawns or moves to mate. Exactly one of these is not null. Positive if White has the advantage.
13
- * `move`: UCI of the next move played by the human player, if any. Uses Chess960 (king to rook) notation for castling.
 
 
 
2
  license: cc0-1.0
3
  ---
4
 
5
+ # Lichess database positions with Stockfish evaluations
6
 
7
+ Positions with evaluations extracted from https://database.lichess.org/.
8
 
9
+ Evaluations were computed using Lichess's distributed Stockfish analysis [fishnet](https://github.com/lichess-org/fishnet), using various Stockfish versions.
10
 
11
+ column | type | description
12
+ --- | --- | ---
13
+ `fen` | string | FEN of the evaluated position. En passant square included only if a fully legal en passant move exists.
14
+ `cp` / `mate` | int *or* null | Signed evaluation of the position in centipawns or moves to mate, as computed by Stockfish. Exactly one of these is not null. Always given from White's point of view, so positive if White has the advantage
15
+ `move` | string *or* null | UCI notation of the next move played by the human player, if any. Always in Chess960 mode (king move to rook for castling).