Skip to content

sgrvinod/chess-transformers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chess Transformers

Teaching transformers to play chess

Version License


Chess Transformers is a library for training transformer models to play chess by learning from human games.

Contents

Install

Models

Datasets

Play

Train Models

Contribute

Install

To install Chess Transformers, clone this repository and install as a Python package locally.

gh repo clone sgrvinod/chess-transformers
cd chess-transformers
pip install .

If you are planning to develop or contribute or make changes to the codebase, install the package in editable mode, using the -e flag.

pip install -e .

OPTIONAL — If you want to train or evaluate a model, you may need to set some of the following environment variables on your computer:

  • Set CT_DATA_FOLDER to the folder on your computer where you have the training data. You do not need to set this if you do not plan to train any models.

  • Set CT_STOCKFISH_PATH to the executable of the Stockfish 16 chess engine. You do not need to set this if you do not plan to have a model play against this chess engine.

  • Set CT_FAIRY_STOCKFISH_PATH to the executable of the Fairy Stockfish chess engine. You do not need to set this if you do not plan to have a model play against this chess engine.

Models

There are currently three models available for use in Chess Transformers.

Model Name # Params Training Data Architecture Predictions
CT-E-20 20M LE1222 Transformer encoder only Best next half-move (or ply)
eg. f2e3
CT-EFT-20 20M LE1222 Transformer encoder only Best From and To squares corresponding to the next half-move eg. from f2 to e3
CT-ED-45 45M LE1222 Transformer encoder
and decoder
Sequence of half-moves (or plies)
eg. f2e3 -> b4b3 -> e3h6 -> b3b2 -> g4e6 -> g8f8 -> g3g7 -> f8e8 -> g7f7 -> loses

All models are evaluated against the Fairy Stockfish chess engine at increasing strength levels 1 to 6, as predefined for use in the popular Stockfish chess bots on Lichess. The engine is run on an AMD Ryzen 7 3800X 8-Core Processor, with 8 CPU threads, and a hash table size of 8 GB. All other engine parameters are at their default values.

At each strength level of the chess engine, $n=1000$ games are played by the model, i.e. $500$ games each with black and white pieces.

Win ratios and the difference between the Elo rating of the model and the chess engine are calculated from these games' outcomes.

Detailed evaluation results for each model are provided below.

CT-E-20

Configuration File | Checkpoint | TensorBoard Logs

This is the encoder from the original transformer model in Vaswani et al. (2017) trained on the LE1222 dataset. A classification head at the turn token predicts the best half-move to be made (in UCI notation).

This is essentially a sequence (or image) classification task, where the sequence is the current state of the board, and the classes are the various moves that can be made on a chessboard in UCI notation.

CT-E-20 contains about 20 million parameters.

from chess_transformers.play import load_model
from chess_transformers.configs import import_config

CONFIG = import_config("CT-E-20")
model = load_model(CONFIG)

You do not need to download the model checkpoint manually. It will be downloaded automatically if required.

Model Strength

CT-E-20 was evaluated against the Fairy Stockfish chess engine at various strength levels as predefined for use in the popular Stockfish chess bots on Lichess. The engine is run on an AMD Ryzen 7 3800X 8-Core Processor, with 8 CPU threads, and a hash table size of 8 GB. All other engine parameters are at their default values.

These evaluation games can be viewed here.

Strength Level Games Wins Losses Draws Win Ratio Elo Difference Likelihood of Superiority
$LL$ $n$ $w$ $l$ $d$ $\frac{w + \frac{d}{2}}{n}$ $\Delta_{Elo}$ $LOS$
1 1000 989 0 11 99.45% 902.90
(± 117.67)
100.00%
2 1000 980 0 20 99.00% 798.25
(± 81.48)
100.00%
3 1000 872 61 67 90.55% 392.58
(± 33.31)
100.00%
4 1000 431 455 114 48.80% -8.34
(± 20.30)
21.00%
5 1000 205 685 110 26.00% -181.70
(± 22.78)
0.00%
6 1000 24 952 24 3.60% -571.11
(± 54.08)
0.00%

CT-EFT-20

Configuration File | Checkpoint | TensorBoard Logs

This is the encoder from the original transformer model in Vaswani et al. (2017) trained on the LE1222 dataset. Two classification heads operate upon the encoder outputs at all chessboard squares to predict the best candidates for the source (From) and destination (To) squares that correspond to the best half-move to be made.

