DavidVivancos commited on
Commit
bdcd350
·
verified ·
1 Parent(s): 094fb05

Update README.md

Browse files

dataset description

Files changed (1) hide show
  1. README.md +113 -0
README.md CHANGED
@@ -1,3 +1,116 @@
1
  ---
 
 
 
 
 
 
 
2
  license: cc-by-sa-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: MultiNxon2 NAS Runs (Neuraxon Game of Life)
3
+ tags:
4
+ - neural-architecture-search
5
+ - artificial-life
6
+ - neuroscience
7
+ - simulation
8
+ - neuraxon
9
  license: cc-by-sa-4.0
10
  ---
11
+
12
+ # MultiNxon2 — NAS Runs for the Neuraxon Game of Life
13
+
14
+ This dataset contains the raw outputs of many **Neural Architecture Search (NAS)**
15
+ runs for the **Neuraxon Game of Life** — an artificial-life simulation where
16
+ small spiking "brains" (NxErs) live, eat, mate and explore a world. Each NAS run
17
+ searches over brain hyper-parameters to find the architecture that best survives
18
+ and behaves, scored by a single `fitness` value plus a set of biology-inspired
19
+ metrics (M1–M10).
20
+
21
+ The runs were collected over several days and span Neuraxon internal versions
22
+ **v166 → v195**. Each version tweaks the search space or the fitness/selection
23
+ logic, so the collection is also a longitudinal record of how the search itself
24
+ evolved.
25
+
26
+ ## Folder layout
27
+
28
+ One NAS run = one folder named by its start timestamp:
29
+
30
+ ```
31
+ 20260512_212222/
32
+ 20260514_075838/
33
+ ...
34
+ 20260531_163524/
35
+ ```
36
+
37
+ Each run folder contains:
38
+
39
+ | File / folder | What it is |
40
+ |---|---|
41
+ | `nas_log.csv` | **Main results table** — one row per trial (architecture). Start here. |
42
+ | `nas_best.json` | The single best architecture of the run. |
43
+ | `nas_top1.json`, `nas_top2.json`, `nas_top3.json` | The top-3 architectures. |
44
+ | `trial_NNN__arch.json` | The full hyper-parameters for trial `NNN`. |
45
+ | `trial_NNN/` | Per-trial game outputs (the actual simulation logs for that architecture). |
46
+
47
+ Inside a `trial_NNN/` folder (newer runs nest seed repeats as `rep0/`, `rep1/`,
48
+ `rep2/`; older runs use sibling `trial_NNN_s<seed>/` folders):
49
+
50
+ | File | What it is |
51
+ |---|---|
52
+ | `nxon2_<id>__BestFitness.json` | Best-of-run game state for each scoring dimension: |
53
+ | `..._BestFoodFound.json`, `..._BestFoodTaken.json` | …food found / taken, |
54
+ | `..._BestMates.json`, `..._BestTimeLived.json`, `..._BestWorldExplorer.json` | …mates, lifespan, exploration. |
55
+ | `..._KeyMetrics.txt` | Human-readable summary of the run's key metrics. |
56
+ | `..._LifespanLog.txt` | Per-agent lifespan / population log. |
57
+ | `..._MembraneDiag.txt` | Membrane / firing diagnostics. |
58
+ | `..._Completed_<timestamp>.json` | Final completed game record. |
59
+
60
+ ## `nas_log.csv` columns (the important ones)
61
+
62
+ `nas_log.csv` has ~52 columns. The key ones:
63
+
64
+ - `trial_id` — index of the trial within the run.
65
+ - `fitness` — the value being optimised (higher is better).
66
+ - `arch_summary` — the **full hyper-parameter string** for that architecture
67
+ (firing thresholds, connection probability, learning rate, topology, etc.).
68
+ - `is_global_best` — `1` for the run's winning architecture.
69
+ - `M1`–`M10` — paper-fidelity metrics (e.g. `M1` = excitatory firing band,
70
+ `M1_neutral` / `M1_inh` = rest / inhibition fractions, plus synchrony,
71
+ plasticity and other dynamics measures).
72
+ - Survival / behaviour: `final_alive`, `peak_alive`, `alive_mean`,
73
+ `went_extinct`, `surv_score`, `expl_rate`.
74
+ - Reliability: `n_repeats`, `n_repeats_ok`, `fitness_std_reps`, `M1_std`
75
+ (later versions re-run the same architecture across seeds to average out noise).
76
+ - Bookkeeping: `completed_at_iso`, `wall_actual_s`, `total_rounds`, `error`.
77
+
78
+ ## Quick start
79
+
80
+ ```python
81
+ import pandas as pd
82
+
83
+ # point at any run folder
84
+ df = pd.read_csv("20260531_163524/nas_log.csv")
85
+
86
+ # best architecture in that run
87
+ best = df.sort_values("fitness", ascending=False).iloc[0]
88
+ print(best["fitness"], best["arch_summary"])
89
+ ```
90
+
91
+ ## Notes
92
+
93
+ - All paths in the original logs use `\...`; that prefix is just the
94
+ source drive and can be ignored.
95
+ - This is **raw research output**: column sets and folder conventions shift
96
+ slightly between versions as the search evolved.
97
+
98
+ ## License
99
+
100
+ Released under CC-BY-4.0-SA
101
+
102
+ ## Citation
103
+ ```bibtex
104
+ @dataset{NeuraxonGameOFLifeResearhNAS-5-MultiNxon2NAS
105
+ title={Neuraxon Game of Life 5 Research Dataset: NAS Multi Nxon Exploration},
106
+ author={Vivancos, David and Sanchez, Jose},
107
+ year={2026},
108
+ publisher={Hugging Face},
109
+ version={1.0.0},
110
+ url={https://huggingface.co/datasets/DavidVivancos/MultiNxon2NAS}
111
+ }
112
+ ```
113
+ ## Authors & Curators
114
+ * **David Vivancos** / Artificiology Research (https://artificiology.com) - [Qubic Science](https://qubic.org/)
115
+ * **Dr. Jose Sanchez** / UNIR - [Qubic Science](https://qubic.org/)
116
+ **Contact:** For questions or issues, please open a GitHub issue at [https://github.com/DavidVivancos/Neuraxon](https://github.com/DavidVivancos/Neuraxon).