The potential of a neuron is the weighted sum of the neuron activations in the previous layer in a Feedforward Neural Network (FNN), without applying an activation function. It is used in backpropagation, where the potential of each neuron is computed in the forward pass.
\( j \) | This is a secondary symbol for an iterator, a variable that changes value to refer to a series of elements |
\( i \) | This is the symbol for an iterator, a variable that changes value to refer to a sequence of elements. |
\( \mathbf{W} \) | This symbol represents the matrix containing the weights and biases of a layer in a neural network. |
\( \sum \) | This is the summation symbol in mathematics, it represents the sum of a sequence of numbers. |
\( \mathcal{x} \) | This symbol represents the activations of a neural network layer in vector form. |
\( a \) | This is the potential of a neuron in a layer of a feedforward neural network. |
\( L \) | This symbol refers to the number of neurons in a layer. |