This is essentially a sequence (or image) labeling task, where the sequence is the current state of the chessboard, and each square competes to be labeled as the From or To square.

CT-E-20 contains about 20 million parameters.

from chess_transformers.play import load_model
from chess_transformers.configs import import_config

CONFIG = import_config("CT-EFT-20")
model = load_model(CONFIG)

You do not need to download the model checkpoint manually. It will be downloaded automatically if required.

Model Strength

CT-EFT-20 was evaluated against the Fairy Stockfish chess engine at various strength levels as predefined for use in the popular Stockfish chess bots on Lichess. The engine is run on an AMD Ryzen 7 3800X 8-Core Processor, with 8 CPU threads, and a hash table size of 8 GB. All other engine parameters are at their default values.

These evaluation games can be viewed here.

Strength Level Games Wins Losses Draws Win Ratio Elo Difference Likelihood of Superiority
$LL$ $n$ $w$ $l$ $d$ $\frac{w + \frac{d}{2}}{n}$ $\Delta_{Elo}$ $LOS$
1 1000 994 0 6 99.70% 1008.63
(± 190.18)
100.00%
2 1000 988 0 12 99.40% 887.69
(± 111.13)
100.00%
3 1000 942 11 47 96.55% 578.77
(± 48.57)
100.00%
4 1000 697 192 111 75.25% 193.17
(± 23.08)
100.00%
5 1000 482 379 139 55.15% 35.91
(± 20.09)
99.98%
6 1000 61 872 67 9.45% -392.58
(± 33.31)
0.00%

CT-ED-45

Configuration File | Checkpoint | TensorBoard Logs

This is the original transformer model (encoder and decoder) in Vaswani et al. (2017) trained on the LE1222 dataset. A classification head after the last decoder layer predicts a sequence of half-moves, starting with the best half-move to be made next, followed by the likely course of the game an arbitrary number of half-moves into the future.

This is essentially a sequence-to-sequence (or image-to-sequence) task, where the input sequence is the current state of the board, and the output sequence is a string of half-moves that will likely occur on the board from that point onwards. Potentially, strategies applied to such tasks, such as beam search for decoding the best possible sequence of half-moves, can also be applied to this model. Training the model to predict not only the best half-move to make on the board right now, but also the sequence of half-moves that follow, can be viewed as a type of multitask training.

We are ultimately only interested in the very first half-move. Nevertheless, the full sequence of half-moves might help explain the model's decision for this important first half-move.

CT-ED-45 contains about 45 million parameters.

from chess_transformers.play import load_model
from chess_transformers.configs import import_config

CONFIG = import_config("CT-ED-45")
model = load_model(CONFIG)

You do not need to download the model checkpoint manually. It will be downloaded automatically if required.

Model Strength

CT-ED-45 was evaluated against the Fairy Stockfish chess engine at various strength levels as predefined for use in the popular Stockfish chess bots on Lichess. The engine is run on an AMD Ryzen 7 3800X 8-Core Processor, with 8 CPU threads, and a hash table size of 8 GB. All other engine parameters are at their default values.

Strength Level Games Wins Losses Draws Win Ratio Elo Difference Likelihood of Superiority
$LL$ $n$ $w$ $l$ $d$ $\frac{w + \frac{d}{2}}{n}$ $\Delta_{Elo}$ $LOS$
1 1000 976 0 24 98.80% 766.23
(± 73.45)
100.00%
2 1000 977 2 21 98.75% 759.05
(± 78.19)
100.00%
3 1000 676 244 80 71.60% 160.64
(± 22.72)
100.00%
4 1000 195 726 79 23.45% -205.52
(± 24.04)
0.00%
5 1000 67 895 38 8.60% -410.58
(± 36.41)
0.00%
6 1000 6 987 7 0.95% -807.25
(± 113.69)
0.00%

Datasets

There are currently two training datasets available in Chess Transformers.

Dataset Name Components # Datapoints
LE1222 Board positions, turn, castling rights, next-move sequence (up to 10 half-moves) 13,287,522
LE1222x Board positions, turn, castling rights, next-move sequence (up to 10 half-moves) 127,684,720

LE1222

This consists of games from the Lichess Elite Database put together by nikonoel, a collection of all standard chess games played on Lichess.org by players with a Lichess Elo rating of 2400+ against players with a Lichess Elo rating of 2200+ up to December 2021, and players rated 2500+ against players rated 2300+ from December 2021.

