aabbdev commited on
Commit
120b64a
·
verified ·
1 Parent(s): f99301c

Document grounded-max-100m release

Browse files
Files changed (1) hide show
  1. README.md +20 -6
README.md CHANGED
@@ -32,13 +32,19 @@ configs:
32
  path: "data/dense-max-100m/train/*"
33
  - split: validation
34
  path: "data/dense-max-100m/validation/*"
 
 
 
 
 
 
35
  ---
36
 
37
  <div align="center">
38
 
39
  # StateBench v1
40
 
41
- ### 210 million verified state episodes for pretraining, SFT, and on-policy SDFT
42
 
43
  Train models to **retain**, **edit**, **address**, and **transform** state across long execution traces.
44
 
@@ -51,8 +57,9 @@ Train models to **retain**, **edit**, **address**, and **transform** state acros
51
  | **default** | 10,000,000 programs · 7.80 GiB | You need 36 explicit families and varied surfaces |
52
  | **dense-100m** | 100M episodes · 94.78 GiB | You need high-throughput training on a compact shared VM |
53
  | **dense-max-100m** | 100M episodes · 93.45 GiB | You need maximum-density stress training on the compact register VM |
 
54
 
55
- Both configurations contain structured prompt, completion, and teacher-only privileged context. Every target is computed by an executable reference machine, never authored by a teacher model.
56
 
57
  ## Load
58
 
@@ -67,12 +74,16 @@ Both configurations contain structured prompt, completion, and teacher-only priv
67
  dense_max = load_dataset(
68
  "aabbdev/StateBench-v1", "dense-max-100m", split="train", streaming=True
69
  )
 
 
 
70
 
71
  | Configuration | Train | Validation |
72
  |:--|--:|--:|
73
  | default | 9,949,600 rows | 50,400 rows |
74
  | dense-100m | 24,875,000 rows | 125,000 rows |
75
  | dense-max-100m | 24,875,000 rows | 125,000 rows |
 
76
 
77
  ## Train three ways
78
 
@@ -88,7 +99,7 @@ privileged_context is visible only to the teacher. Never concatenate it into the
88
 
89
  ### Causal pretraining
90
 
91
- The default configuration includes a ready-to-use text column. dense-100m avoids storing a duplicate ~95 GiB text view; derive it while streaming:
92
 
93
  def to_text(row):
94
  prompt = row["prompt"][0]["content"]
@@ -115,7 +126,9 @@ The default configuration includes a ready-to-use text column. dense-100m avoids
115
  | State systems | Transactional + temporal · Adaptive + control · Concurrent + distributed · Graph + structures |
116
  | Stress systems | Robust streaming · Multi-agent state · Algebraic automata · Memory pressure |
117
 
118
- default implements 36 explicit behavioral families. dense-100m and dense-max-100m are compact register-VM curricula. dense-max-100m balances 384 curriculum labels and a pairwise schedule of 32 renderer IDs and 64 transformation IDs; those IDs describe coverage scheduling, while its published prompt surface remains intentionally VM-centric. The separately qualified 40-opcode/384-mechanism compiler is the foundation for the forthcoming grounded configuration.
 
 
119
 
120
  ## Expected model capabilities
121
 
@@ -150,15 +163,16 @@ StateBench trains state handling, not factual knowledge. It does not by itself e
150
  |:--|--:|--:|
151
  | dense-100m | 162.01 units / 1k chars | 107–120B tokens |
152
  | dense-max-100m | 162.88 units / 1k chars | ~107–120B tokens |
 
153
 
154
  The token range was measured on 1,000 real packed rows with GPT-2 and Qwen3 tokenizers. Actual training cost depends on chat templates, truncation, packing, and the SDFT generation policy.
155
 
156
  ## Integrity
157
 
158
- - 210M semantic identities are unique across their respective releases.
159
  - Required fields, roles, answer JSON, and SDFT isolation passed full-corpus audits.
160
  - No benchmark name, family label, or privileged answer appears in model-visible prompts.
161
  - SHA-256 checksums cover every Parquet shard.
162
  - The public training corpus is separate from private StateBench evaluation material.
163
 
164
- Release manifests: dataset_manifest.json, dense-100m-manifest.json, and dense-max-100m-manifest.json.
 
32
  path: "data/dense-max-100m/train/*"
33
  - split: validation
34
  path: "data/dense-max-100m/validation/*"
