Update README.md
Browse files
README.md
CHANGED
@@ -35,11 +35,10 @@ dataset = load_dataset(path="mauricett/lichess_sf",
|
|
35 |
<br>
|
36 |
|
37 |
### 2. Data Format
|
38 |
-
|
39 |
|
40 |
```py
|
41 |
example = next(iter(dataset))
|
42 |
-
print(example)
|
43 |
```
|
44 |
|
45 |
A single sample from the dataset contains one complete chess game as a dictionary. The dictionary keys are as follows:
|
|
|
35 |
<br>
|
36 |
|
37 |
### 2. Data Format
|
38 |
+
The following definitions are important to understand. Please reread this section slowly and correctly when you have to decide how to draw FENs, moves and scores from the dataset. Let's draw a single sample and discuss it.
|
39 |
|
40 |
```py
|
41 |
example = next(iter(dataset))
|
|
|
42 |
```
|
43 |
|
44 |
A single sample from the dataset contains one complete chess game as a dictionary. The dictionary keys are as follows:
|