Upload OpenReasoning mixed 100K dataset
Browse filesPrompt-only 1:1:1 mixture of OpenMathReasoning, OpenScienceReasoning-2, and OpenCodeReasoning with provenance manifest and dataset card.
- README.md +105 -0
- manifest.json +118 -0
- train.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: OpenReasoning Mixed 100K
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
task_categories:
|
| 6 |
+
- text-generation
|
| 7 |
+
tags:
|
| 8 |
+
- reasoning
|
| 9 |
+
- math
|
| 10 |
+
- code
|
| 11 |
+
- science
|
| 12 |
+
configs:
|
| 13 |
+
- config_name: default
|
| 14 |
+
data_files:
|
| 15 |
+
- split: train
|
| 16 |
+
path: train.parquet
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# OpenReasoning Mixed 100K
|
| 20 |
+
|
| 21 |
+
This dataset is a 100,000-row prompt-only mixture prepared for reproducing the
|
| 22 |
+
Qwen3-1.7B on-policy distillation experiments described in
|
| 23 |
+
[arXiv:2607.15161](https://arxiv.org/abs/2607.15161).
|
| 24 |
+
|
| 25 |
+
This is an independent reproduction artifact, not an official dataset release
|
| 26 |
+
from the paper authors.
|
| 27 |
+
|
| 28 |
+
## Composition
|
| 29 |
+
|
| 30 |
+
| Domain | Rows | Upstream dataset | Config / split |
|
| 31 |
+
|---|---:|---|---|
|
| 32 |
+
| Math | 33,334 | `nvidia/OpenMathReasoning` | `default / cot` |
|
| 33 |
+
| Science | 33,333 | `nvidia/OpenScienceReasoning-2` | `default / train` |
|
| 34 |
+
| Code | 33,333 | `nvidia/OpenCodeReasoning` | `split_0 / split_0` |
|
| 35 |
+
|
| 36 |
+
Only question text and provenance metadata are retained. Upstream answers and
|
| 37 |
+
reasoning traces are not included.
|
| 38 |
+
|
| 39 |
+
## Fields
|
| 40 |
+
|
| 41 |
+
- `messages`: one-message chat record containing the user question
|
| 42 |
+
- `domain`: `math`, `science`, or `code`
|
| 43 |
+
- `source_dataset`: upstream Hugging Face dataset ID
|
| 44 |
+
- `source_config`: upstream dataset config
|
| 45 |
+
- `source_split`: upstream split
|
| 46 |
+
- `source_shard`: sampled upstream Parquet shard index
|
| 47 |
+
- `source_id`: stable source-row/problem identifier used by the builder
|
| 48 |
+
- `prompt_sha256`: SHA-256 of the prompt text
|
| 49 |
+
|
| 50 |
+
## Construction
|
| 51 |
+
|
| 52 |
+
- Seed: `42`
|
| 53 |
+
- Sampling: balanced allocation over randomly ordered Parquet shards, followed
|
| 54 |
+
by random row-group and row selection within each shard
|
| 55 |
+
- Maximum selected source shards per domain: `12`
|
| 56 |
+
- Quality filtering: none
|
| 57 |
+
- Length filtering: none
|
| 58 |
+
- Prompt deduplication: none
|
| 59 |
+
- Answers and reasoning traces retained: no
|
| 60 |
+
|
| 61 |
+
The exact construction manifest is included as `manifest.json`.
|
| 62 |
+
|
| 63 |
+
## Duplicate prompts
|
| 64 |
+
|
| 65 |
+
The dataset contains 74,644 unique prompt hashes and 25,356 duplicate prompt
|
| 66 |
+
rows. Most duplicates come from upstream reasoning datasets containing multiple
|
| 67 |
+
solution traces for the same underlying question. They are intentionally
|
| 68 |
+
preserved to match the row-sampling interpretation used by this reproduction.
|
| 69 |
+
|
| 70 |
+
In particular, the code portion contains 33,333 rows but 10,538 unique prompts.
|
| 71 |
+
Users who require unique problems should deduplicate using `prompt_sha256`.
|
| 72 |
+
|
| 73 |
+
## Upstream revisions
|
| 74 |
+
|
| 75 |
+
- `nvidia/OpenMathReasoning`:
|
| 76 |
+
`d3d08664755704f422af97d43a7ff0ded4bd95df`
|
| 77 |
+
- `nvidia/OpenScienceReasoning-2`:
|
| 78 |
+
`174b02c9cdf231f220765b2a1d5ece4550921894`
|
| 79 |
+
- `nvidia/OpenCodeReasoning`:
|
| 80 |
+
`20a1ca19c0d050fe9057fc08339d6b370ec1c67a`
|
| 81 |
+
|
| 82 |
+
## Usage
|
| 83 |
+
|
| 84 |
+
```python
|
| 85 |
+
from datasets import load_dataset
|
| 86 |
+
|
| 87 |
+
dataset = load_dataset("YangyiH/openreasoning_mixed_100k", split="train")
|
| 88 |
+
```
|
| 89 |
+
|
| 90 |
+
## Licensing and attribution
|
| 91 |
+
|
| 92 |
+
This repository redistributes prompt text derived from the three upstream
|
| 93 |
+
NVIDIA datasets listed above. Review and comply with each upstream dataset card,
|
| 94 |
+
license, terms, and source attribution requirements before use or
|
| 95 |
+
redistribution. No single new license is asserted here over upstream content.
|
| 96 |
+
|
| 97 |
+
## Limitations
|
| 98 |
+
|
| 99 |
+
- The paper authors have not released the exact data-mixing implementation.
|
| 100 |
+
- The mixture preserves duplicate prompts and should not be interpreted as
|
| 101 |
+
100,000 unique questions.
|
| 102 |
+
- No additional quality, difficulty, contamination, or prompt-length filtering
|
| 103 |
+
was applied.
|
| 104 |
+
- The mixture has not been audited for all possible benchmark overlap or
|
| 105 |
+
sensitive content inherited from upstream sources.
|
manifest.json
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"format_version": 1,
|
| 3 |
+
"paper": "arXiv:2607.15161",
|
| 4 |
+
"seed": 42,
|
| 5 |
+
"endpoint": "https://hf-mirror.com",
|
| 6 |
+
"total_rows": 100000,
|
| 7 |
+
"domain_counts": {
|
| 8 |
+
"code": 33333,
|
| 9 |
+
"math": 33334,
|
| 10 |
+
"science": 33333
|
| 11 |
+
},
|
| 12 |
+
"unique_prompt_hashes": 74644,
|
| 13 |
+
"duplicate_prompt_rows": 25356,
|
| 14 |
+
"sampling": {
|
| 15 |
+
"method": "balanced allocation over randomly ordered Parquet shards, then random row groups and rows within each shard",
|
| 16 |
+
"max_source_shards": 12,
|
| 17 |
+
"all_source_shards": false,
|
| 18 |
+
"deduplicate_prompts": false,
|
| 19 |
+
"quality_filter": null,
|
| 20 |
+
"length_filter": null,
|
| 21 |
+
"answers_and_traces_retained": false
|
| 22 |
+
},
|
| 23 |
+
"sources": [
|
| 24 |
+
{
|
| 25 |
+
"domain": "math",
|
| 26 |
+
"dataset": "nvidia/OpenMathReasoning",
|
| 27 |
+
"config": "default",
|
| 28 |
+
"split": "cot",
|
| 29 |
+
"prompt_field": "problem",
|
| 30 |
+
"id_field": null,
|
| 31 |
+
"source_revision": "d3d08664755704f422af97d43a7ff0ded4bd95df",
|
| 32 |
+
"available_parquet_shards": 144,
|
| 33 |
+
"selected_parquet_shards": [
|
| 34 |
+
28,
|
| 35 |
+
6,
|
| 36 |
+
70,
|
| 37 |
+
62,
|
| 38 |
+
57,
|
| 39 |
+
35,
|
| 40 |
+
26,
|
| 41 |
+
139,
|
| 42 |
+
22,
|
| 43 |
+
108,
|
| 44 |
+
8,
|
| 45 |
+
7
|
| 46 |
+
],
|
| 47 |
+
"selected_rows": 33334,
|
| 48 |
+
"unique_source_ids": 30773,
|
| 49 |
+
"duplicate_source_id_rows": 2561,
|
| 50 |
+
"unique_prompt_hashes": 30773,
|
| 51 |
+
"duplicate_prompt_rows": 2561,
|
| 52 |
+
"prompt_characters": {
|
| 53 |
+
"min": 18,
|
| 54 |
+
"median": 168.0,
|
| 55 |
+
"mean": 196.38285234295313,
|
| 56 |
+
"max": 1594
|
| 57 |
+
}
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"domain": "science",
|
| 61 |
+
"dataset": "nvidia/OpenScienceReasoning-2",
|
| 62 |
+
"config": "default",
|
| 63 |
+
"split": "train",
|
| 64 |
+
"prompt_field": "input",
|
| 65 |
+
"id_field": null,
|
| 66 |
+
"source_revision": "174b02c9cdf231f220765b2a1d5ece4550921894",
|
| 67 |
+
"available_parquet_shards": 3,
|
| 68 |
+
"selected_parquet_shards": [
|
| 69 |
+
0,
|
| 70 |
+
1,
|
| 71 |
+
2
|
| 72 |
+
],
|
| 73 |
+
"selected_rows": 33333,
|
| 74 |
+
"unique_source_ids": 33333,
|
| 75 |
+
"duplicate_source_id_rows": 0,
|
| 76 |
+
"unique_prompt_hashes": 33333,
|
| 77 |
+
"duplicate_prompt_rows": 0,
|
| 78 |
+
"prompt_characters": {
|
| 79 |
+
"min": 193,
|
| 80 |
+
"median": 1107,
|
| 81 |
+
"mean": 1154.49920499205,
|
| 82 |
+
"max": 5179
|
| 83 |
+
}
|
| 84 |
+
},
|
| 85 |
+
{
|
| 86 |
+
"domain": "code",
|
| 87 |
+
"dataset": "nvidia/OpenCodeReasoning",
|
| 88 |
+
"config": "split_0",
|
| 89 |
+
"split": "split_0",
|
| 90 |
+
"prompt_field": "input",
|
| 91 |
+
"id_field": "id",
|
| 92 |
+
"source_revision": "20a1ca19c0d050fe9057fc08339d6b370ec1c67a",
|
| 93 |
+
"available_parquet_shards": 9,
|
| 94 |
+
"selected_parquet_shards": [
|
| 95 |
+
6,
|
| 96 |
+
1,
|
| 97 |
+
7,
|
| 98 |
+
3,
|
| 99 |
+
8,
|
| 100 |
+
2,
|
| 101 |
+
0,
|
| 102 |
+
5,
|
| 103 |
+
4
|
| 104 |
+
],
|
| 105 |
+
"selected_rows": 33333,
|
| 106 |
+
"unique_source_ids": 10538,
|
| 107 |
+
"duplicate_source_id_rows": 22795,
|
| 108 |
+
"unique_prompt_hashes": 10538,
|
| 109 |
+
"duplicate_prompt_rows": 22795,
|
| 110 |
+
"prompt_characters": {
|
| 111 |
+
"min": 28,
|
| 112 |
+
"median": 1538,
|
| 113 |
+
"mean": 1665.6388263882639,
|
| 114 |
+
"max": 12973
|
| 115 |
+
}
|
| 116 |
+
}
|
| 117 |
+
]
|
| 118 |
+
}
|
train.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d25881bd6c80e85c7c29fd59f73e074c4d8960b6c9b2eaf110757e52d9e8c3b3
|
| 3 |
+
size 46495188
|