danielgmonroe commited on
Commit
7b8b2a1
·
verified ·
1 Parent(s): 7bcee58

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -3
README.md CHANGED
@@ -9,8 +9,10 @@ pinned: false
9
 
10
  # Leela Chess Zero
11
 
12
- All transformer models here are "Chessformers" — encoder-only transformers with the Geometric Attention Bias described in the paper *Chessformer: A Unified Architecture for Chess Modeling*.
13
 
14
- They are written in the internal Lc0 format, which is compatible with the training code and the engine. They can be converted to ONNX through the `leela2onnx` command in releases of the Lc0 engine.
15
 
16
- **BT4** is our largest model at 190M and corresponds to Leela-CF. BT4 and BT3 were trained with SFT on a prior RL run, and the T1 models were distilled from a larger transformer.
 
 
 
9
 
10
  # Leela Chess Zero
11
 
12
+ All models here are "Chessformers" — encoder-only transformers with the Geometric Attention Bias described in the paper [Chessformer: A Unified Architecture for Chess Modeling](https://openreview.net/pdf?id=2ltBRzEHyd).
13
 
14
+ They are expressed in the internal Lc0 format built on Protobuf (hence `.pb.gz`), which is compatible with the training code and the engine. They can be converted to ONNX through the `leela2onnx` command through the Lc0 binary, which we recommend for mechanistic interpretability research.
15
 
16
+ **BT4** is our largest model at 190M and corresponds to Leela-CF. BT4 and BT3 were trained with SFT on a prior RL run, and the T1 models were distilled from a larger transformer. The models range in skill from expert-level (T1-10L-256D) to grandmaster-plus-level (BT4) at Blitz time controls with greedy sampling of policy prediction.
17
+
18
+ See also the [website](lczero.org), [Discord server](lczero.org/chat), and [a longest model list](https://lczero.org/dev/wiki/best-nets-for-lc0/) of the Leela Chess Zero project.