Update README.md
Browse files
README.md
CHANGED
@@ -16,7 +16,25 @@ dataset_info:
|
|
16 |
num_examples: 62561
|
17 |
download_size: 52539213
|
18 |
dataset_size: 190402143
|
|
|
19 |
---
|
20 |
# Dataset Card for "chess10k"
|
|
|
|
|
21 |
|
22 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
num_examples: 62561
|
17 |
download_size: 52539213
|
18 |
dataset_size: 190402143
|
19 |
+
license: apache-2.0
|
20 |
---
|
21 |
# Dataset Card for "chess10k"
|
22 |
+
## Dataset Details
|
23 |
+
This is a chess dataset created in the paper ["Implicit Search via Discrete Diffusion: A Study on Chess"](https://arxiv.org/abs/2502.19805).
|
24 |
|
25 |
+
`chess10k` contains 10k games from [Lichess](https://lichess.org/) and the actions are reannotated by [Stockfish 16](https://stockfishchess.org/).
|
26 |
+
|
27 |
+
The datasets contains three field:
|
28 |
+
- `state`: board state is represented in a FEN-like format.
|
29 |
+
- `action`: the best action suggested by Stockfish 16 at the above state.
|
30 |
+
- `future`: the best future tracjectory suggested by Stockfish 16 followed by the above action.
|
31 |
+
|
32 |
+
## Citation
|
33 |
+
```
|
34 |
+
@article{ye2025implicit,
|
35 |
+
title={Implicit Search via Discrete Diffusion: A Study on Chess},
|
36 |
+
author={Ye, Jiacheng and Wu, Zhenyu and Gao, Jiahui and Wu, Zhiyong and Jiang, Xin and Li, Zhenguo and Kong, Lingpeng},
|
37 |
+
journal={arXiv preprint arXiv:2502.19805},
|
38 |
+
year={2025}
|
39 |
+
}
|
40 |
+
```
|