On this data, we apply the following filters to keep only those games that:

  • were played up to December 2022 (20,241,368 games)
  • and used a time control of at least 5 minutes (2,073,780 games)
  • and ended in a checkmate (274,794 games)

These 274,794 games consist of a total 13,287,522 half-moves made by the winners of the games, which alone constitute the dataset. For each such half-move, the chessboard, turn (white or black), and castling rights of both players before the move are calculated, as well as the sequence of half-moves beginning with this half-move up to 10 half-moves into the future. Draw potential is not calculated.

Download here. The data is zipped and will need to be extracted.

It consists of the following files:

  • LE1222.h5, an HDF5 file containing two tables, one with the raw data and the other encoded with indices (that will be used in the transformer model), containing the following fields:
    • board_position, the chessboard layout, or positions of pieces on the board
    • turn, the color of the pieces of the player to play
    • white_kingside_castling_rights, whether white can castle kingside
    • white_queenside_castling_rights, whether white can castle queenside
    • black_kingside_castling_rights, whether black can castle kingside
    • black_queenside_castling_rights, whether black can castle queenside
    • moves, 10 half-moves into the future made by both players
    • length, the number of half-moves in the sequence, as this will be less than 10 at the end of the game

LE1222x

This is an extended version of LE1222, and also consists of games from the Lichess Elite Database put together by nikonoel, a collection of all standard chess games played on Lichess.org by players with a Lichess Elo rating of 2400+ against players with a Lichess Elo rating of 2200+ up to December 2021, and players rated 2500+ against players rated 2300+ from December 2021.

On this data, we apply the following filters to keep only those games that:

  • were played up to December 2022 (20,241,368 games)
  • and ended in a checkmate (2,751,394 games)

These 2,751,394 games consist of a total 127,684,720 half-moves made by the winners of the games, which alone constitute the dataset. For each such half-move, the chessboard, turn (white or black), and castling rights of both players before the move are calculated, as well as the sequence of half-moves beginning with this half-move up to 10 half-moves into the future. Draw potential is not calculated.

Download here. The data is zipped and will need to be extracted.

It consists of the following files:

  • LE1222.h5, an HDF5 file containing two tables, one with the raw data and the other encoded with indices (that will be used in the transformer model), containing the following fields:
    • board_position, the board layout or positions of pieces on the board
    • turn, the color of the pieces of the player to play
    • white_kingside_castling_rights, whether white can castle kingside
    • white_queenside_castling_rights, whether white can castle queenside
    • black_kingside_castling_rights, whether black can castle kingside
    • black_queenside_castling_rights, whether black can castle queenside
    • moves, 10 half-moves into the future made by both players
    • length, the number of half-moves in the sequence, as this will be less than 10 at the end of the game

Play

After installing Chess Transformers, you can play games against an available model or have a model play against a chess engine.

You v. Model

You could either play in a Jupyter notebook (recommended for better UI) or in a Python shell.

import os
from chess_transformers.configs import import_config
from chess_transformers.play.utils import write_pgns
from chess_transformers.play import load_model, warm_up, human_v_model 

# Load configuration
config_name = "CT-E-20"
CONFIG = import_config(config_name)

# Load assets
model = load_model(CONFIG)

# Warmup model (triggers compilation)
warm_up(
    model=model
)

# Play
wins, losses, draws, pgns = human_v_model(
    human_color="b",  # color you want to play
    model=model,
    k=1,  # "k" in "top_k sampling", k=1 is best
    use_amp=True,
    rounds=1,  # number of rounds you want to play
    clock=None, 
    white_player_name=config_name,
    black_player_name="Me",
)

# Print games in Portable Game Notation (PGN) format
print(pgns)

# Save PGNs if you wish
write_pgns(
    pgns,
    pgn_file="somewhere/something.pgn",
)

You could also just make a copy of human_play.ipynb and play in that notebook.

Model v. Engine

The process is the same as above, except you must use a different set of functions:

from chess_transformers.play import model_v_engine
from chess_transformers.play.utils import load_engine

# Load engine
engine = load_engine(CONFIG.FAIRY_STOCKFISH_PATH)

