danielgmonroe commited on
Commit
bac71e4
·
verified ·
1 Parent(s): 3b14d45

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as demo:
4
+ gr.Markdown("""# Leela Chess Zero"
5
+ 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`
6
+ 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.
7
+ 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."""
8
+ )
9
+
10
+ demo.launch()