aabbdev commited on
Commit
e3ce5ae
·
verified ·
1 Parent(s): 1088853

Document dense-max-100m release

Browse files
Files changed (1) hide show
  1. README.md +19 -9
README.md CHANGED
@@ -26,13 +26,19 @@ configs:
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
 
@@ -44,6 +50,7 @@ Train models to **retain**, **edit**, **address**, and **transform** state acros
44
  |:--|:--|:--|:--|
45
  | **default** | Broad behavioral coverage and varied surfaces | 10,000,000 programs · 7.80 GiB | 36 families across M1–M11 |
46
  | **dense-100m** | High-throughput state-intensive training | 100M episodes · 94.78 GiB | 4 episodes/row · compact shared VM |
 
47
 
48
  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.
49
 
@@ -57,11 +64,14 @@ Both configurations contain structured prompt, completion, and teacher-only priv
57
  dense = load_dataset(
58
  "aabbdev/StateBench-v1", "dense-100m", split="train", streaming=True
59
  )
 
 
 
60
 
61
- | Split | default | dense-100m |
62
- |:--|--:|--:|
63
- | Train | 9,949,600 rows | 24,875,000 rows / 99.5M episodes |
64
- | Validation | 50,400 rows | 125,000 rows / 0.5M episodes |
65
 
66
  ## Train three ways
67
 
@@ -97,11 +107,11 @@ The default configuration includes a ready-to-use text column. dense-100m avoids
97
  | Online adaptation | One-shot binding, remapping, rule switching |
98
  | Long execution stability | Active recurrence, checkpoints, read and generation pollution |
99
 
100
- default implements 36 explicit behavioral families. dense-100m maps the same curriculum labels onto a compact shared register VM for maximum state-transition density; it is a dense training curriculum, not a byte-for-byte replica of default prompts.
101
 
102
  ## Data contract
103
 
104
- | Field | default | dense-100m | Purpose |
105
  |:--|:--:|:--:|:--|
106
  | prompt | yes | yes | Student-visible conversational input |
107
  | completion | yes | yes | Verified SFT target |
@@ -121,10 +131,10 @@ The token range was measured on 1,000 real packed rows with GPT-2 and Qwen3 toke
121
 
122
  ## Integrity
123
 
124
- - 110M semantic identities are unique across their respective releases.
125
  - Required fields, roles, answer JSON, and SDFT isolation passed full-corpus audits.
126
  - No benchmark name, family label, or privileged answer appears in model-visible prompts.
127
  - SHA-256 checksums cover every Parquet shard.
128
  - The public training corpus is separate from private StateBench evaluation material.
129
 
130
- Release manifests: dataset_manifest.json for default and dense-100m-manifest.json for dense-100m.
 
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
  ---
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
 
 
50
  |:--|:--|:--|:--|
51
  | **default** | Broad behavioral coverage and varied surfaces | 10,000,000 programs · 7.80 GiB | 36 families across M1–M11 |
52
  | **dense-100m** | High-throughput state-intensive training | 100M episodes · 94.78 GiB | 4 episodes/row · compact shared VM |
53
+ | **dense-max-100m** | Maximum semantic and surface diversity | 100M episodes · 93.45 GiB | 384 families · 32 renderers · 64 transformations |
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
 
 
64
  dense = load_dataset(
65
  "aabbdev/StateBench-v1", "dense-100m", split="train", streaming=True
66
  )
67
+ dense_max = load_dataset(
68
+ "aabbdev/StateBench-v1", "dense-max-100m", split="train", streaming=True
69
+ )
70
 
71
+ | Split | default | dense-100m | dense-max-100m |
72
+ |:--|--:|--:|--:|
73
+ | Train | 9,949,600 rows | 24,875,000 / 99.5M episodes | 24,875,000 / 99.5M episodes |
74
+ | Validation | 50,400 rows | 125,000 / 0.5M episodes | 125,000 / 0.5M episodes |
75
 
76
  ## Train three ways
77
 
 
107
  | Online adaptation | One-shot binding, remapping, rule switching |
108
  | Long execution stability | Active recurrence, checkpoints, read and generation pollution |
109
 
110
+ default implements 36 explicit behavioral families. dense-100m provides a compact shared register VM. dense-max-100m expands the typed VM to 40 opcodes, 384 compiled mechanisms, 32 structural renderers, and 64 semantic-preserving transformations.
111
 
112
  ## Data contract
113
 
114
+ | Field | default | dense configs | Purpose |
115
  |:--|:--:|:--:|:--|
116
  | prompt | yes | yes | Student-visible conversational input |
117
  | completion | yes | yes | Verified SFT target |
 
131
 
132
  ## Integrity
133
 
134
+ - 210M semantic identities are unique across their respective releases.
135
  - Required fields, roles, answer JSON, and SDFT isolation passed full-corpus audits.
136
  - No benchmark name, family label, or privileged answer appears in model-visible prompts.
137
  - SHA-256 checksums cover every Parquet shard.
138
  - The public training corpus is separate from private StateBench evaluation material.
139
 
140
+ Release manifests: dataset_manifest.json, dense-100m-manifest.json, and dense-max-100m-manifest.json.