在看文档时说:前馈神经网络一般分为 2 种:一个叫 BP(Back Propagation Networks),即反向传输,另一个是 RBF Network,即径向基函数神经网络。 我怎么老觉得前馈神经网络中的“前馈”与反向传输中的“反向”有点矛盾呢? 前馈说的应该是从输入到输出,一条道走到黑,此外就再没有其他路径了,到了输出后就完了,就输出了。 https://en.wikipedia.org/wiki/Feedforward_neural_network 引用一下 wiki 上的描述: The feedforward neural network was the first and simplest type of artificial neural network devised.[citation needed] In this network, the information moves in only one direction, forward, from the input nodes, through the hidden nodes (if any) and to the output nodes. There are no cycles or loops in the network
再来说 BP,它不是要利用输出的值和期望的值搞出来一个 loss 吗?然后以输出层为起点,一层一层的向输入层方向移动,逐层的计算出每层中神经元们的 weight,直到输入层,这么说来,它应该是从屁眼儿向嘴的方向运动啊。这俩怎么能属于同一个范畴呢?
是我理解的哪里有问题吗? 哪位帮我缕一下