groloch commited on
Commit
042b8d7
·
verified ·
1 Parent(s): 62560ce

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -26,3 +26,26 @@ configs:
26
  - split: train
27
  path: data/train-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  - split: train
27
  path: data/train-*
28
  ---
29
+ ## LC0 Games
30
+
31
+ This dataset contains 170m games played by Leela Chess Zero against itself. The moves are written in uci format.
32
+
33
+ The games were sourced directly from [the lc0 official data](https://storage.lczero.org/files/).
34
+
35
+ This dataset contain some chess960 games, for which the start FEN is specified.
36
+
37
+ For each name, the lc0 version (run id) playing are specified. You can find more details on the specific runs [there](https://training.lczero.org/networks/).
38
+
39
+ # Use
40
+
41
+ To use this dataset, copy the following snippet:
42
+
43
+ ```python
44
+ from datasets import load_dataset
45
+
46
+ dataset = load_dataset(
47
+ 'groloch/lc0_games',
48
+ streaming=True,
49
+ split='train'
50
+ )
51
+ ```