mauricett commited on
Commit
c34da28
1 Parent(s): bb034c4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -2
README.md CHANGED
@@ -35,11 +35,10 @@ dataset = load_dataset(path="mauricett/lichess_sf",
35
  <br>
36
 
37
  ### 2. Data Format
38
- After loading the dataset, we can take a first peek at a sample. But it's not very pretty yet! We will try again at the very end.
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: