Bio Mirror / Circuits and Plasticity
Basal Ganglia and the Dopamine Signal
A selection circuit trained by a reward prediction error — reinforcement learning, implemented in tissue.
The structure
The basal ganglia are subcortical nuclei — striatum, globus pallidus, subthalamic nucleus, substantia nigra — wired into loops with cortex and thalamus. The architecture is built around competing direct and indirect pathways that respectively promote and suppress candidate actions, with dopaminergic projections from the midbrain modulating the balance. The default state is inhibition: the circuit releases a selected action by removing a brake rather than by applying a push.
The function it dictates
The basal ganglia select among competing actions and learn which selections were worth making. Schultz's recordings showed that midbrain dopamine neurons fire not to reward itself but to reward that was better or worse than predicted — a reward prediction error. This was recognized as the same quantity that temporal-difference learning had been using in machine learning, arrived at independently. Damage here produces the movement disorders of Parkinson's and Huntington's disease, which are, in computational terms, failures of action selection rather than of movement execution.
The mirror in AI
Temporal-difference reinforcement learning, and therefore the reward-model machinery in RLHF. The actor-critic architecture maps onto the circuit surprisingly well: the striatum as actor selecting actions, the dopamine signal as the critic's error term. The convergence between Sutton and Barto's algorithms and Schultz's recordings is one of the strongest results connecting the two fields, and it is worth knowing that the mathematics preceded the measurement.
The mirror in robotics
Behavior arbitration in a subsumption or behavior-tree architecture: multiple candidate controllers compete, and a selection layer decides which one gets the actuators. The inhibition-by-default design is also good engineering — a robot whose actions must be actively released is safer than one whose actions must be actively stopped.
Biological reward signals are grounded in homeostasis: the organism has needs, and reward ultimately refers to them. An artificial reward function is written by someone, which is exactly why reward hacking and specification gaming exist as problems — there is no underlying need for the proxy to be a proxy *for*. Dopamine also does several other jobs simultaneously (vigor, motivation, attention gating) that the clean RL story omits.
Open questions
- Is the reward prediction error hypothesis complete, or does dopamine carry several signals at once?
- Does grounding reward in homeostatic need prevent reward hacking, or merely relocate it?
Related DEM-X entries
GI-SYCO-01Further reading
- Schultz, Dayan & Montague, "A neural substrate of prediction and reward" (1997)
- Sutton & Barto, Reinforcement Learning — the temporal-difference chapters