aabbdev commited on
Commit
d23cb5c
·
verified ·
1 Parent(s): dc76895

Document consolidated corrected dense-100m

Browse files
Files changed (1) hide show
  1. README.md +12 -36
README.md CHANGED
@@ -26,25 +26,13 @@ configs:
26
  path: "data/dense-100m/train/*"
27
  - split: validation
28
  path: "data/dense-100m/validation/*"
29
- - config_name: dense-max-100m
30
- data_files:
31
- - split: train
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
 
@@ -55,9 +43,7 @@ Train models to **retain**, **edit**, **address**, and **transform** state acros
55
  | Configuration | Scale | Use when |
56
  |:--|:--|:--|
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
 
@@ -71,19 +57,11 @@ All configurations contain structured prompt, completion, and teacher-only privi
71
  dense = load_dataset(
72
  "aabbdev/StateBench-v1", "dense-100m", split="train", streaming=True
73
  )
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
 
@@ -126,22 +104,22 @@ The default configuration includes a ready-to-use text column. Dense configurati
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
 
135
  | Capability | Training pressure |
136
  |:--|:--|
137
  | Working-memory utilization | Retain independent values across long active traces |
138
- | Precise state mutation | Write, overwrite, delete, patch, rollback, and restore without collateral damage |
139
  | Associative addressability | Resolve exact, hierarchical, indirect, and collision-prone keys |
140
- | Algorithmic recurrence | Execute counters, automata, permutations, graphs, and bounded data structures |
141
- | Online adaptation | Bind and remap rules inside context without updating model weights |
142
  | Interference control | Protect persistent state from noise, churn, concurrent writes, and repeated reads |
143
- | Transactional and distributed reasoning | Track snapshots, messages, replicas, clocks, and conflict resolution |
144
- | Streaming stability | Preserve behavior across checkpoints, chunks, retries, and long horizons |
145
 
146
  StateBench trains state handling, not factual knowledge. It does not by itself expand a model's physical context window, add world knowledge, or guarantee general reasoning improvements outside state-intensive tasks.
147
 
@@ -161,18 +139,16 @@ StateBench trains state handling, not factual knowledge. It does not by itself e
161
 
162
  | Configuration | Density | Token estimate |
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.
 
26
  path: "data/dense-100m/train/*"
27
  - split: validation
28
  path: "data/dense-100m/validation/*"
 
 
 
 
 
 
 
 
 
 
 
 
29
  ---
30
 
31
  <div align="center">
32
 
33
  # StateBench v1
34
 
35
+ ### 110 million verified state episodes for pretraining, SFT, and on-policy SDFT
36
 
37
  Train models to **retain**, **edit**, **address**, and **transform** state across long execution traces.
38
 
 
43
  | Configuration | Scale | Use when |
44
  |:--|:--|:--|
45
  | **default** | 10,000,000 programs · 7.80 GiB | You need 36 explicit families and varied surfaces |
46
+ | **dense-100m** | 100M episodes · 96.60 GiB | You need high-throughput state training with grounded, structurally varied prompts |
 
 
47
 
48
  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.
49
 
 
57
  dense = load_dataset(
58
  "aabbdev/StateBench-v1", "dense-100m", split="train", streaming=True
59
  )
 
 
 
 
 
 
60
 
61
  | Configuration | Train | Validation |
62
  |:--|--:|--:|
63
  | default | 9,949,600 rows | 50,400 rows |
64
  | dense-100m | 24,875,000 rows | 125,000 rows |
 
 
65
 
66
  ## Train three ways
67
 
 
104
  | State systems | Transactional + temporal · Adaptive + control · Concurrent + distributed · Graph + structures |
105
  | Stress systems | Robust streaming · Multi-agent state · Algebraic automata · Memory pressure |
106
 
107
+ default implements 36 explicit behavioral families. The corrected dense-100m configuration rematerializes 100M verified 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.
108
 
109
+ The dense semantic kernel trains long-horizon set, remove, additive, multiplicative, observation, and no-op transitions. Domain dialects diversify how those transitions are presented; they do not turn each label into a full simulator of that real-world system. StateBench remains synthetic state training, not a factual natural-language corpus.
110
 
111
  ## Expected model capabilities
112
 
113
  | Capability | Training pressure |
114
  |:--|:--|
115
  | Working-memory utilization | Retain independent values across long active traces |
116
+ | Precise state mutation | Write, overwrite, delete, add, and scale without collateral damage |
117
  | Associative addressability | Resolve exact, hierarchical, indirect, and collision-prone keys |
118
+ | Algorithmic recurrence | Execute compact transition sequences over long horizons |
119
+ | In-context rule use | Apply a supplied transition legend without updating model weights |
120
  | Interference control | Protect persistent state from noise, churn, concurrent writes, and repeated reads |
121
+ | Surface robustness | Preserve semantics across structured documents, logs, code-like records, and conversations |
122
+ | Streaming stability | Preserve behavior across long traces and packed independent episodes |
123
 
124
  StateBench trains state handling, not factual knowledge. It does not by itself expand a model's physical context window, add world knowledge, or guarantee general reasoning improvements outside state-intensive tasks.
125
 
 
139
 
140
  | Configuration | Density | Token estimate |
141
  |:--|--:|--:|
142
+ | dense-100m | 160.09 units / 1k chars | ~107–120B tokens |
 
 
143
 
144
  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.
145
 
146
  ## Integrity
147
 
148
+ - 110M semantic identities are unique within their respective configurations.
149
  - Required fields, roles, answer JSON, and SDFT isolation passed full-corpus audits.
150
  - No benchmark name, family label, or privileged answer appears in model-visible prompts.
151
  - SHA-256 checksums cover every Parquet shard.
152
  - The public training corpus is separate from private StateBench evaluation material.
153
 
154
+ Release manifests: dataset_manifest.json and dense-100m-manifest.json.