Datasets:
Document dense-max-100m release
Browse files
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 |
-
##
|
| 100 |
|
| 101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
|:--|:--|
|
| 103 |
-
|
|
| 104 |
-
|
|
| 105 |
-
|
|
| 106 |
-
|
|
| 107 |
-
| Online adaptation |
|
| 108 |
-
|
|
|
|
|
|
|
|
| 109 |
|
| 110 |
-
|
| 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 |
-
##
|
| 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 |
|
|
|
|
| 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 |
|