Leela Chess Zero
Collection
A collection of Leela Chess Zero model checkpoints • 14 items • Updated
config.yaml: The config file was originally downloaded from: https://github.com/CSSLab/maia-chess/blob/master/move_prediction/replication-configs/final/1500_final.yamlfrom chessnets.pipelines.lc0 import Lc0Pipeline
pipeline = Lc0Pipeline.from_pretrained("shermansiu/maia-1500")
predictions = pipeline("1. e4 e5")
config.json: canonical, fully materialized ChessNets architecture configmodel.safetensors: decoded float32 PyTorch tensorsprovenance.json: source and conversion hashesoriginal/model.pb.gz: original Lc0 protobuf checkpointtraining/original_lczero_training_config.yaml: original training configThe learned protobuf weight layers used LINEAR16 encoding. Conversion decoded
those values into float32 tensors; it cannot restore precision already lost in
the source encoding.
This Maia-1 network is intended to imitate moves from its target human rating group. It is a move-prediction model, not a calibrated estimate of an individual player's strength.
Review legal moves and probabilities in context. Outputs are not guarantees of playing strength, fairness, or suitability for high-stakes decisions.
Please cite the original Maia work:
@inproceedings{mcilroyyoung2020maia,
title={Aligning Superhuman AI with Human Behavior: Chess as a Model System},
author={McIlroy-Young, Reid and Sen, Siddhartha and Kleinberg, Jon and Anderson, Ashton},
booktitle={Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining},
year={2020},
doi={10.1145/3394486.3403219}
}
See the official Maia repository and paper.