Neural Network
A computing system inspired by the brain, made up of layers of connected "neurons" that learn patterns from data — the building block of modern AI.
In plain English
A neural network is a mathematical model loosely inspired by how brain cells connect. It consists of layers of artificial "neurons" (simple calculations) connected by weighted links. By adjusting those weights based on training data, the network learns to map inputs (an image, a sentence) to outputs (a label, a translation, a generated response).
Key concepts:
- Layers — input layer, hidden layers (where the magic happens), output layer
- Weights — the numbers that get tuned during training; modern models have billions
- Activation function — decides whether each neuron "fires"
- Backpropagation — the algorithm that updates weights based on errors
Modern variants:
- CNNs — for images
- RNNs / LSTMs — for sequences (largely replaced by transformers)
- Transformers — the architecture behind nearly every modern AI breakthrough
Every LLM, image generator, and recommendation engine you use is a neural network.