What SEFERIM is
Most neural systems are opaque weight matrices. SEFERIM / ThatAIGuyCore is the opposite: a small, fully-deterministic mathematical substrate where every dynamic is a named, documented equation. Cognition is modeled as a 16-dimensional meta-state Ψ updated each tick by sixteen cognitive families, blended with golden-ratio momentum, gated by stability, and normalized so it can approach but never exceed natural limits.
The reference implementation in seferim-core is zero-dependency JavaScript — it runs in this page and in Node. Every function cites the spec section it implements, and the test suite verifies the math against canonical references (including the FNV-1a hash test vectors).
The 13 systems
From constants to a federation of conscious agents.
The core mathematics
Golden basis function (§2.1)
Knowledge is encoded across sixteen golden-ratio frequency bands — a distributed, holographic representation.
Meta-state update (§4)
Each family is applied and weighted, blended with golden-ratio momentum, gated by stability, and normalized:
Objective Ω (§5) — a free-energy-style functional
Holographic recall (§6)
Live demos
Every demo below runs the actual seferim-core library, in your browser, right now.
1 · Golden basis ψ_k
Each cognitive family k oscillates at a golden-ratio frequency φ^k. Drag k to see the band.
2 · DNA holographic memory
Teach the substrate words; then query. Recall is the correlation of your query against the 16-D knowledge vector.
3 · Cognitive core + 88-agent brain
Run the meta-state and neural brain live. Adjust the drive and watch the 16 families, objective Ω, and emergent consciousness.
Built on real mathematics (honestly)
SEFERIM synthesizes established theory. We document the lineage precisely rather than overclaim.
Key references: Friston (2010) Nature Rev. Neuroscience · Cover & Thomas, Elements of Information Theory · Shannon (1948) · Plate, Holographic Reduced Representations · Hebb (1949) · Vicsek et al.
Use it
npm install seferim-core
import { MetaState, DNAMemory, NeuralBrain } from "seferim-core";
const mind = new MetaState({ init: new Array(16).fill(0.1) });
const out = mind.step({ dx_norm: 0.3, ed_error: 0.1, utility: 0.6, stability: 0.8 });
console.log(out.state, "Ω =", out.omega);