tostido commited on
Commit
7036e0d
ยท
1 Parent(s): 0306611

Add data configs with LFS for large files

Browse files
.gitattributes CHANGED
@@ -62,3 +62,4 @@ models/champion_gen1000.py filter=lfs diff=lfs merge=lfs -text
62
  models/champion_gen42.py filter=lfs diff=lfs merge=lfs -text
63
  models/champion_gen52.py filter=lfs diff=lfs merge=lfs -text
64
  models/*.py filter=lfs diff=lfs merge=lfs -text
 
 
62
  models/champion_gen42.py filter=lfs diff=lfs merge=lfs -text
63
  models/champion_gen52.py filter=lfs diff=lfs merge=lfs -text
64
  models/*.py filter=lfs diff=lfs merge=lfs -text
65
+ data/comm_events/train.jsonl filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,602 +1,213 @@
1
  ---
2
- pretty_name: Ouroboros-Key Dataset
3
  license: mit
4
  tags:
5
- - quine
6
  - neuroevolution
 
 
7
  - provenance
8
- - rl
9
  - world-model
10
  language:
11
  - en
12
  ---
13
 
14
- # ๐Ÿ”‘ Ouroboros-Key Dataset
15
 
16
- This repository contains the **Ouroboros-Key dataset**, generated by the KEY production system that **converts existing models** (e.g., `.pt`, `.onnx`, and other compute-oriented formats) into **quine-replicant capable models**, then evolves and verifies their replication behavior. World-model backends (DreamerV3/RSSM) are optional; the dataset reflects the conversion + evolution pipeline across arbitrary architectures.
17
 
18
- ---
19
-
20
- # ๐Ÿ“ฆ Dataset Card
21
-
22
- ## Dataset Viewer Status
23
-
24
- Hugging Faceโ€™s dataset viewer canโ€™t load this dataset because **splits use different file formats**. This repo intentionally contains multiple JSONL streams with distinct schemas. Use direct file download or load specific files programmatically instead of relying on the viewer.
25
-
26
- This repository contains a dataset generated by the **Ouroboros-Key** production neural network (a.k.a. the KEY system described below). The dataset captures structured traces of evolution, inference, and provenance events emitted during runs of the system.
27
-
28
- ## Dataset Summary
29
-
30
- - **Name**: Ouroboros-Key Dataset
31
- - **Source System**: Ouroboros-Key (production KEY quine-conversion + evolution system)
32
- - **Domain**: Quine conversion, evolution telemetry, inference traces, and provenance metadata
33
- - **Format**: Line-delimited JSON (JSONL)
34
- - **Primary Files**: `*.jsonl` logs in this repo (see file list below)
35
-
36
- ## Supported Tasks
37
-
38
- - Evolution analytics
39
- - Provenance auditing
40
- - System telemetry analysis
41
- - Log-based debugging and visualization
42
-
43
- ## Languages
44
-
45
- - English (metadata fields, comments, and annotations)
46
-
47
- ## Source / Reference
48
-
49
- This dataset is **populated by the production Ouroboros-Key system**. The README content below describes the system architecture and behavior that produce these logs.
50
-
51
- If you need a code reference, the producing system is the KEY stack in:
52
-
53
- - `children/` (local project root)
54
- - `children/cascade_hyperlattice/` (DreamerV3 + provenance stack)
55
- - `key/` (core conversion + evolution engine)
56
-
57
- ## What the Dataset Contains
58
-
59
- Each JSONL file captures a specific stream of events or metrics emitted by the system. Typical record types include:
60
-
61
- - Evolution events (e.g., generations, mutations, selections)
62
- - Fitness evaluations and performance metrics
63
- - Speciation and population dynamics
64
- - TUI/diagnostic events
65
- - Provenance/trace metadata emitted by CASCADE-LATTICE
66
-
67
- ## File Index (Exported Logs)
68
-
69
- - `evolution_events.jsonl` โ€” event bus stream (state changes, pressure, convergence, mutations)
70
- - `fitness.jsonl` โ€” fitness evaluations and scores
71
- - `mutations.jsonl` โ€” mutation operations and deltas
72
- - `selection.jsonl` โ€” selection steps and tournament outcomes
73
- - `speciation.jsonl` โ€” clustering/species assignments
74
- - `performance.jsonl` โ€” runtime performance telemetry
75
- - `errors.jsonl` โ€” system errors and warnings
76
- - `tui_events.jsonl` โ€” UI and operator interaction events
77
- - `crossovers.jsonl` โ€” crossover operations and metadata
78
-
79
- ## Schema (Authoritative)
80
-
81
- The **authoritative schemas** are defined in the KEY data contracts (`DATA_CONTRACTS.md`) inside the **Ouroboros-Key** source repo.
82
-
83
- > ๐Ÿ” **Ouroboros-Key is a private neural network.**
84
- > Get full source access and learn to convert your own models into self-replicating quines.
85
- >
86
- > | Tier | Price | What you get |
87
- > |------|-------|------|
88
- > | **๐Ÿ”‘ Source Access** | $100 one-time | Private repo invite, full codebase |
89
- > | **๐Ÿค Hands-On Conversion** | $500 one-time | I do one model conversion with you + support |
90
- > | **๐ŸŽค Speaking Engagement** | $2,000 one-time | Talk at your company/conference, includes source access |
91
- >
92
- > **[Sponsor on GitHub โ†’](https://github.com/sponsors/Yufok1)**
93
- >
94
- > ๐ŸŽฎ **[Try the demo](https://huggingface.co/spaces/tostido/Ouroboros)** โ€” no purchase required
95
-
96
- Below is a concise summary of the primary log schemas represented in this dataset export.
97
-
98
- Each row is a JSON object. Common fields include (not all files include all fields):
99
-
100
- ### Mutations (`mutations.jsonl`)
101
- - `timestamp` (epoch), `iso_time` โ€” event time
102
- - `event` = `mutation`
103
- - `generation`, `parent_id`, `child_id`
104
- - `parent_fitness`, `mutation_rate`
105
- - `parent_traits`, `child_traits`, `deltas`, `mutated_traits`
106
-
107
- ### Crossovers (`crossovers.jsonl`)
108
- - `timestamp`, `iso_time`, `event` = `crossover`
109
- - `generation`, `parent1_id`, `parent2_id`, `child_id`
110
- - `parent*_fitness`, `parent*_traits`, `child_traits`
111
- - `inheritance`, `contribution_p1`, `contribution_p2`
112
-
113
- ### Selection (`selection.jsonl`)
114
- - `timestamp`, `iso_time`, `event` = `selection`
115
- - `generation`, `method`
116
- - `survivors`, `eliminated`, `elites_preserved`
117
- - `survivor_fitnesses`, `eliminated_fitnesses`
118
-
119
- ### Speciation (`speciation.jsonl`)
120
- - `timestamp`, `iso_time`
121
- - `event` = `species_created|species_extinct|species_snapshot`
122
- - `generation`, `species_id`, `founder_id`, `initial_size`
123
- - `species_snapshot[]` (size/fitness/age/stagnation)
124
-
125
- ### Fitness (`fitness.jsonl`)
126
- - `timestamp`, `iso_time`, `event` = `fitness_evaluation`
127
- - `generation`, `node_id`, `fitness_function`, `raw_fitness`
128
- - `components{...}`, `weights{...}`, `eval_time_ms`
129
-
130
- ### Evolution Events (`evolution_events.jsonl`)
131
- - `event_id`, `event_type` (e.g., `state_change|pressure|convergence|vlm_inference|lora_mutation`)
132
- - `data{...}`, `timestamp`, `source`
133
-
134
- ### TUI Events (`tui_events.jsonl`)
135
- - TUI-originated events (full schema in `DATA_CONTRACTS.md` โ€” [get access](#schema-authoritative))
136
-
137
- ### Performance / Errors (`performance.jsonl`, `errors.jsonl`)
138
- - Runtime and error telemetry emitted by the worker/TUI pipeline
139
-
140
- ## How Itโ€™s Produced
141
-
142
- The Ouroboros-Key system logs structured JSONL events via its internal event bus and logging system (see `logger.py` and `bus.py` in the KEY stack). In production, logs are written under `data/logs/` and exported into this repository as a dataset snapshot.
143
-
144
- ## Intended Use
145
-
146
- - Reproducing experiments and auditing evolutionary runs
147
- - Analyzing policy evolution dynamics
148
- - Debugging and performance profiling
149
- - Research on provenance, interpretability, and agent behavior
150
-
151
- ## Limitations
152
-
153
- - Schema may evolve between runs or versions of Ouroboros-Key
154
- - The dataset is an export snapshot; canonical write locations are defined in `DATA_CONTRACTS.md` ([get access](#schema-authoritative))
155
- - Some fields are optional or component-specific
156
- - Logs reflect system behavior and may include intermittent failures
157
-
158
- ## Data Sensitivity / Privacy
159
-
160
- - No human PII is intended to be collected
161
- - Operator actions may appear in `tui_events.jsonl`
162
- - Scrub or filter logs before external publication if needed
163
-
164
- ## License
165
-
166
- This dataset inherits the repository license: **MIT**.
167
 
168
  ---
169
 
170
- # ๐Ÿ”‘ System Reference (Ouroboros-Key)
171
-
172
- ## ๐Ÿ’ฐ Access + Learn
173
 
174
- **Get access to KEY and learn to convert your own models into self-replicating quines.**
 
 
 
 
175
 
176
- | Tier | Price | What you get |
177
- |------|-------|------|
178
- | **๐Ÿ”‘ Source Access** | $100 one-time | Private repo invite, full codebase |
179
- | **๐Ÿค Hands-On Conversion** | $500 one-time | I do one model conversion with you + support |
180
- | **๐ŸŽค Speaking Engagement** | $2,000 one-time | Talk at your company/conference, includes source access |
181
-
182
- **[โ†’ Sponsor on GitHub](https://github.com/sponsors/Yufok1)**
183
 
184
- **[๐Ÿ“‚ Learn More (Public Repo)](https://github.com/Yufok1/Ouroboros-key-info)**
185
 
186
- **DM on X: [@Toasteedo](https://x.com/Toasteedo)**
187
-
188
- ## Architecture
189
 
190
- ```
191
- โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
192
- โ”‚ PopulationManager โ”‚
193
- โ”‚ (NEAT-style speciation) โ”‚
194
- โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
195
- โ”‚
196
- โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
197
- โ”‚ โ”‚ โ”‚
198
- โ”Œโ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”
199
- โ”‚ Node โ”‚ โ”‚ Node โ”‚ โ”‚ Node โ”‚ ร— N
200
- โ”‚ traits โ”‚ โ”‚ traits โ”‚ โ”‚ traits โ”‚
201
- โ”‚ + brain โ”‚ โ”‚ + brain โ”‚ โ”‚ + brain โ”‚
202
- โ””โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”˜
203
- โ”‚ โ”‚ โ”‚
204
- โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
205
- โ”‚
206
- โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
207
- โ”‚ DreamerBrain โ”‚ (~200M params)
208
- โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
209
- โ”‚
210
- โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
211
- โ”‚ โ”‚ โ”‚
212
- โ”Œโ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”
213
- โ”‚ RSSM Encoder โ”‚ โ”‚ GRU Core โ”‚ โ”‚ Stochastic โ”‚
214
- โ”‚ Observations โ”‚ โ”‚ Deterministicโ”‚ โ”‚ Latent (32ร—32) โ”‚
215
- โ”‚ โ†’ Latent โ”‚ โ”‚ State (4096) โ”‚ โ”‚ Categorical โ”‚
216
- โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
217
- โ”‚
218
- โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
219
- โ”‚ โ”‚
220
- โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”
221
- โ”‚ Policy Head โ”‚ โ”‚ Value Head โ”‚
222
- โ”‚ 5 layers โ”‚ โ”‚ 5 layers โ”‚
223
- โ”‚ (EVOLVED) โ”‚ โ”‚ (EVOLVED) โ”‚
224
- โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”˜
225
- โ”‚ โ”‚
226
- action value estimate
227
  ```
228
 
229
- ## DreamerV3 Size Presets
230
-
231
- | Size | Deter | Hidden | Params | Use Case |
232
- |------|-------|--------|--------|----------|
233
- | XS | 512 | 512 | ~10M | Development/testing |
234
- | S | 1024 | 1024 | ~22M | Basic tasks |
235
- | M | 2048 | 2048 | ~100M | Minecraft survival |
236
- | **L** | **4096** | **4096** | **~200M** | **Diamond mining (current)** |
237
- | XL | 8192 | 8192 | ~400M | Full game mastery |
238
-
239
- **Current config: L (200M params)** - Same size DreamerV3 used to obtain diamonds in Minecraft.
240
 
241
- ## Features
242
 
243
- ### Evolution Engine
244
- - **NEAT-style speciation**: Genetic distance clustering
245
- - **Fitness sharing**: Prevents monoculture
246
- - **Tournament selection**: With elitism preservation
247
- - **Buffered logging**: High-performance JSONL logging (50x faster than unbuffered)
248
- - **Config-driven sizes**: Switch between XS/S/M/L/XL via config.json
249
 
250
- ### Brain Types
251
 
252
- | Brain | Parameters | Description |
253
- |-------|------------|-------------|
254
- | `DreamerBrain` | **~200M (L)** | World model with imagination + policy/value heads |
255
- | `EmbeddingBrain` | ~99K | Lightweight embedding brain (disabled by default) |
256
- | `MLPBrain` | ~1K | Simple feedforward baseline |
257
 
258
- ### DreamerBrain (World Model)
259
 
260
- DreamerBrain uses the DreamerV3 RSSM architecture to imagine future trajectories:
261
 
262
- ```
263
- โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
264
- โ”‚ DreamerBrain โ”‚
265
- โ”‚ โ”‚
266
- โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚
267
- โ”‚ โ”‚ DreamerV3 RSSM (World Model) โ”‚ โ”‚
268
- โ”‚ โ”‚ - 4096-dim deterministic state (L size) โ”‚ โ”‚
269
- โ”‚ โ”‚ - 32ร—32 categorical stochastic state โ”‚ โ”‚
270
- โ”‚ โ”‚ - Imagines 15-step futures โ”‚ โ”‚
271
- โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
272
- โ”‚ โ”‚ โ”‚
273
- โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚
274
- โ”‚ โ”‚ โ”‚ โ”‚
275
- โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚
276
- โ”‚ โ”‚ Policy Head โ”‚ โ”‚ Value Head โ”‚ โ”‚
277
- โ”‚ โ”‚ (EVOLVED) โ”‚ โ”‚ (EVOLVED) โ”‚ โ”‚
278
- โ”‚ โ”‚ 5 layers โ”‚ โ”‚ 5 layers โ”‚ โ”‚
279
- โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
280
- โ”‚ โ”‚ โ”‚ โ”‚
281
- โ”‚ action value estimate โ”‚
282
- โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
283
- ```
284
 
285
- Unique capabilities:
286
- - **Imagination rollouts**: See all possible futures before acting
287
- - **Decision matrix visualization**: Each future trajectory rendered in Rerun
288
- - **JAX-native**: GPU-accelerated world model inference
289
- - **Evolved heads only**: World model is pretrained, only policy/value evolve
290
-
291
- ### Perception (MiniLM)
292
- - **all-MiniLM-L6-v2**: Frozen 22M param sentence transformer
293
- - **384-dimensional** embeddings
294
- - **Evolved projection**: Transforms base embeddings
295
-
296
- ### Generation (SmolLM) - Optional
297
- - **SmolLM-135M**: Lightweight generative model
298
- - **Cross-modal**: Embeddings influence generation temperature
299
- - Can be disabled for embedding-only mode
300
-
301
- ### Provenance & Tracking
302
- - **cascade-lattice integration**: IPFS auto-logging of all events
303
- - **SwarmLattice**: Fire-and-forget spawn/exploration tracking
304
- - **Genesis root**: `89f940c1a4b7aa65` (common anchor for all provenance)
305
- - **Embedding hashes**: Tensor content hashing for reproducibility
306
-
307
- ### HOLD System (Inference-Level Halt)
308
- - **Architectural halt**: Blocks inference until human/policy resolution
309
- - **CASCADE-LATTICE required**: No cascade = No HOLD
310
- - **Merkle-linked decisions**: Every hold point and resolution recorded
311
- - **Decision matrix exposed**: action_probs, value, imagined futures visible
312
 
313
- ```python
314
- from hold import Hold, HoldPoint
315
-
316
- # In any brain's forward pass:
317
- resolution = Hold.get().yield_point(
318
- action_probs=probs,
319
- value=value,
320
- observation=obs,
321
- brain_id="my_brain",
322
- )
323
- # Blocks until: accept(), override(action), or timeout
324
- final_action = resolution.action
325
  ```
 
 
 
 
 
 
 
 
 
 
 
326
 
327
- ### Quine Manifold (Branching Realities)
328
- - **Brain instantiation**: Not simulation - actual brain clones
329
- - **Exponential branching**: 8 actions โ†’ 8^depth parallel brains
330
- - **Collapse strategies**: max_value, max_prob, random, or HOLD (manual)
331
- - **Defensive cloning**: High uncertainty triggers branch spawning
332
-
333
- ```python
334
- from manifold import QuineManifold
335
-
336
- manifold = QuineManifold(brain)
337
- manifold.expand(depth=2) # 64 parallel realities
338
- best = manifold.collapse('max_value') # Or HOLD to pick manually
339
  ```
340
 
341
- ### Collective Memory (Swarm Intelligence)
342
- - **SEEK on observe**: Every forward() queries CASCADE for similar experiences
343
- - **Latent similarity**: Cosine search over historical latent states
344
- - **Soft bias**: Retrieved experiences gently influence action selection
345
- - **Cross-agent learning**: Agents share experiences through CASCADE tapes
346
-
347
- ### Glass Box Visualization
348
- - **Rerun.io integration**: Real-time visualization of CASCADE events
349
- - **Full computational transparency**: Hidden states, weight snapshots, computation paths
350
- - **Single source of truth**: Rerun shows what CASCADE cryptographically proves
351
- - **DatasetUnity pipeline**: Evolved embedding-based dataset bridging with Kleene fixed-point matching
352
-
353
- ### Metrics & Logging
354
- - **wandb integration**: Full experiment tracking
355
- - **sklearn metrics**: Silhouette, Davies-Bouldin, Calinski-Harabasz
356
 
357
- ### Classic Features
358
- - **Violation Pressure**: Trait deviation from stability envelopes
359
- - **Attractors**: Kleene-style fixed point search
360
- - **Convergence**: Weighted trait merging with mutation
361
 
362
- ## Installation
363
 
364
- ```bash
365
- # Clone (public info repo - full source requires sponsorship)
366
- git clone https://github.com/Yufok1/Ouroboros-key-info
367
- cd Ouroboros-key-info
368
 
369
- # Install dependencies
370
- pip install -r requirements.txt
 
 
371
 
372
- # For GPU acceleration (CUDA 11.8+)
373
- pip install torch torchvision --index-url https://download.pytorch.org/whl/cu118
374
- ```
 
375
 
376
- ## Quick Start
377
 
378
- ### 1. Configure (config.json)
379
 
 
380
  ```json
381
  {
382
- "dreamer_brain": {
383
- "enabled": true,
384
- "size": "L",
385
- "deter_dim": 4096,
386
- "hidden_dim": 4096,
387
- "policy_layers": 5,
388
- "value_layers": 5
389
- },
390
- "fitness": {
391
- "function": "dreamer"
392
- },
393
- "population": {
394
- "size": 6
395
- }
396
  }
397
  ```
398
 
399
- ### 2. Run TUI
400
-
401
- ```bash
402
- python app.py
403
- ```
404
-
405
- ### 3. Glass Box Mode (Compiled Agents)
406
-
407
- ```python
408
- from children.champion_gen1000 import CapsuleAgent
409
-
410
- # Launch with visualization
411
- agent = CapsuleAgent(observe_visual=True) # Spawns Rerun viewer
412
-
413
- # Every inference is visualized with CASCADE proof
414
- result = agent.forward({"traits": {"x0": 0.5, "x1": 0.3}})
415
- print(f"Merkle: {result['_merkle_root']}")
416
-
417
- # Dataset bridging
418
- unity = agent.data_unity
419
- old = unity.embed(unity.load_dataframe(df_2023, "2023"))
420
- new = unity.embed(unity.load_dataframe(df_2024, "2024"))
421
- matches = unity.bridge(old, new, min_confidence=0.7)
422
  ```
423
 
424
- **TUI Controls:**
425
- - `D` - Dashboard (pulse, VP gauges, event stream)
426
- - `P` - Population (start/stop evolution, view nodes)
427
- - `C` - Config (edit any setting with descriptions)
428
- - `L` - Logs (JSONL log viewer)
429
- - `X` - Explorer (causation graph)
430
- - `N` - Neural (brain inspector)
431
- - `Q` - Quit
432
-
433
- ## Configuration
434
-
435
- | Parameter | Default | Description |
436
- |-----------|---------|-------------|
437
- | `dreamer_brain.enabled` | `true` | Enable DreamerBrain world models |
438
- | `dreamer_brain.size` | `L` | Size preset (XS/S/M/L/XL) |
439
- | `dreamer_brain.deter_dim` | `4096` | Deterministic state dimension |
440
- | `dreamer_brain.hidden_dim` | `4096` | MLP hidden layer size |
441
- | `fitness.function` | `dreamer` | Fitness function (dreamer, benchmark) |
442
- | `population.size` | `6` | Population size |
443
- | `evolution.generations` | `1000` | Max generations |
444
-
445
- ## Hardware Requirements
446
-
447
- | Size | VRAM | RAM | Time/Gen | Notes |
448
- |------|------|-----|----------|-------|
449
- | XS (512) | ~2GB | 8GB | ~10s | Development/testing |
450
- | S (1024) | ~4GB | 8GB | ~30s | Basic tasks |
451
- | M (2048) | ~8GB | 16GB | ~60s | Minecraft survival |
452
- | **L (4096)** | **~12GB** | **16GB** | **~80s** | **Diamond mining (current)** |
453
- | XL (8192) | ~24GB | 32GB | ~120s | Full game mastery |
454
-
455
- ## Project Structure
456
-
457
- ```
458
- key/
459
- โ”œโ”€โ”€ app.py # Textual TUI - main entry point
460
- โ”œโ”€โ”€ run.py # Headless evolution runner
461
- โ”œโ”€โ”€ brain.py # Brain interface + EmbeddingBrain
462
- โ”œโ”€โ”€ dreamer_brain.py # DreamerBrain - world model with imagination
463
- โ”œโ”€โ”€ dreamerv3/ # DreamerV3 RSSM implementation (JAX)
464
- โ”œโ”€โ”€ pod_brain.py # PodBrain - multi-model with LoRA adapter
465
- โ”œโ”€โ”€ pod.py # Pod communication (Swarm broadcasts)
466
- โ”œโ”€โ”€ node.py # Node organism with traits + brain
467
- โ”œโ”€โ”€ population.py # NEAT-style population manager
468
- โ”œโ”€โ”€ mobile.py # Async swarm with SwarmLattice
469
- โ”œโ”€โ”€ fitness.py # Pluggable fitness interface
470
- โ”œโ”€โ”€ fitness_comm.py # Communication fitness (embedding similarity)
471
- โ”‚
472
- โ”œโ”€โ”€ # Dataset Bridging
473
- โ”œโ”€โ”€ bridge.py # DatasetBridge with provenance
474
- โ”œโ”€โ”€ kleene.py # Fixed-point matching + batch_compare()
475
- โ”‚
476
- โ”œโ”€โ”€ # Provenance Infrastructure
477
- โ”œโ”€โ”€ swarm_lattice.py # Fire-and-forget spawn/exploration tracking
478
- โ”‚
479
- โ”œโ”€โ”€ checkpoints.py # Save/load evolution state
480
- โ”œโ”€โ”€ bus.py # Event bus for logging
481
- โ”œโ”€โ”€ logger.py # JSONL logging system
482
- โ”œโ”€โ”€ config.json # Runtime configuration
483
- โ”œโ”€โ”€ children/ # Compiled agent capsules
484
- โ””โ”€โ”€ requirements.txt # Dependencies
485
  ```
486
 
487
- ## Usage Examples
488
-
489
- ### Creating Nodes with DreamerBrain
490
-
491
- ```python
492
- from brain import create_brain
493
- from node import Node
494
-
495
- # Create a DreamerBrain (world model with imagination)
496
- brain = create_brain('dreamer')
497
-
498
- # Create a Node with the brain
499
- node = Node(
500
- traits={"exploration": 0.7, "caution": 0.3},
501
- brain=brain
502
- )
503
-
504
- # Forward pass - get action + value
505
- output = brain.forward({"obs": observation})
506
- action = output["action"] # Discrete action
507
- value = output["value"] # Estimated value
508
- latent = output["latent"] # 1536-dim latent state
509
-
510
- # Imagination - see possible futures
511
- futures = brain.imagine(n_trajectories=5, horizon=15)
512
- for i, trajectory in enumerate(futures):
513
- print(f"Future {i}: value={trajectory[-1]['value']:.3f}")
514
-
515
- # Evolution - mutate policy/value heads
516
- child = brain.mutate(rate=0.1)
517
  ```
518
 
519
- ### Creating Nodes with PodBrains
520
-
521
- ```python
522
- from pod_brain import create_pod_brain
523
- from node import Node, create_population
524
 
525
- # Create a PodBrain (multi-model with LoRA adapter)
526
- brain = create_pod_brain(lora_rank=16, voice_enabled=False)
527
 
528
- # Create a Node with the brain
529
- node = Node(
530
- traits={"creativity": 0.7, "focus": 0.5},
531
- brain=brain
532
- )
533
 
534
- # Use the brain via node.think()
535
- output = node.think({"text": "hello world"})
536
- embedding = output["embedding"] # (384,) evolved embedding
537
 
538
- # Evolution
539
- child = node.mutate(rate=0.1, mutate_brain=True)
540
- ```
541
 
542
- ### Population with PodBrains
 
543
 
544
- ```python
545
- from pod_brain import create_pod_brain
546
- from node import create_population
547
-
548
- # Brain factory
549
- def make_pod():
550
- return create_pod_brain(lora_rank=8, voice_enabled=False)
551
-
552
- # Create population
553
- pop = create_population(
554
- size=20,
555
- trait_keys=["speed", "strength", "perception"],
556
- brain_factory=make_pod
557
- )
558
-
559
- # All nodes have PodBrains
560
- for node in pop:
561
- print(f"Node {node.id}: brain={node.brain.id[:8]}")
562
- ```
563
 
564
- ### Pod Communication (Swarm Broadcasts)
 
565
 
566
- ```python
567
- from pod import Pod, Swarm
568
 
569
- # Create swarm of communicating pods
570
- swarm = Swarm(size=5, embed_dim=384)
571
 
572
- # Initialize with diverse states
573
- for pod, topic in zip(swarm.pods, ["alpha", "beta", "gamma", "delta", "epsilon"]):
574
- pod.sense(topic)
 
 
575
 
576
- # Run convergence (broadcast, consensus, align)
577
- alignments = swarm.converge(rounds=5, align_rate=0.2)
578
- print(f"Final alignment: {alignments[-1]:.3f}")
579
 
580
- # Get leader (closest to consensus)
581
- leader = swarm.get_leader()
582
- ```
583
 
584
- ## Swarm Provenance
585
 
586
- Track agent spawning with fire-and-forget logging:
587
 
588
- ```python
589
- from swarm_lattice import SwarmLattice
590
-
591
- lattice = SwarmLattice(log_dir='runs/swarm')
592
- record = lattice.record_spawn(
593
- parent_id='genesis',
594
- child_id=child_node.id,
595
- mutation_rate=0.1,
596
- generation=5,
597
- )
598
- print(f"Spawn merkle: {record.merkle_root}")
599
- ```
600
 
601
  ## License
602
 
 
1
  ---
2
+ pretty_name: KEY Neuroevolution Dataset
3
  license: mit
4
  tags:
 
5
  - neuroevolution
6
+ - lora
7
+ - genetic-algorithms
8
  - provenance
 
9
  - world-model
10
  language:
11
  - en
12
  ---
13
 
14
+ # ๐Ÿ”‘ KEY: Neuroevolution Dataset
15
 
16
+ **40,000+ logged events from real evolutionary runs** โ€” every mutation, crossover, selection, and fitness evaluation.
17
 
18
+ KEY evolves LoRA adapters on frozen base models (MiniLM-L6, DreamerV3) using NEAT-style neuroevolution. This dataset captures the complete evolutionary history.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  ---
21
 
22
+ ## ๐ŸŽฎ Links
 
 
23
 
24
+ | | |
25
+ |---|---|
26
+ | **[๐ŸŒŒ Live Demo](https://huggingface.co/spaces/tostido/Cascade-Hyperlattice)** | Watch evolution in action |
27
+ | **[๐Ÿง  Neural Network](https://huggingface.co/spaces/tostido/Ouroboros)** | The evolved model |
28
+ | **[๐Ÿ“‚ Public Repo](https://github.com/Yufok1/Ouroboros-key-info)** | Architecture docs |
29
 
30
+ ---
 
 
 
 
 
 
31
 
32
+ ## Loading the Dataset
33
 
34
+ ```python
35
+ from datasets import load_dataset
 
36
 
37
+ # Available configs:
38
+ ds = load_dataset("tostido/key-data", "comm_events") # 16,968 rows - pod communication
39
+ ds = load_dataset("tostido/key-data", "crossovers") # 8,878 rows - breeding events
40
+ ds = load_dataset("tostido/key-data", "selection") # 4,266 rows - tournament selection
41
+ ds = load_dataset("tostido/key-data", "mutations") # 3,848 rows - mutation events
42
+ ds = load_dataset("tostido/key-data", "fitness") # 2,121 rows - fitness evaluations
43
+ ds = load_dataset("tostido/key-data", "performance") # 2,121 rows - runtime telemetry
44
+ ds = load_dataset("tostido/key-data", "errors") # 2,070 rows - errors/warnings
45
+ ds = load_dataset("tostido/key-data", "evolution_events") # event bus stream
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  ```
47
 
48
+ ---
 
 
 
 
 
 
 
 
 
 
49
 
50
+ ## Example: Evolving Semantic Similarity
51
 
52
+ **Task**: Adapt MiniLM embeddings to preserve semantic relationships
 
 
 
 
 
53
 
54
+ **Test Pair**: "The cat sat on the mat" โ†” "A feline rested on the rug"
55
 
56
+ | Generation | Cosine Similarity | Fitness |
57
+ |------------|-------------------|---------|
58
+ | 0 | 0.42 (random) | 0.35 |
59
+ | 50 | 0.76 | 0.64 |
60
+ | 100 | 0.89 | 0.82 |
61
 
62
+ The evolved adapter learned to preserve semantic similarity while improving output quality.
63
 
64
+ ---
65
 
66
+ ## What Gets Evolved
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
 
68
+ KEY freezes the base model and evolves only the adapter:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  ```
71
+ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
72
+ โ”‚ Evolvable Brain โ”‚
73
+ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚
74
+ โ”‚ โ”‚ Base Model (FROZEN) โ”‚ โ”‚ โ† MiniLM (22M) or DreamerV3 (200M)
75
+ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
76
+ โ”‚ โ–ผ โ”‚
77
+ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚
78
+ โ”‚ โ”‚ LoRA Adapter (~12K) โ”‚ โ”‚ โ† EVOLVED
79
+ โ”‚ โ”‚ Projection Head (~99K) โ”‚ โ”‚ โ† EVOLVED
80
+ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
81
+ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
82
 
83
+ Total evolved parameters: ~111K (vs 22M-200M frozen)
 
 
 
 
 
 
 
 
 
 
 
84
  ```
85
 
86
+ ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
 
88
+ ## Fitness Functions
 
 
 
89
 
90
+ What evolution optimized for (from `fitness.jsonl`):
91
 
92
+ ### AdapterFitness (Interface Quality)
93
+ - **Preservation (40%)**: Does adapter maintain semantic structure?
94
+ - **Signal Quality (30%)**: Is output well-conditioned? (not collapsed/exploded)
95
+ - **Consistency (30%)**: Similar inputs โ†’ similar outputs?
96
 
97
+ ### EmbeddingKleeneFitness (Semantic Convergence)
98
+ - **Coherence**: Similar pairs should have high cosine similarity
99
+ - **Separation**: Dissimilar pairs should be far apart
100
+ - **Convergence**: Embedding variance stays bounded
101
 
102
+ ### DreamerFitness (World Model Quality)
103
+ - **Prediction**: How well does imagination match reality?
104
+ - **Stability**: Do trajectories stay bounded?
105
+ - **Reward**: Can the model anticipate outcomes?
106
 
107
+ ---
108
 
109
+ ## Schema Reference
110
 
111
+ ### `mutations.jsonl`
112
  ```json
113
  {
114
+ "timestamp": 1737403521.234,
115
+ "event": "mutation",
116
+ "generation": 42,
117
+ "parent_id": "node_abc123",
118
+ "child_id": "node_def456",
119
+ "parent_fitness": 0.72,
120
+ "mutation_rate": 0.1,
121
+ "mutated_traits": ["exploration", "caution"],
122
+ "deltas": {"exploration": 0.05, "caution": -0.02}
 
 
 
 
 
123
  }
124
  ```
125
 
126
+ ### `crossovers.jsonl`
127
+ ```json
128
+ {
129
+ "event": "crossover",
130
+ "generation": 42,
131
+ "parent1_id": "node_abc",
132
+ "parent2_id": "node_xyz",
133
+ "child_id": "node_new",
134
+ "parent1_fitness": 0.72,
135
+ "parent2_fitness": 0.68,
136
+ "contribution_p1": 0.55
137
+ }
 
 
 
 
 
 
 
 
 
 
 
138
  ```
139
 
140
+ ### `fitness.jsonl`
141
+ ```json
142
+ {
143
+ "event": "fitness_evaluation",
144
+ "generation": 42,
145
+ "node_id": "node_abc123",
146
+ "fitness_function": "AdapterFitness",
147
+ "raw_fitness": 0.823,
148
+ "components": {
149
+ "preservation": 0.85,
150
+ "signal": 0.79,
151
+ "consistency": 0.84
152
+ },
153
+ "eval_time_ms": 45.2
154
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  ```
156
 
157
+ ### `selection.jsonl`
158
+ ```json
159
+ {
160
+ "event": "selection",
161
+ "generation": 42,
162
+ "method": "tournament",
163
+ "survivors": ["node_a", "node_b", "node_c"],
164
+ "eliminated": ["node_d", "node_e"],
165
+ "elites_preserved": 2
166
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  ```
168
 
169
+ ---
 
 
 
 
170
 
171
+ ## Why Evolve Instead of Gradient Descent?
 
172
 
173
+ Neuroevolution works when:
174
+ - โœ… Your objective **isn't differentiable** (human preference, discrete outputs)
175
+ - โœ… You want **population diversity** (speciation prevents local optima)
176
+ - โœ… You're optimizing for **interface quality**, not task loss
177
+ - โœ… You need **full auditability** (every mutation logged with provenance)
178
 
179
+ ---
 
 
180
 
181
+ ## FAQ
 
 
182
 
183
+ **Q: What's a "quine brain"?**
184
+ > A brain that can serialize its weights โ†’ mutate โ†’ deserialize. This enables genetic algorithms to evolve neural networks. Think "self-modifying adapter."
185
 
186
+ **Q: Why not just use backprop?**
187
+ > Backprop requires differentiable objectives. Evolution works with any fitness function: human ratings, game scores, discrete metrics.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
 
189
+ **Q: Is this real data?**
190
+ > Yes. This dataset contains 40K+ events from actual evolutionary runs. The $100 source tier includes full code โ€” money back if it doesn't work.
191
 
192
+ ---
 
193
 
194
+ ## ๐Ÿ” Get Full Source Access
 
195
 
196
+ | Tier | Price | What You Get |
197
+ |------|-------|--------------|
198
+ | **๐Ÿ”‘ Source Access** | $100 | Full codebase, private repo invite |
199
+ | **๐Ÿค Hands-On** | $500 | I evolve adapters for your domain + support |
200
+ | **๐ŸŽค Speaking** | $2,000 | Talk at your company on gradient-free optimization |
201
 
202
+ ### **[โ†’ Sponsor on GitHub](https://github.com/sponsors/Yufok1)**
 
 
203
 
204
+ ---
 
 
205
 
206
+ ## Contact
207
 
208
+ **DM on X: [@Toasteedo](https://x.com/Toasteedo)**
209
 
210
+ ---
 
 
 
 
 
 
 
 
 
 
 
211
 
212
  ## License
213
 
data/comm_events/train.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d4164fa1ab16f55a5410723990dce9fe899288ad59899d6cb7a5684dbc12f5a
3
+ size 13604754
data/errors/train.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/evolution_events/train.jsonl ADDED
@@ -0,0 +1 @@
 
 
1
+ {"event_id": "evt_f6b9cc0f828f", "timestamp": 1767139039.1184373, "iso_time": "2025-12-31T00:57:19.118647", "type": "fitness_improvement", "title": "New Best: 0.5150", "detail": "Node 9ad6804a achieved new best fitness", "data": {"traits": {"x0": 0.3745401188473625, "x1": 0.9507143064099162, "x2": 0.7319939418114051, "x3": 0.5986584841970366, "x4": 0.15601864044243652, "x5": 0.15599452033620265, "x6": 0.05808361216819946, "x7": 0.8661761457749352, "x8": 0.6011150117432088, "x9": 0.7080725777960455}, "old_best": 0.5149}, "generation": 0}
data/performance/train.jsonl ADDED
The diff for this file is too large to render. See raw diff