What was borrowed from the brain, and what was not.
๐ Where this lives: the phrase "neural network" invites a comparison that is mostly misleading, and being able to say precisely where the analogy holds and where it breaks is genuinely useful โ it is what stops you expecting brain-like behaviour from something that is a differentiable function, or dismissing a working method because it is "not how the brain does it". Aeronautics borrowed lift from birds and abandoned flapping; the same selective borrowing happened here. Search "neural networks brain analogy misleading differences".
The biological neuron
A BIOLOGICAL NEURON is a cell specialised for signalling. Its
parts:
DENDRITES branching fibres receiving signals from other
neurons. A single neuron may have thousands.
SOMA the cell body, where incoming signals are
integrated
AXON a single long fibre carrying the output signal
away
AXON TERMINALS the branching end of the axon
SYNAPSE the junction between an axon terminal and
another neuron's dendrite. Signals cross it
chemically, via neurotransmitters.
HOW IT COMPUTES:
ยท dendrites receive signals that are EXCITATORY (raising the
cell's electrical potential) or INHIBITORY (lowering it)
ยท the soma sums them
ยท if the potential exceeds a THRESHOLD, the neuron FIRES โ
it sends an ACTION POTENTIAL down the axon
ยท firing is ALL-OR-NOTHING: the spike has a fixed size, and
information is carried by the RATE and TIMING of spikes,
not by their amplitude
ยท after firing there is a REFRACTORY PERIOD during which it
cannot fire again
LEARNING happens by changing SYNAPTIC STRENGTH โ how much
influence one neuron has on another. That is the biological fact
the whole field is built on, and it is what Hebb's rule (a later
topic) formalises.
THE SCALE:
about 10^11 neurons in a human brain
each with roughly 10^4 synapses, giving on the order of
10^14โ10^15 connections
a neuron fires at up to roughly 100โ1,000 times per second
signal propagation is MILLISECONDS โ about a million times
slower than a silicon transistor's switching time
THE INTERESTING CONSEQUENCE OF THOSE LAST TWO FIGURES: brains
are built from very slow components and outperform computers
on perception. THE ADVANTAGE MUST THEREFORE COME FROM MASSIVE
PARALLELISM, not from speed โ roughly 10^11 processors
operating at once, against a handful of fast cores. That
observation is the original motivation for connectionism.
The artificial neuron, and the comparison
AN ARTIFICIAL NEURON abstracts the biological one to a small
amount of arithmetic:
inputs xโ โฆ xโ, each multiplied by a WEIGHT wแตข
the weighted sum, plus a BIAS b, forms the NET INPUT
net = ฮฃ wแตขxแตข + b
an ACTIVATION FUNCTION f produces the output
y = f(net)
xโ โโwโโโโ
xโ โโwโโโโค โโโโโโโโโโโโ
โฎ โโโโโถ โ ฮฃ then fโ โโโโถ y
xโ โโwโโโโค โโโโโโโโโโโโ
bias b โ
THE CORRESPONDENCE, term by term:
dendrites โ the inputs
synaptic strength โ the WEIGHTS
soma's summation โ the weighted sum
firing threshold โ the activation function and bias
axon output โ y
synaptic change โ weight update during learning
WHAT WAS KEPT โ and this is the honest list of what the analogy
actually delivers:
ยท MANY SIMPLE UNITS rather than one complex processor
ยท learning by ADJUSTING CONNECTION STRENGTHS
ยท a nonlinear response to a summed input
ยท DISTRIBUTED REPRESENTATION โ no single unit holds a
concept; the knowledge is in the pattern of weights
ยท GRACEFUL DEGRADATION: damage to a few units degrades
performance rather than destroying it, because the
representation is distributed
ยท PARALLELISM in principle
WHAT WAS DISCARDED, and each difference matters:
BIOLOGICAL ARTIFICIAL
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
spiking โ discrete events in a continuous real-valued
continuous time output per forward pass
asynchronous; each neuron synchronous; the whole layer
fires on its own computes at once
~10^11 units, 10^14 synapses thousands to billions of
parameters, but a different
organisation
~1,000 distinct neuron types one or two unit types
chemical neurotransmitters, a single scalar weight
dozens of kinds
learning by local rules only BACKPROPAGATION, which sends
an error signal BACKWARD
along connections โ no known
biological mechanism does
this
connections grow and are the architecture is fixed
pruned physically before training
energy: about 20 watts a large training run consumes
many megawatt-hours
learns from few examples needs many examples
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
THE MOST IMPORTANT ROW IS BACKPROPAGATION. It is the algorithm
that makes artificial networks trainable, and it requires each
connection to know the derivative of a global error with respect
to its own weight โ information that would have to travel
backward along the axon. NO BIOLOGICAL MECHANISM FOR THIS IS
KNOWN, so the central technique of the field is explicitly
non-biological. Anyone claiming these systems learn "the way the
brain does" is wrong on the most consequential detail.
THE ENERGY COMPARISON IS ALSO WORTH KEEPING: a brain does what
it does on roughly the power of a dim light bulb. That gap is
one of the clearest indications that the analogy is loose rather
than deep.
What neural networks are good for
THE PROPERTIES THAT FOLLOW FROM THE ARCHITECTURE, and why they
matter:
1. LEARNING FROM EXAMPLES
No rule needs to be stated. This is the answer to the
knowledge-acquisition bottleneck of ACtE0904 โ the knowledge
is extracted from data rather than from an expert.
2. GENERALISATION
A trained network responds sensibly to inputs it has never
seen, provided they resemble the training data โ which is the
"future resembles the past" assumption from the machine
learning topic.
3. TOLERANCE OF NOISE AND INCOMPLETE INPUT
Because the response depends on a weighted sum over many
inputs, corrupting a few has limited effect. This is exactly
where symbolic rule systems are brittle.
4. DISTRIBUTED REPRESENTATION and GRACEFUL DEGRADATION
Knowledge is not localised, so there is no single point of
failure โ and equally no single place to look to find out
what the network knows.
5. NONLINEAR FUNCTION APPROXIMATION
With enough hidden units, a network can approximate any
continuous function to arbitrary accuracy โ the UNIVERSAL
APPROXIMATION THEOREM, covered in the multilayer perceptron
topic. What the theorem does NOT say is that the weights can
be FOUND, which is the practical difficulty.
6. PARALLEL IMPLEMENTATION
The arithmetic is matrix multiplication, which is why GPUs
transformed the field โ the parallelism was in the model all
along and only became exploitable when the hardware arrived.
AND THE DISADVANTAGES, stated as plainly:
ยท OPAQUE. The knowledge is a matrix of numbers, so the
network cannot explain a decision โ the property the AI
applications topic identified as a regulatory requirement
and the reason rule-based systems persist.
ยท DATA-HUNGRY, and it inherits whatever bias the data holds
ยท NO GUARANTEES: training may converge to a poor solution,
and there is no proof of correctness
ยท MANY DESIGN CHOICES โ architecture, activation, learning
rate โ each requiring experiment
ยท COMPUTATIONALLY EXPENSIVE to train
ยท CONFIDENTLY WRONG on inputs outside the training
distribution, including adversarial examples
WHERE THIS SITS IN THE SUBJECT โ the symbolic/connectionist
contrast from the AI concepts topic, now concrete:
SYMBOLIC AI explicit knowledge, interpretable, brittle
at the edges, needs no data
NEURAL NETWORKS learned knowledge, opaque, robust to
noise, needs data
THEY FAIL IN OPPOSITE PLACES, which is precisely why
neuro-symbolic work exists and why the field did not simply
abandon one for the other.
A NOTE ON WHY THE BIOLOGICAL INSPIRATION STILL MATTERS despite
the differences: it supplied the ARCHITECTURAL IDEA โ many
simple units, learning by weight change, distributed
representation โ at a time when the alternative assumption was
that intelligence required explicit symbol manipulation. THE
INSPIRATION WAS PRODUCTIVE EVEN THOUGH THE IMPLEMENTATION
DIVERGED, which is the usual relationship between biology and
engineering.
The row worth remembering from the difference table is backpropagation. It is the algorithm that makes artificial networks trainable, and it requires an error signal to travel backward along connections โ something no known biological mechanism does. The field's central technique is explicitly non-biological.
๐ Go further: the differences in that table are an active research programme, not just caveats. Spiking neural networks and neuromorphic hardware โ Intel's Loihi, IBM's TrueNorth โ implement discrete, asynchronous, event-driven computation much closer to biology, and the motivation is the energy figure: a spiking network only does work when a spike occurs, so idle units cost nothing. The trade-off is that backpropagation does not apply cleanly to non-differentiable spikes, so training them is genuinely harder. Whether biological fidelity buys efficiency worth that difficulty is still open. Search "spiking neural networks neuromorphic Loihi energy efficiency".
๐ก Exam angle: label the parts of a biological neuron โ dendrites, soma, axon, synapse โ and describe how it computes (excitatory and inhibitory inputs summed, fires if the threshold is exceeded, all-or-nothing spike). Draw the artificial neuron with weights, bias, summation and activation function, and give the correspondence between the two term by term. The comparison table is the standard question: know the differences in spiking versus continuous output, asynchronous versus synchronous operation, learning rule (local versus backpropagation), neuron type diversity, and energy. Quote the scale figures โ about 10ยนยน neurons and 10ยนโด synapses โ and the parallelism argument. List the advantages (learning from examples, generalisation, noise tolerance, graceful degradation) and disadvantages (opacity, data hunger, no guarantees).
Syllabus points
BNN vs ANN comparison
Create a free account to tick topics off, take notes as you read, watch the video lessons and get a day-by-day study plan built around your exam date.