JA EN

Neural Network

A mathematical model inspired by biological neural circuits, composed of input, hidden, and output layers, serving as the foundation for advanced image processing tasks.

A neural network is a computational model inspired by biological neurons. Each artificial neuron computes a weighted sum of inputs, applies an activation function, and passes the result forward. Stacking these units into multiple layers enables learning complex tasks such as image classification, object detection, and image generation.

Core components:

Training uses backpropagation, propagating loss gradients from output to input to update weights. Common optimizers include SGD, Adam, and AdaGrad.

In image processing, fully-connected networks cannot exploit spatial structure, leading to CNNs. Beyond CNNs, GANs, Vision Transformers, and diffusion models have dramatically expanded computer vision capabilities.

Related Terms

Related Articles