Update README.md
Browse files
README.md
CHANGED
@@ -60,7 +60,12 @@ One row of the dataset looks like this:
|
|
60 |
|
61 |
```python
|
62 |
{
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
64 |
}
|
65 |
```
|
66 |
|
@@ -68,9 +73,9 @@ One row of the dataset looks like this:
|
|
68 |
|
69 |
Every row of the dataset contains the following fields:
|
70 |
|
71 |
-
- **`fen`**: `string`,
|
72 |
-
- **`line`**: `string`,
|
73 |
-
- **`depth`**: `string`,
|
74 |
-
- **`knodes`**: `int`,
|
75 |
-
- **`cp`**: `int`,
|
76 |
-
- **`mate`**: `int`,
|
|
|
60 |
|
61 |
```python
|
62 |
{
|
63 |
+
"fen": "2bq1rk1/pr3ppn/1p2p3/7P/2pP1B1P/2P5/PPQ2PB1/R3R1K1 w - -",
|
64 |
+
"line": "g2e4 f7f5 e4b7 c8b7 f2f3 b7f3 e1e6 d8h4 c2h2 h4g4",
|
65 |
+
"depth": 36,
|
66 |
+
"knodes": 206765,
|
67 |
+
"cp": 311,
|
68 |
+
"mate": None
|
69 |
}
|
70 |
```
|
71 |
|
|
|
73 |
|
74 |
Every row of the dataset contains the following fields:
|
75 |
|
76 |
+
- **`fen`**: `string`, the position FEN only contains pieces, active color, castling rights, and en passant square.
|
77 |
+
- **`line`**: `string`, the principal variation, in UCI format.
|
78 |
+
- **`depth`**: `string`, the depth reached by the engine.
|
79 |
+
- **`knodes`**: `int`, the number of kilo-nodes searched by the engine.
|
80 |
+
- **`cp`**: `int`, the position's centipawn evaluation. This is `None` if mate is certain.
|
81 |
+
- **`mate`**: `int`, the position's mate evaluation. This is `None` if mate is not certain.
|