Term Library / Concept card
What is neural network? Plain-English meaning
A neural network is a computing system inspired by the brain that learns to recognize patterns from data.
Back to Term LibraryBrowse Articles
Path: /term/neural-network
Definition
A neural network is a computing system inspired by the brain that learns to recognize patterns from data.
Also seen as: neural net, artificial neural network, ANN
- Library
- Part of the Term Library
- Format
- Concept card
- Last updated
- September 8, 2026
- Sources and further reading
- 4
- Related articles
- 5
Plain-English explanation
A neural network is a type of machine learning model that processes information in layers of interconnected units, similar to how neurons in the brain are connected. It learns by adjusting the strength of connections between these units based on examples, so it can make predictions or decisions about new data. This approach is used for tasks like image recognition, language translation, and speech understanding. The term 'neural' is a metaphor; it does not mean the system works exactly like a biological brain.
Why it matters
Neural networks power many everyday technologies, such as voice assistants, recommendation systems, and photo tagging. Understanding what they are helps you interpret claims about AI and recognize both their capabilities and limitations. You will encounter neural networks when using search, social media, or online shopping, and knowing the basics gives you a clearer picture of why these systems behave the way they do.
Concrete example
Imagine a system that decides whether an email is spam. You show it thousands of emails that are already labeled 'spam' or 'not spam.' The neural network learns patterns from words, sender addresses, and other features, and then it can classify new emails it has never seen. It does not follow a fixed set of rules written by a person; it discovers its own patterns from the examples.
Often confused with
People often confuse a neural network with a human brain. While a neural network is loosely inspired by brain structure, it is a mathematical model running on computers and does not have consciousness, emotions, or general understanding. Another mix-up is between a neural network and 'deep learning'—deep learning is a subset of neural networks that uses many layers, but not every neural network is deep.
Short definition: A neural network is a computing system inspired by the brain that learns to recognize patterns from data.
Plain-English explanation
A neural network is a type of machine learning model that processes information in layers of interconnected units, similar to how neurons in the brain are connected. It learns by adjusting the strength of connections between these units based on examples, so it can make predictions or decisions about new data. This approach is used for tasks like image recognition, language translation, and speech understanding. The term 'neural' is a metaphor; it does not mean the system works exactly like a biological brain.
Why it matters
Neural networks power many everyday technologies, such as voice assistants, recommendation systems, and photo tagging. Understanding what they are helps you interpret claims about AI and recognize both their capabilities and limitations. You will encounter neural networks when using search, social media, or online shopping, and knowing the basics gives you a clearer picture of why these systems behave the way they do.
Concrete example
Imagine a system that decides whether an email is spam. You show it thousands of emails that are already labeled 'spam' or 'not spam.' The neural network learns patterns from words, sender addresses, and other features, and then it can classify new emails it has never seen. It does not follow a fixed set of rules written by a person; it discovers its own patterns from the examples.
Common confusion
People often confuse a neural network with a human brain. While a neural network is loosely inspired by brain structure, it is a mathematical model running on computers and does not have consciousness, emotions, or general understanding. Another mix-up is between a neural network and 'deep learning'—deep learning is a subset of neural networks that uses many layers, but not every neural network is deep.
Related terms
machine learning, deep learning, artificial intelligence, model, training data, algorithm
Practical tips
Start with a small dataset to understand how a neural network learns before scaling up. Normalize your input data to a similar scale to speed up training and improve accuracy. Use a validation set to monitor overfitting and stop training when performance plateaus. Choose a simple architecture first (e.g., a few layers) and increase complexity only if needed. For image tasks, use convolutional layers; for sequences, use recurrent or transformer layers. Use a learning rate schedule to adjust training speed over time.
Common questions
Array
Key takeaways
A neural network is a computational model inspired by the brain's structure. It consists of layers of interconnected nodes that process data. Training involves adjusting weights to minimize prediction errors. Deep networks with many layers can learn complex patterns. They require large amounts of data and computational power.
Step by step
1. Collect and preprocess your data (clean, normalize, split into training/validation/test). 2. Define the network architecture: number of layers, neurons per layer, and activation functions. 3. Choose a loss function and an optimizer (e.g., stochastic gradient descent). 4. Train the model by feeding it training data in batches and updating weights. 5. Evaluate on validation data, then test on unseen data to measure generalization.
More context
Neural networks are a subset of machine learning and have been studied since the 1940s. Modern deep learning relies on large datasets and GPUs to train multi-layer networks. They power applications like speech recognition, image classification, and natural language processing.
Additional background
The concept of neural networks dates back to the 1940s with the perceptron, but practical adoption grew with the advent of backpropagation in the 1980s and the increase in computational power in the 2000s. Modern neural networks can have billions of parameters, requiring specialized hardware like GPUs and TPUs for training. They are trained using large datasets, often sourced from the internet, and have achieved human-level performance in certain narrow tasks. However, they are not truly intelligent; they lack common sense and can be biased if training data is biased. Interpretability remains a challenge, as the internal decisions are often opaque. Despite this, they are a cornerstone of modern artificial intelligence, powering everything from recommendation systems to autonomous vehicles.
Sources and further reading
- Transport Layer Security (TLS)TLS helps clients communicate securely with servers over untrusted networks.
- Web performanceWeb performance measures how fast websites load and respond, including CDNs, caching, and network requests.
- What is a CDN?CDNs are distributed networks of servers that cache website content close to visitors.
- What is a DDoS attack?DDoS attacks flood a server with traffic, often using networks of bots, to make it unavailable.