...

/

A Three-Layer Example: Working on the Output Layer

A Three-Layer Example: Working on the Output Layer

Learn how to calculate the output of the final layer.

Input to the output layer

Let’s calculate the combined moderated input into the final layer X=WIX = W \cdot I.

The inputs into this layer are the outputs from the second layer we just worked out, named OhiddenO_\text{hidden}. The weights are those for the links between the second and third layers, named Whidden_outputW_\text{hidden\_output}, not those we just used between the first and second. Therefore, we have:

Xoutput=Whidden_outputOhiddenX_{\text{output}} = W_{\text{hidden\_output}} \cdot O_{\text{hidden}}

So, working this out in ...