35
+ - config_name: grounded-max-100m
36
+ data_files:
37
+ - split: train
38
+ path: "data/grounded-max-100m/train/*"
39
+ - split: validation
40
+ path: "data/grounded-max-100m/validation/*"
41
  ---
42
 
43
  <div align="center">
44
 
45
  # StateBench v1
46
 
47
+ ### 310 million verified state episodes for pretraining, SFT, and on-policy SDFT
48
 
49
  Train models to **retain**, **edit**, **address**, and **transform** state across long execution traces.
50
 
 
57
  | **default** | 10,000,000 programs · 7.80 GiB | You need 36 explicit families and varied surfaces |
58
  | **dense-100m** | 100M episodes · 94.78 GiB | You need high-throughput training on a compact shared VM |
59
  | **dense-max-100m** | 100M episodes · 93.45 GiB | You need maximum-density stress training on the compact register VM |
60
+ | **grounded-max-100m** | 100M episodes · 96.57 GiB | You want the dense-max oracles in domain-grounded, structurally varied prompts |
61
 
62
+ All configurations contain structured prompt, completion, and teacher-only privileged context. Every target is computed by an executable reference machine, never authored by a teacher model.
63
 
64
  ## Load
65
 
 
74
  dense_max = load_dataset(
75
  "aabbdev/StateBench-v1", "dense-max-100m", split="train", streaming=True
76
  )
77
+ grounded = load_dataset(
78
+ "aabbdev/StateBench-v1", "grounded-max-100m", split="train", streaming=True
79
+ )
80
 
81
  | Configuration | Train | Validation |
82
  |:--|--:|--:|
83
  | default | 9,949,600 rows | 50,400 rows |
84
  | dense-100m | 24,875,000 rows | 125,000 rows |
85
  | dense-max-100m | 24,875,000 rows | 125,000 rows |
86
+ | grounded-max-100m | 24,875,000 rows | 125,000 rows |
87
 
88
  ## Train three ways
89
 
 
99
 
100
  ### Causal pretraining
101
 
102
+ The default configuration includes a ready-to-use text column. Dense configurations avoid storing a duplicate text view; derive it while streaming:
103
 
104
  def to_text(row):
105
  prompt = row["prompt"][0]["content"]
 
126
  | State systems | Transactional + temporal · Adaptive + control · Concurrent + distributed · Graph + structures |
127
  | Stress systems | Robust streaming · Multi-agent state · Algebraic automata · Memory pressure |
128
 
129
+ default implements 36 explicit behavioral families. dense-100m and dense-max-100m are compact register-VM curricula. dense-max-100m balances 384 curriculum labels and a pairwise schedule of 32 renderer IDs and 64 transformation IDs; those IDs describe coverage scheduling, while its published prompt surface remains intentionally VM-centric.
130
+
131
+ grounded-max-100m rematerializes the same verified dense-max trajectories through 24 domain dialects: the 16 primitive domains and 8 compositions above. Its 32 document structures and 64 metamorphic surface passes are physically present in the prompts, including data formats, code-like records, logs, traces, conversations, and nested documents. This configuration targets surface transfer while preserving the exact audited answers; it remains synthetic state training, not a factual natural-language corpus.
132
 
133
  ## Expected model capabilities
134
 
 
163
  |:--|--:|--:|
164
  | dense-100m | 162.01 units / 1k chars | 107–120B tokens |
165
  | dense-max-100m | 162.88 units / 1k chars | ~107–120B tokens |
166
+ | grounded-max-100m | 160.61 units / 1k chars | ~107–120B tokens |
167
 
168
  The token range was measured on 1,000 real packed rows with GPT-2 and Qwen3 tokenizers. Actual training cost depends on chat templates, truncation, packing, and the SDFT generation policy.
169
 
170
  ## Integrity
171
 
172
+ - 310M semantic identities are unique within their respective configurations.
173
  - Required fields, roles, answer JSON, and SDFT isolation passed full-corpus audits.
174
  - No benchmark name, family label, or privileged answer appears in model-visible prompts.
175
  - SHA-256 checksums cover every Parquet shard.
176
  - The public training corpus is separate from private StateBench evaluation material.
177
 
178
+ Release manifests: dataset_manifest.json, dense-100m-manifest.json, dense-max-100m-manifest.json, and grounded-max-100m-manifest.json.