datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
countdown-dataset
ES Heterogeneity Countdown
Countdown arithmetic data used for Evolution Strategies experiments under
heterogeneous data allocation.
Dataset splits
train: approximately 3.79 million synthetically generated, solvable, and
deduplicated Countdown problems.
test: 2,000 held-out Countdown problems from the original evaluation set.
Each example contains:
id: example identifier
numbers: input numbers that must each be used exactly once
target: desired arithmetic result… See the full description on the dataset page: https://huggingface.co/datasets/es-heterogeneity/countdown-dataset.countdown-arithmetic-training-pool
Countdown arithmetic training pool
Arithmetic puzzles of the Countdown kind: a handful of source numbers, a target, and the job of
writing an expression over the four operations that reaches the target, using each source number
at most once and not having to use them all. A set generated for this pool and three public
datasets read at the pinned revisions named below, laid out twice. Train on either layer or on
both.
pool.jsonl
Every source rewritten into one… See the full description on the dataset page: https://huggingface.co/datasets/Emulated-Inc/countdown-arithmetic-training-pool.countdown-rlvr
Countdown RLVR
Qwen3-4B의 검증 가능한 추론 학습에 사용하는 Countdown 데이터셋입니다.
주어진 숫자를 각각 한 번 사용하여 목표값을 만드는 수식을 생성합니다.
1. 데이터 구성
분할
개수
숫자 개수
목표값
SHA-256
train
1,024
4
10~100
aa7abb6242d8ada72e55a6d8d0917e3618473ddf2f0f880b288814394b231131
validation
128
4
10~100
b06a1be3604d637aa19bd61af57aadf98fbbffcb8ef4db8d477fe8535c617497
test
256
4
10~100
416c02076321875cccfeed19f742e56048269b4b9d24112f6a2bee82ba301815
demo.jsonl에는 검증 흐름을 확인하는 숫자 3개 문제를 둡니다.… See the full description on the dataset page: https://huggingface.co/datasets/NotoriousH2/countdown-rlvr.countdown_fresh_heldout_1024
Countdown Fresh Held-Out 1024
This dataset contains 1,024 fresh held-out Countdown arithmetic problems for evaluating language models on the 3-to-4 number Countdown task.
Each problem provides a target integer and a list of 3 or 4 numbers. A model must construct an arithmetic expression using each number at most once and the basic operations +, -, *, and / to equal the target.
Files
standard/test.parquet: prompts for standard no-tool evaluation.… See the full description on the dataset page: https://huggingface.co/datasets/MinghuiXu/countdown_fresh_heldout_1024.countdown-es-grpo-0.1
COUNTDOWN Dataset for ES vs GRPO Comparison
Dataset Description
This dataset contains prepared splits of the COUNTDOWN task for comparing Evolution Strategies (ES) and Group Relative Policy Optimization (GRPO) methods for LLM fine-tuning.
Dataset Statistics
Training split: 10.0% of available data
Training samples: 200
Validation samples: 1,800
Test samples: 200 (reserved for final evaluation)
Data Format
Each example contains:
data: The input… See the full description on the dataset page: https://huggingface.co/datasets/alphaXiv/countdown-es-grpo-0.1.countdown-full
COUNTDOWN Dataset for ES vs GRPO Comparison
Dataset Description
Full Countdown dataset (2100 train + 100 test samples) for mathematical reasoning and arithmetic expression generation
Dataset Statistics
Training split: 100.0% of available data
Training samples: 2,100
Validation samples: 0
Test samples: 100 (reserved for final evaluation)
Data Format
Each example contains:
- data: The input prompt/question
- answer: Ground truth answer
-… See the full description on the dataset page: https://huggingface.co/datasets/alphaXiv/countdown-full.countdown-es-grpo-0.4
COUNTDOWN Dataset for ES vs GRPO Comparison
Dataset Description
This dataset contains prepared splits of the COUNTDOWN task for comparing Evolution Strategies (ES) and Group Relative Policy Optimization (GRPO) methods for LLM fine-tuning.
Dataset Statistics
Training split: 40.0% of available data
Training samples: 800
Validation samples: 1,200
Test samples: 200 (reserved for final evaluation)
Data Format
Each example contains:
data: The input… See the full description on the dataset page: https://huggingface.co/datasets/alphaXiv/countdown-es-grpo-0.4.countdown-reasoning
Countdown Reasoning (cd3 / cd4 / cd5)
A synthetic arithmetic reasoning dataset based on the Countdown game: given a
set of k source numbers and a target, combine the numbers with +, -, *, /
(each number used at most once) to reach the target. Each example ships with a
clean, verified step-by-step solution. The dataset is designed for training and
evaluating sequence models on multi-step symbolic reasoning with an exact,
programmatic correctness check.
There are three subsets of… See the full description on the dataset page: https://huggingface.co/datasets/saitejautpala/countdown-reasoning.countdown-qwen3-0.6b
Countdown Qwen3-0.6B Pass@10 Buckets
Countdown arithmetic problems filtered by observed local Qwen/Qwen3-0.6B success rate over 10 rollouts per problem.
Each problem asks for an arithmetic expression that reaches a target using each listed source number at most once. The final answer should be inside \boxed{...}. Canonical solutions are provided, but any verifier-valid expression is accepted.
Subsets
subset
source bucket
count
observed successes out of 10… See the full description on the dataset page: https://huggingface.co/datasets/simpissa/countdown-qwen3-0.6b.countdown-4-30-100
Countdown (30/100)
Countdown arithmetic-reasoning dataset in verl RL format. Given 4 numbers, reach the target using +, -, *, /.
Numbers per problem: 4, integer values in 1..30
Target range: 0..100
Splits: train = 327,680 rows, test = 1,024 rows
Columns: target, nums, data_source, prompt, ability, reward_model, extra_info
from datasets import load_dataset
ds = load_dataset("gaijingchu/countdown-") # see repo id
countdown-4-10-50
Countdown (10/50)
Countdown arithmetic-reasoning dataset in verl RL format. Given 4 numbers, reach the target using +, -, *, /.
Numbers per problem: 4, integer values in 1..10
Target range: 0..50
Splits: train = 327,680 rows, test = 1,024 rows
Columns: target, nums, data_source, prompt, ability, reward_model, extra_info
from datasets import load_dataset
ds = load_dataset("gaijingchu/countdown-") # see repo id
countdown-mult-sft
Countdown multiplication SFT dataset
About 5,000 Countdown problems that genuinely require a multiply or divide (no add/sub-only
solution exists), each paired with a correct, worked solution from a brute-force solver. Used to
supervised-fine-tune Qwen2.5-3B in the
GRPO/SFT Countdown study.
Each row is a prompt / completion pair in the chat format the model trains on. The completion
reasons inside <think> </think> and gives the final equation inside <answer> </answer>:
prompt:… See the full description on the dataset page: https://huggingface.co/datasets/leon2k2k2k/countdown-mult-sft.
