five

prdev/chessbench-full-policy-value

收藏
Hugging Face2026-01-18 更新2026-03-29 收录
下载链接:
https://hf-mirror.com/datasets/prdev/chessbench-full-policy-value
下载链接
链接失效反馈
官方服务:
资源简介:
--- license: mit task_categories: - tabular-classification - other tags: - chess - game-ai - evaluation size_categories: - 1B<n<10B --- # ChessBenchmate Aggregated Dataset This dataset is a transformed version of the ChessBenchmate dataset, aggregating all legal moves and their Stockfish evaluations per chess position. ## Dataset Structure Each record contains: - `fen`: Chess position in FEN notation - `moves`: Dictionary mapping UCI moves to their evaluations - `win_prob`: Win probability from 0.0 to 1.0 (Stockfish evaluation) - `mate`: Mate indicator (None = no forced mate, '#' = immediate checkmate, integer = mate-in-N) ## File Format - Format: MessagePack binary (streamed records) - Files: 1024 shards (`train-XXXXX-of-01024.msgpack`) - Estimated: ~3.6B unique positions ## Usage ```python import msgpack def load_positions(filepath): """Stream positions from a msgpack file.""" with open(filepath, 'rb') as f: unpacker = msgpack.Unpacker(f, raw=False) for record in unpacker: yield record # Example for record in load_positions('train-00000-of-01024.msgpack'): fen = record['fen'] moves = record['moves'] for move, eval in moves.items(): print(f"{move}: win_prob={eval['win_prob']:.3f}, mate={eval['mate']}") break ``` ## Source Transformed from [ChessBenchmate](https://huggingface.co/datasets/Lichess/chessbenchmate) dataset. ## License MIT License (same as source dataset)
提供机构:
prdev
5,000+
优质数据集
54 个
任务类型
进入经典数据集
二维码
社区交流群

面向社区/商业的数据集话题

二维码
科研交流群

面向高校/科研机构的开源数据集话题

数据驱动未来

携手共赢发展

商业合作