File size: 4,382 Bytes
9981ad1
4e16173
 
 
 
 
 
 
9981ad1
 
f26f950
 
9981ad1
f26f950
9981ad1
f26f950
9981ad1
f26f950
9981ad1
 
7562f89
f26f950
015aad6
3d8ca70
b6377ce
 
 
4e16173
b6377ce
 
9981ad1
55b708f
b1607a2
 
 
6e1c5b2
b1607a2
 
 
 
 
 
60964f8
4e16173
60964f8
4e16173
b3448a7
b1607a2
 
6e1c5b2
 
 
b3448a7
4e16173
 
b3448a7
4e16173
 
f2ec3b4
4e16173
f2ec3b4
6e1c5b2
774b51e
4e16173
 
 
 
 
 
 
7997e09
774b51e
7997e09
 
6e1c5b2
 
 
7997e09
6e1c5b2
7997e09
 
 
6e1c5b2
 
 
 
 
 
 
 
4e16173
fe0e700
b3448a7
fe0e700
4e16173
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
---
pretty_name: Procedural Pile
license: cc-by-4.0
task_categories:
- text-generation
- question-answering
language:
- en
dataset_info:
  features:
  - name: task
    dtype: large_string
  - name: prompt
    dtype: large_string
  - name: answer
    dtype: large_string
  - name: metadata
    dtype: large_string
  - name: level
    dtype: int64
  - name: mode
    dtype: large_string
tags:
- reasoning
- procedural
- synthetic
- pretraining
- formal
size_categories:
- 10M<n<100M
---

<p align="center">
  <img src="https://imgshare.cc/api/image/proxy?id=443lb70v" alt="Procedural Pile: verifiable procedural data optimized for transferability" width="100%">
</p>

<p align="center">
  <a href="https://github.com/sileod/reasoning_core/blob/main/GALLERY.md">Task gallery</a> ·
  <a href="https://github.com/sileod/reasoning_core">Source</a> ·
  <a href="https://huggingface.co/papers/2509.18083">Paper</a> ·
  <a href="https://huggingface.co/datasets/reasoning-core/rc1">RLVR dataset</a>
</p>

Procedural Pile is a synthetic corpus of verifiable reasoning problems generated by [Reasoning Core](https://github.com/sileod/reasoning_core). It is intended for continued pretraining, mid-training, and supervised fine-tuning.

Answers come from procedural generators and task-specific solvers or checkers, rather than language-model generation. The corpus spans mathematics, formal logic, planning, graphs, parsing, code, structured data, and other symbolic domains. Difficulty is controlled continuously within each task.

Reasoning Core is optimized for transferability: task selection and difficulty ranges are guided by reproducible measurements of transfer, solvability, and shortcut resistance.

---

## Load

```python
from datasets import load_dataset

dataset = load_dataset("reasoning-core/procedural-pile")
```

No configuration name is required. The dataset provides `train` and `test` splits.

## Dataset structure

| Field | Description |
|---|---|
| `task` | Reasoning task identifier |
| `prompt` | Model input |
| `answer` | Canonical target answer |
| `metadata` | JSON-encoded generation and validation metadata |
| `level` | Difficulty level |
| `mode` | `instruct`, `few_shot`, or `verification` |

Most examples use direct instruction format. A smaller share adds one in-context demonstration or asks the model to verify a candidate answer.

---

## Task catalogue

The corpus currently contains 50 task families. The [task gallery](https://github.com/sileod/reasoning_core/blob/main/GALLERY.md) includes a worked example for each one.

| Area | Tasks |
|---|---|
| **Mathematics & formal methods** · 10 | `arithmetics` · `math_word_problem` · `equation_system` · `combinatorics_formula_selection` · `planar_geometry_relations` · `lean_candidate_compilation` · `lean_missing_line` · `metamath_core_select` · `metamath_entailment` · `sequential_induction` |
| **Logic & inference** · 10 | `logic_formalization` · `logic_nli` · `logic_qa` · `defeasible_nli` · `multistep_nli` · `multistep_abduction` · `multistep_evidence_retrieval` · `qualitative_reasoning` · `qualitative_causal_reasoning` · `belief_tracking` |
| **Symbolic transformations** · 7 | `lambda_reduction` · `rewrite_system` · `unification_entailment` · `set_expression` · `set_missing_element` · `string_transduction` · `analogical_case_matching` |
| **Planning, state & graphs** · 7 | `planning` · `constraint_satisfaction` · `grid_navigation` · `reference_tracking` · `coreference` · `graph_pathfinding` · `graph_successors` |
| **Language & formal languages** · 5 | `parsing_derivation` · `regex_following` · `regex_reasoning` · `constrained_continuation` · `syntax_error_detection` |
| **Structured data & code** · 7 | `table_qa` · `table_equivalence` · `table_statistics` · `code_analysis` · `code_execution` · `code_runnability` · `program_synthesis` |
| **Games & probability** · 4 | `game_best_move` · `game_forced_win` · `most_probable_evidence` · `most_probable_outcome` |

## Citation

```bibtex
@article{reasoningcore2026,
  title   = {Reasoning Core: A Scalable Procedural Data Generation Suite for Symbolic Pre-training and Post-Training},
  author  = {Lacombe, Valentin and Quesnel, Valentin and Sileo, Damien},
  journal = {arXiv preprint arXiv:2603.02208},
  year    = {2026},
  url     = {https://arxiv.org/abs/2603.02208}
}
```