neelsomani commited on
Commit
014d6a1
·
verified ·
1 Parent(s): b8e0c95

Publish AutomataBench public dataset v1

Browse files
README.md ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "AutomataBench"
3
+ language:
4
+ - en
5
+ license: cc-by-4.0
6
+ size_categories:
7
+ - n<1K
8
+ task_categories:
9
+ - question-answering
10
+ tags:
11
+ - benchmark
12
+ - reasoning
13
+ - cellular-automata
14
+ - reversible-computing
15
+ - constraint-satisfaction
16
+ - trace-completion
17
+ - json
18
+ configs:
19
+ - config_name: default
20
+ default: true
21
+ data_files:
22
+ - split: public_dev
23
+ path: data/public_dev.jsonl
24
+ - split: public_eval
25
+ path: data/public_eval.jsonl
26
+ - split: sample
27
+ path: data/sample.jsonl
28
+ ---
29
+
30
+ # AutomataBench
31
+
32
+ AutomataBench evaluates whether a model can reconstruct the initial state of a
33
+ reversible cellular automaton from revealed cells in its space-time evolution.
34
+
35
+ This Hugging Face dataset card is structured like a benchmark dataset repo. It
36
+ uses Hub metadata front matter and an explicit `configs` block so the data can be
37
+ loaded with `datasets.load_dataset`.
38
+
39
+ ```python
40
+ from datasets import load_dataset
41
+
42
+ ds = load_dataset("AutomataBench/automata-bench", split="sample")
43
+ print(ds[0].keys())
44
+ ```
45
+
46
+ For local development before upload:
47
+
48
+ ```python
49
+ from datasets import load_dataset
50
+
51
+ ds = load_dataset("hf_dataset", split="sample")
52
+ ```
53
+
54
+ Install the optional loader first if needed:
55
+
56
+ ```bash
57
+ python3 -m pip install datasets
58
+ ```
59
+
60
+ ## Fields
61
+
62
+ - `id`: stable row identifier.
63
+ - `split`: `sample`, `public_dev`, or `public_eval`.
64
+ - `difficulty`: `easy`, `medium`, or `hard`.
65
+ - `task`: currently `initial_state_recovery`.
66
+ - `grid`: `width`, `height`, and `boundary`.
67
+ - `time_horizon`: number of reversible automaton steps.
68
+ - `rule`: reversible 2x2 Margolus block rule, including binary alphabet,
69
+ bit order, partition type, and 16-entry permutation.
70
+ - `observations`: revealed cells as `(t, x, y, value)` records.
71
+ - `answer`: reference answer with `initial_state`.
72
+ - `metadata`: full generator metadata.
73
+
74
+ ## Task
75
+
76
+ Return only JSON:
77
+
78
+ ```json
79
+ {"initial_state": [[0, 1], [1, 0]]}
80
+ ```
81
+
82
+ with the actual instance dimensions. The answer is correct when simulating the
83
+ provided reversible block cellular automaton from the returned initial state
84
+ matches every observation.
85
+
86
+ ## Evaluation
87
+
88
+ Public splits include gold answers for local scoring. Do not include `answer` in
89
+ model prompts. Scores on these public splits are useful for debugging,
90
+ reproducibility, and public comparison, but they are not trusted official
91
+ leaderboard scores because the answers are public. Official leaderboard scores
92
+ use a separate non-public evaluation set.
93
+
94
+ The public verifier lives in the GitHub repo:
95
+
96
+ ```bash
97
+ cd public_repo
98
+ automata-bench-verify path/to/public_split.jsonl
99
+ ```
100
+
101
+ ## Dataset Creation
102
+
103
+ Each accepted sample was generated by:
104
+
105
+ 1. sampling a reversible binary 2x2 Margolus block rule;
106
+ 2. rejecting degenerate rules;
107
+ 3. simulating a random initial state;
108
+ 4. revealing cells from the simulated trace;
109
+ 5. using a PySAT-backed SAT encoding to prove uniqueness by solving once,
110
+ blocking the recovered initial state, and proving the blocked formula UNSAT;
111
+ 6. rejecting instances solved by propagation alone or below the branch-count
112
+ threshold.
113
+
114
+ All public instances have certified unique solutions. The SAT check finds the
115
+ reference initial state, blocks that state, and proves the blocked formula UNSAT
116
+ with Glucose4. Rows expose this as `metadata.unique_solution = true`.
117
+
118
+ This is a static public snapshot. The held-out private evaluation set used for
119
+ the initial organizer-run leaderboard is not included here and was checked on
120
+ 2026-06-24 to have zero `rule_id` overlap with `sample`, `public_dev`, and
121
+ `public_eval`. The `public_dev` and `public_eval` splits were also checked to
122
+ have zero exact-instance overlap and zero `rule_id` overlap.
123
+
124
+ ## Intended Use
125
+
126
+ This dataset is intended for evaluation and benchmark development.
127
+
128
+ ## License
129
+
130
+ The public AutomataBench dataset files and documentation are licensed under the
131
+ Creative Commons Attribution 4.0 International License.
132
+
133
+ The AutomataBench name, logo, website, official leaderboard, and non-public
134
+ evaluation or data assets are not licensed under this public dataset license.
135
+
136
+ For larger datasets, custom-generated evaluation suites, or commercial
137
+ licensing, contact: data@automatabench.com.
138
+
139
+ ## Available Splits
140
+
141
+ - `public_dev`: 300 rows, 100 easy, 100 medium, 100 hard.
142
+ - `public_eval`: 300 rows, 75 easy, 100 medium, 125 hard.
143
+ - `sample`: 60 rows, 20 easy, 20 medium, 20 hard.
144
+
145
+ Observation density varies by difficulty in public v1: easy rows range from
146
+ 0.35 to 0.45, medium rows from 0.234375 to 0.25, and hard rows from 0.1875 to
147
+ 0.21875. Overall public v1 density ranges from 0.1875 to 0.45.
148
+
149
+ All public splits include answers. `sample` is a balanced quick-inspection
150
+ excerpt from public data. Official leaderboard scoring uses a separate
151
+ non-public evaluation set, not these public splits.
data/public_dev.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/public_eval.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/sample.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
metadata.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "format_version": "srstc-v1",
3
+ "name": "AutomataBench",
4
+ "repo_id": "AutomataBench/automata-bench",
5
+ "row_schema": {
6
+ "answer": "reference object containing row-string initial_state",
7
+ "difficulty": "easy, medium, or hard",
8
+ "id": "stable row identifier",
9
+ "metadata": "generation and uniqueness-check metadata",
10
+ "split": "sample, public_dev, or public_eval"
11
+ },
12
+ "short_name": "AutomataBench",
13
+ "splits": [
14
+ {
15
+ "answers": "included",
16
+ "name": "public_dev",
17
+ "num_rows": 300,
18
+ "path": "data/public_dev.jsonl"
19
+ },
20
+ {
21
+ "answers": "included",
22
+ "name": "public_eval",
23
+ "num_rows": 300,
24
+ "path": "data/public_eval.jsonl"
25
+ },
26
+ {
27
+ "answers": "included",
28
+ "name": "sample",
29
+ "num_rows": 60,
30
+ "path": "data/sample.jsonl"
31
+ }
32
+ ]
33
+ }