Hebb
A memory is held not in one neuron but in a coalition of them.
Balcha Venkata Parswanadh
Local Hebbian updates. Sparse activations. No backward pass through attention. The talk tonight traces this idea from Hebb in 1949 to optogenetics in 2012. This is what it looks like when someone builds one on purpose.
scroll — the lineage
The idea
Donald Hebb, 1949: neurons that fire together wire together — into assemblies that can re-ignite from a fragment of the original input.
1949
A memory is held not in one neuron but in a coalition of them.
2012
Tag the cells active while a mouse learns to fear a box. Shine light on just those cells in a safe box. The mouse freezes. The assembly was the memory.
Today
A fatiguing leaky integrate-and-fire neuron. It spikes, it leaks, it tires. Learning is local and Hebbian — no labels, no global error, no backward pass.
Assemblies form, overlap, compete, and sustain recurrent activity after the stimulus is gone. A weight matrix doesn't do that.
partial cue
assembly re-ignites
fatigue + sustain
What I've been building
The Dragon Hatchling architecture (arXiv 2509.26507), implemented from scratch and extended: transformer-scale training without the transformer's attention table.
Hebbian state matrix. Memory is written by co-activation and decayed by time — not held in weights that only backprop can move.
Linear attention. O(N) instead of O(N²). No N×N attention matrix is ever built.
Multi-scale memory. Three decay rates, roughly short-term plasticity, early LTP, late LTP.
Sparse by construction. ReLU in the FFN keeps cortex-like sparsity without a sparsity penalty.
From-scratch implementation plus extensions: BDH-RD recurrent depth, BBPE tokenization, teacher distillation, and benchmark tooling.
What it actually managed
10.23M
parameters
24×
500-token retention vs single-scale baseline (15% vs 0.6%)
~5%
active neurons
2.75×
faster training with BBPE (27.5K vs 10K tok/s)
95%
stable runs after stabilization (vs 40% baseline)
Figures are project-reported from the BDH training runs and docs (README / BDH_SUMMARY). Shown as results so far, not as claims of beating transformers.
The open question
I can't answer that tonight. What I can say is that the simple version of the claim — that local, label-free, Hebbian learning cannot scale — is now testable on hardware the 1990s never had. BDH is one such test. It is not a win over gradient descent. It is also not a failure of the idea.
The question is whether that trade changes at scale. That's what I'm working on next.