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

Document dense-max-100m release

Browse files
Files changed (1) hide show
  1. README.md +34 -11
README.md CHANGED
@@ -96,18 +96,40 @@ The default configuration includes a ready-to-use text column. dense-100m avoids
96
 
97
  dense_pretrain = dense.map(to_text)
98
 
99
- ## What models practice
100
 
101
- | Capability | Examples |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  |:--|:--|
103
- | Retention and capacity | Delayed recall, bounded buffers, long-lived registers |
104
- | Addressing and editing | Multi-query recall, collisions, overwrite, erase/reuse |
105
- | Selection and interference | Gated writes, scoped memory, proactive and retroactive interference |
106
- | State dynamics | Automata, counters, permutations, monoids, finite groups |
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
 
@@ -121,11 +143,12 @@ default implements 36 explicit behavioral families. dense-100m provides a compac
121
  | family / macro / level | scalar | four-item lists | Curriculum filtering |
122
  | density_units_per_1k_chars | no | yes | Semantic density control |
123
 
124
- ## dense-100m at a glance
125
 
126
  | Episodes | Physical rows | Density | Token estimate | Generator |
127
  |--:|--:|--:|--:|:--|
128
- | 100,000,000 | 25,000,000 | 162.01 units / 1k chars | 107–120B tokens | C++20 + Arrow |
 
129
 
130
  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.
131
 
 
96
 
97
  dense_pretrain = dense.map(to_text)
98
 
99
+ ## Coverage map
100
 
101
+ ### 16 primitive domains
102
+
103
+ | | | | |
104
+ |:--|:--|:--|:--|
105
+ | Retention & lifecycle | Capacity & eviction | Addressing & aliasing | Editing & transactions |
106
+ | Selectivity & access | Interference & concurrency | Automata & control | Algebra & reversibility |
107
+ | Data structures | Graphs & spatial state | Temporal streaming | Online adaptation |
108
+ | Distributed replication | Agents & messaging | Integrity & error control | Runtime state |
109
+
110
+ ### 8 composition domains
111
+
112
+ | | | | |
113
+ |:--|:--|:--|:--|
114
+ | Transactional + temporal | Adaptive + control | Concurrent + distributed | Graph + structures |
115
+ | Robust streaming | Multi-agent state | Algebraic automata | Memory pressure |
116
+
117
+ default implements 36 explicit behavioral families. dense-100m provides a compact shared register VM. dense-max-100m expands the typed VM to 40 opcodes, 256 primitive families, 128 compositions, 32 structural renderers, and 64 semantic-preserving transformations.
118
+
119
+ ## Expected model capabilities
120
+
121
+ | Capability | Training pressure |
122
  |:--|:--|
123
+ | Working-memory utilization | Retain independent values across long active traces |
124
+ | Precise state mutation | Write, overwrite, delete, patch, rollback, and restore without collateral damage |
125
+ | Associative addressability | Resolve exact, hierarchical, indirect, and collision-prone keys |
126
+ | Algorithmic recurrence | Execute counters, automata, permutations, graphs, and bounded data structures |
127
+ | Online adaptation | Bind and remap rules inside context without updating model weights |
128
+ | Interference control | Protect persistent state from noise, churn, concurrent writes, and repeated reads |
129
+ | Transactional and distributed reasoning | Track snapshots, messages, replicas, clocks, and conflict resolution |
130
+ | Streaming stability | Preserve behavior across checkpoints, chunks, retries, and long horizons |
131
 
132
+ 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.
133
 
134
  ## Data contract
135
 
 
143
  | family / macro / level | scalar | four-item lists | Curriculum filtering |
144
  | density_units_per_1k_chars | no | yes | Semantic density control |
145
 
146
+ ## Dense configurations at a glance
147
 
148
  | Episodes | Physical rows | Density | Token estimate | Generator |
149
  |--:|--:|--:|--:|:--|
150
+ | 100,000,000 | 25,000,000 | 162.01 units / 1k chars | 107–120B tokens | dense-100m |
151
+ | 100,000,000 | 25,000,000 | 162.88 units / 1k chars | ~107–120B tokens | dense-max-100m |
152
 
153
  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.
154