Neural Networks Explained in Plain English
Imagine you're trying to teach a child to recognise a dog. You don't hand them a textbook on mammalian anatomy — you show them pictures. "This is a dog. This is also a dog. That's a cat, not a dog." Over time, the child learns the pattern.
- 23 May 2026
- 6 min read
- By Head of Applied AI

The Big Idea
Imagine you're trying to teach a child to recognise a dog. You don't hand them a textbook on mammalian anatomy — you show them pictures. "This is a dog. This is also a dog. That's a cat, not a dog." Over time, the child learns the pattern.
A neural network works the same way. You feed it examples, and it gradually adjusts itself to recognise patterns in the data.
Layers: The Building Blocks
A neural network is made of layers of simple computing units called neurons (or nodes):
- Input layer — receives the raw data (e.g., pixel values of an image)
- Hidden layers — where the "thinking" happens. Each layer learns increasingly abstract features
- Output layer — produces the final prediction (e.g., "80% chance this is a dog")
How a Single Neuron Works
A neuron does three things:
- Multiplies each input by a weight (how important is this input?)
- Sums the weighted inputs
- Applies an activation function (a non-linear "gate" that decides whether to fire)
That's it. Billions of these simple operations, stacked in layers, give us systems that can write poetry, drive cars, and diagnose diseases.
Training: Learning from Mistakes
The network starts with random weights — its guesses are terrible. Here's how it improves:
- Forward pass — data flows through the network, producing a prediction
- Loss calculation — how wrong was the prediction?
- Backward pass (backpropagation) — figure out which weights caused the error
- Weight update — nudge each weight slightly in the direction that reduces the error
Repeat thousands of times, and the network gradually converges on good weights.
Why Depth Matters
A network with one hidden layer can, in theory, approximate any function. But deep networks (many layers) learn more efficiently:
- Layer 1 might detect edges in an image
- Layer 2 combines edges into shapes
- Layer 3 combines shapes into objects
- Layer 4 recognises "this is a face"
This hierarchical feature learning is what makes deep learning so powerful.
Common Misconceptions
- "Neural networks are like brains" — loosely inspired by biology, but the similarities are surface-level
- "More layers = better" — too many layers cause vanishing gradients and overfitting
- "Neural networks are black boxes" — interpretability tools (Grad-CAM, SHAP) can explain their decisions
Try It Yourself
The best way to understand neural networks is to build one. Start with a simple 2-layer network in PyTorch or TensorFlow, train it on MNIST handwritten digits, and watch the accuracy climb from 10% (random) to 95%+ in minutes.
Written by
Head of Applied AI
Head of Applied AI & Faculty
Designs the applied-AI track around a build-it-yourself philosophy — so graduates can debug and ship, not just call an API.
Keep reading
More from the journal
Read it.Now build it.
Every piece here comes out of real work in the lab. Come do that work yourself — book a visit or find your track.


