AnonymizedTMLRSubmission/reasoning-lite
Anonymous Reasoning Lite This repository contains data accompanying an anonymous TMLR submission. It provides 1,211,520 sampled reasoning attempts from four model configurations on competition-math and field-balanced multiple-choice questions. The data omits top-20 alternative-token distributions while retaining realized-token log probabilities and ranks. Contents The same attempts are available in full and metadata-only representations: Configuration group… See the full description on the dataset page: https://huggingface.co/datasets/AnonymizedTMLRSubmission/reasoning-lite.
Anonymous Reasoning Lite
This repository contains data accompanying an anonymous TMLR submission. It provides 1,211,520 sampled reasoning attempts from four model configurations on competition-math and field-balanced multiple-choice questions. The data omits top-20 alternative-token distributions while retaining realized-token log probabilities and ranks.
Contents
The same attempts are available in full and metadata-only representations:
math/<model>/<task>.parquet
gpqa/<model>/super_gpqa-NNNNN.parquet
meta-math/<model>/<task>.parquet
meta-gpqa/<model>/super_gpqa-NNNNN.parquetOne Parquet row group contains one question's 80 attempts, ordered by seed.
Loading
pip install -U datasetsfrom datasets import load_dataset
math_meta = load_dataset(
"AnonymizedTMLRSubmission/reasoning-lite",
"meta-math",
split="aime_2026",
streaming=True,
)
gpqa_meta = load_dataset(
"AnonymizedTMLRSubmission/reasoning-lite",
"meta-gpqa",
split="super_gpqa",
streaming=True,
)
model_data = load_dataset(
"AnonymizedTMLRSubmission/reasoning-lite",
"gpt-oss-20b_medium-math",
split="cmimc_2025",
streaming=True,
)Data Format
Math rows additionally include boxed-answer parsing fields. Multiple-choice rows include stage, full_data_id, uuid, selection_hash, and field taxonomy columns.
cv3b_label is the emitted A, B, or C verifier label. cv3b_prob is the full-vocabulary probability of that emitted label. cv3b_abc_A/B/C is normalized over the three labels. cv3b_ctx_A/B/C contains null-prompt-calibrated diagnostics and should not be interpreted as correctness probabilities.
The reference-free verifier scores problem understanding, reasoning validity, and conclusion support from 1 to 20. Convert an expected criterion score to the retained reward scale with (expected - 1) / 19; average the three criterion rewards for a pointwise score.
The tokens struct contains six aggregate log-probability statistics. Per-model configs also include realized-token, log-probability, and rank arrays. Metadata-only configs omit the arrays.
Reproducibility
Every question has 80 attempts. Use model_key rather than model to distinguish the three reasoning levels of the shared checkpoint. State filtering of aborted or truncated attempts and the verifier score used in any answer-selection analysis.
License
The artifact is provided under the MIT License. Questions and problem statements from the underlying benchmarks remain subject to their applicable terms. The SuperGPQA question content is provided under ODC-BY 1.0 and requires upstream credit.
Upstream Attribution
The multiple-choice questions are derived from the SuperGPQA benchmark, published by the M-A-P Team. Users should credit that benchmark and its paper, "SuperGPQA: Scaling LLM Evaluation across 285 Graduate Disciplines" (2025), when using the question content.
Citation
Citation information will be added after anonymous review.
