Views
No views yet
v5 — a larger, better-grounded model than the original 1.13M emergent checkpoint. Same pure-NumPy format; new weights, tokenizer, and config.
| route | meaning |
|---|---|
ANSWER <value> | the working set has it — copy the value straight out |
ESCALATE | the working set can't answer — hand up to a larger host model |
FETCH <topic> | a live-world question — go to the web |
STORE <fact> | a declarative — remember it |
| working set | 1 | 6 | 12 | 18 |
|---|---|---|---|---|
| ANSWER correct | 100% | 96% | 98% | 76% |
cortex.npz float32 weights (P/ keys; gpt-numpy layout)
petite_vocab.json byte-level BPE vocab (2048)
petite_merges.txt BPE merges
config.json E/H/L/BLK, vocab, param count, trained step1from huggingface_hub import snapshot_download
2import numpy as np
3
4d = snapshot_download("gary23w/gary-neuron-emergent")
5z = np.load(f"{d}/cortex.npz")
6P = {k[2:]: z[k] for k in z.files if k.startswith("P/")} # tensor name -> float32 array
7CFG = dict(E=256, H=8, L=8, BLK=512, vocab=2048)
8# pre-LN transformer, learned positions, tanh-GELU, weight-tied output;
9# greedy-decode over a "U: <fact>\nG: noted.\n... U: <question>\nG:" working set.route() does recall + dispatch in one call — see the repo.U:/G: fact format. It excels at routing and
copying normalized facts out of a bounded window; it is not a general chatbot.