Overview

Neural Substrate is a biophysical spiking neural network connected to a custom embodied environment. The model is grounded in primary literature on cortical and hippocampal microcircuitry rather than on artificial-network conventions: explicit cell types, membrane dynamics, Ca²⁺-driven plasticity, microglial pruning, and sleep-state replay are all modelled directly rather than approximated by scalar weights and gradient descent.

The work has two halves. The tissue model is a Rust + CUDA simulation of neurons, synapses, and structural plasticity. The environment is a 3D navigation world that the neural agent inhabits in place of a fixed dataset — sensory input arrives as ray-cast geometry and luminance fields, and actions are continuous heading deltas.

See the Neural Substrate research perspective for the framing question and the broader research stance behind this work.

Tissue model

Environment

A 3D world with walls, food, water, and configurable scenarios. Two clients share the same world: the neural agent connects over a Unix socket using a RESET / ACTION / STATE protocol, and a human observer can attach via a WebSocket viewer. Sensory input is a 43-ray cast plus a 32×32 luminance field. Actions are continuous heading deltas with an idle option.

Cadence

Neural Substrate is research, not a product. Public updates here are posted roughly weekly with a short note on what changed and what was learned. Longer write-ups live under Papers and the Research note.

Project log

  • Provenance over behavior

    Published a methodology note on validating neural systems against relays. Behavior alone cannot establish that a system is doing the computation it appears to be doing — provenance, tracing every input back to its leaves, is the actual test. Generalizes beyond neural systems. Read the paper.

  • Project page expanded

    Neural Substrate's page now describes the tissue model and embodied environment directly. Weekly updates begin from this point.

  • A different kind of learning system

    Added a research note on stateful learning, internal drives, and adaptive behavior in the current Neural Substrate work.

  • Project record established

    Neural Substrate now has a project page, log source, and paper area for longer research documents.

Documents