0% found this document useful (0 votes)
15 views

Backpropagation Algorithm

Backpropagation Algorithm

Uploaded by

valli
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views

Backpropagation Algorithm

Backpropagation Algorithm

Uploaded by

valli
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

Back Propagation Algorithm

Example
Example
Example
Key Points
❖ In the forward pass, we start by propagating the data inputs to the input layer, go through the hidden
layer(s), measure the network’s predictions from the output layer, and finally calculate the network
error based on the predictions the network made.
❖ This network error measures how far the network is from making the correct prediction. For example,
if the correct output is 4 and the network’s prediction is 1.3, then the absolute error of the network is
4-1.3=2.7. Note that the process of propagating the inputs from the input layer to the output layer is
called forward propagation.
❖ Once the network error is calculated, then the forward propagation phase has ended, and backward
pass starts.
❖ In the backward pass, the flow is reversed so that we start by propagating the error to the output
layer until reaching the input layer passing through the hidden layer(s).
❖ The process of propagating the network error from the output layer to the input layer is called
backward propagation, or simple backpropagation. The backpropagation algorithm is the set of steps
used to update network weights to reduce the network error.
https://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example/

You might also like