# Play
LL = 1  # Try strength levels 1 to 8 (note: 7 and 8 may be slow)
model_color = "w"  # Try "w" and "b"
wins, losses, draws, pgns = model_v_engine(
    model=model,
    k=CONFIG.SAMPLING_K,
    use_amp=CONFIG.USE_AMP,
    model_color=model_color,
    engine=engine,
    time_limit=CONFIG.LICHESS_LEVELS[LL]["TIME_CONSTRAINT"],
    depth_limit=CONFIG.LICHESS_LEVELS[LL]["DEPTH"],
    uci_options={"Skill Level": CONFIG.LICHESS_LEVELS[LL]["SKILL"]},
    rounds=500,
    clock=None,
    white_player_name="Fairy Stockfish @ LL {}".format(LL)
    if model_color == "b"
    else config_name,
    black_player_name="Fairy Stockfish @ LL {}".format(LL)
    if model_color == "w"
    else config_name,
    event=config_name + " v. Fairy Stockfish @ LL {}".format(LL)
    if model_color == "w"
    else "Fairy Stockfish @ LL {} v. ".format(LL) + config_name,
)

See evaluate.py for an example.

Time Control

If you're using a Unix-type operating system — basically, not Windows — you can also set a time control for your games. Currently, only Fischer time control is available.

from chess_transformers.play.clocks import ChessClock

clock = ChessClock(base_time=60, 
                   increment=1)

Pass this clock to the functions above instead of clock=None.

Train Models

You're welcome to try to train your own models, but if you wish to contribute trained models, please discuss first.

Dataset

You can skip this step if you wish to use one of the existing datasets.

  • Collect PGN files containing games you wish to use for training the model.

  • Create a bash script for parsing these PGN files into a collection of FENs and moves using pgn-extract, like in LE1222.sh, and execute it in the folder with the PGN files.

  • Create a configuration file for the dataset, like in LE1222.py.

  • Run prep.py like python prep.py [config_name], or do it in your own Python script.

from chess_transformers.data import prepare_data
from chess_transformers.configs import import_config

# Load configuration
CONFIG = import_config("[config_name]")

# Prepare data
prepare_data(
    data_folder=CONFIG.DATA_FOLDER,
    h5_file=CONFIG.H5_FILE,
    max_move_sequence_length=CONFIG.MAX_MOVE_SEQUENCE_LENGTH,
    expected_rows=CONFIG.EXPECTED_ROWS,
    val_split_fraction=CONFIG.VAL_SPLIT_FRACTION,
)

Data files will be created in CONFIG.DATA_FOLDER.

Training

  • Create a configuration file for the model, like in CT-E-20.py.

  • Run train.py like python train.py [config_name], or do it in your own Python script.

from chess_transformers.train import train_model
from chess_transformers.configs import import_config

# Load configuration
CONFIG = import_config("[config_name]")

# Train model
train_model(CONFIG)
  • Monitor training with TensorBoard with tensorboard --logdir $CT_LOGS_DIR.

Evaluation

Run evaluate.py like python evaluate.py [config_name], or do it in your own Python notebook/script.

from chess_transformers.configs import import_config
from chess_transformers.evaluate import evaluate_model

# Load configuration
CONFIG = import_config("[config_name]")

# Evaluate model
evaluate_model(CONFIG)

Contribute

Contributions — and any discussion thereof — are welcome. As you may have noticed, Chess Transformers is in initial development and the public API is not to be considered stable.

If you are planning to contribute bug-fixes, please go ahead and do so. If you are planning to contribute in a way that extends Chess Transformers, or adds any new features, data, or models, please create a discussion thread to discuss it before you spend any time on it. Otherwise, your PR may be rejected due to lack of consensus or alignment with current goals.

Presently, the following types of contributions may be useful:

  • Better, more robust evaluation methods of models.
  • Evaluation of existing models against chess engines on different CPUs to study the effect of CPU specifications on engine strength and evaluation.
  • New models with:
    • the same transformer architectures but of a larger size, and trained on larger datasets.
    • or different transformer architectures or internal mechanisms.
    • or in general, improved evaluation scores.
  • Chess clocks for Windows OS, or for Unix-type OS but for time controls other than Fischer time control.
  • Refactoring of code that improves its ease of use.
  • Model visualization for explainable AI, such as visualizing positional and move embeddings, or attention patterns.

This list is not exhaustive. Please do not hesitate to discuss your ideas. Thank you!

License

Chess Transformers is licensed under the MIT license.