Add dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
pretty_name: GCC 2025 chess policy datasets (searchless + gold)
|
| 6 |
+
tags:
|
| 7 |
+
- chess
|
| 8 |
+
- distillation
|
| 9 |
+
- policy
|
| 10 |
+
- searchless
|
| 11 |
+
- stockfish
|
| 12 |
+
- uci
|
| 13 |
+
- global-chess-challenge-2025
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# GCC 2025 Chess Policy Datasets (searchless + gold)
|
| 17 |
+
|
| 18 |
+
This repo contains the datasets used to train and evaluate a text-only chess policy model for the Global Chess Challenge 2025.
|
| 19 |
+
|
| 20 |
+
## Files
|
| 21 |
+
- `searchless.jsonl`: 2,048,000 searchless teacher-labeled positions.
|
| 22 |
+
- `gold.jsonl`: 208,832 Stockfish-labeled positions (gold).
|
| 23 |
+
- `labels_merged.jsonl`: merged labels (searchless + gold).
|
| 24 |
+
- `policy_sft_v2.jsonl`: SFT training set with `gold_repeat=3` applied.
|
| 25 |
+
- `labels_eval_5000.jsonl`: fixed 5k canary set for offline evaluation.
|
| 26 |
+
- `notes/data_assets_20251231T220044Z.md`: dataset inventory and backup notes.
|
| 27 |
+
|
| 28 |
+
## Schema
|
| 29 |
+
### Common fields
|
| 30 |
+
- `fen`: FEN string
|
| 31 |
+
- `move_history_uci`: optional move history (UCI)
|
| 32 |
+
- `legal_moves_uci`: list of legal moves (UCI)
|
| 33 |
+
- `best_move`: labeled best move (UCI)
|
| 34 |
+
- `label_source`: `searchless` or `stockfish`
|
| 35 |
+
|
| 36 |
+
### Searchless-only fields
|
| 37 |
+
- `teacher_model`, `teacher_checkpoint_step`
|
| 38 |
+
- `top_moves`, `top_win_probs`
|
| 39 |
+
- `bottom_moves`, `bottom_win_probs`
|
| 40 |
+
- `best_win_prob`
|
| 41 |
+
|
| 42 |
+
### Gold-only fields
|
| 43 |
+
- `stockfish_depth`
|
| 44 |
+
|
| 45 |
+
## Intended use
|
| 46 |
+
- Supervised policy SFT for chess move selection.
|
| 47 |
+
- Preference/ranking training using top/bottom move lists and win probabilities.
|
| 48 |
+
|
| 49 |
+
## Notes
|
| 50 |
+
- Prompt templates are stored in the training repo; this dataset only includes labels.
|
| 51 |
+
- The canary set is fixed to enable paired comparisons across checkpoints.
|
| 52 |
+
|