A Three-Layer Example: Working on the Output Layer
Explore how to calculate the combined moderated inputs entering the final output layer of a three-layer neural network. Learn to apply weights, perform matrix multiplication, and use the sigmoid activation function to generate the network's final output values. This lesson helps you understand and implement the output computations essential for neural network learning and optimization.
We'll cover the following...
We'll cover the following...
Input to the output layer
Let’s calculate the combined moderated input into the final layer .
The inputs into this layer are the outputs from the second layer we just worked out, named . The weights are those for the links between the second and third layers, named , not those we just used between the first and second. Therefore, we have:
So, working this out in ...