首页 > 代码库 > Briefly introduce what is backpropagation ?
Briefly introduce what is backpropagation ?
Backpropagation is a training algorithm used for a multilayer neural networks, it allows for efficient computation of the gradient.
The backpropagation algorithm can be divided into several steps:
1) Forward propagation of training data through the network in order to generate output.
2) Use target value and output value to compute error derivative with respect to output.
3) Backpropagate to compute derivative of error with respect to output in the previous layer, and continue for all hidden layers.
4) Using derivatives with respect to error for output and all hidden layers to calculate the error derivative with respect to weights.
5) Update weights.
Briefly introduce what is backpropagation ?
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。