AI Terms Academy
深度学习 · Deep Learning

Neural Network

一种受人脑神经元启发的计算结构,由很多「小单元」互相连接,通过调整连接权重来「学习」。

神经网络

进阶 · Intermediate#DL#神经网络

Plain-language definition

一句话定义

一种受人脑神经元启发的计算结构,由很多「小单元」互相连接,通过调整连接权重来「学习」。

Original definition

英文原文定义

An artificial neural network is a computational model composed of interconnected nodes (neurons) organized in layers, learning by adjusting connection weights via backpropagation.

Two levels

分难度讲解

入门版

想象一张网,每个节点像一个小开关。给网络一些输入,开关们层层传递、加权、判断,最后输出结果。错的多了就调整开关的「力度」,下次就更准。

进阶版

前馈网络中,每层计算 y = σ(Wx + b),通过反向传播(梯度下降)最小化损失。常见变体:CNN(图像)、RNN/LSTM(序列)、Transformer(注意力)。

Real-world example

真实例子

人脸识别、机器翻译、甚至你刷短视频时的推荐,背后大多是某种神经网络在工作。

Keep exploring

相关术语