Welcome to the Notes explaining the major steps taken to emulate backpropagationon Excel for a NN with a single hidden layer
- Layer Initialisation: The nodes of the output and hidden layer are filled using the initial parameter values of the 8 weights W1 till W8.
- Loss Calculation: The error is calculated using the error loss functions (1/2)(t1 - Ao1) & (1/2)(t2 - Ao2).
- BackPropagation: The partial gradients of loss for each parameter of weight is calculated using the chain rule.
- Updating the Weights : The weights are updated using the following expression [W_{new} = W_{old} - a \cdot K].







