SantageAI Glossary › Neural Network
AI Glossary

What is a Neural Network?

A neural network is a computing system loosely inspired by the brain, made of interconnected layers of nodes that learn to recognise patterns by adjusting the strength of their connections.

What is the core idea behind neural networks?

A neural network learns by adjusting the weights between simple units until its outputs match the training data.

How do neural networks differ from related concepts?

ConceptDifference
Neural Network vs Deep LearningDeep learning is the use of neural networks with many layers. A neural network can also be shallow.
Neural Network vs AlgorithmAn algorithm is a fixed set of steps. A neural network learns its behaviour from data.
Neural Network vs the BrainThe brain analogy is loose. Artificial neurons are simple mathematical functions, not biological cells.

How do neural networks work?

What are the main types of neural networks?

Why are neural networks important?

Neural networks are the foundation of modern AI. Every large language model, image generator, and speech system is built on them. Their ability to learn features directly from raw data, rather than relying on hand-coded rules, is what unlocked the current AI era.

How are neural networks used in practice?

Neural networks power image recognition, translation, recommendation systems, fraud detection, self-driving perception, and generative AI. Their main limitations are the large amounts of data and compute they require and their black-box nature.

Frequently Asked Questions

Is a neural network the same as AI?
No. A neural network is one technique within artificial intelligence. AI is the broad goal, and neural networks are a leading method for achieving it.
How does a neural network learn?
It makes a prediction, measures the error against the correct answer, and uses backpropagation and gradient descent to nudge its internal weights so the next prediction is closer.