The artificial neuron
A single neuron takes a vector of inputs , computes a weighted sum, adds a bias, and passes the result through a nonlinearity:
and are the learnable parameters; is the activation function. Without , stacking neurons just produces another linear map — the whole network collapses to a single matrix multiply. The activation is what makes deep networks expressive.
Biologically inspired but only loosely: real neurons fire spikes; artificial ones output a smooth scalar. What matters is the math, not the metaphor.
