Calculating net input signal (3)
- receives a vector of input signals
- usually real numbers, denoted by
- each associated with a weight ( in diagram) (aka parameters) that determines how much importance or influence that particular signal has
- calculates the net input signal, which is the weighted sum of the inputs
- uses an activation function
- to transform this net input into the output signal ()
- transforms them into an output between or (depending on the chosen )
- introduces nonlinearity to the model, enabling it to learn complex patterns
- to transform this net input into the output signal ()
- also a threshold value/bias ()
- influences output signal's strength
- If the output signal surpasses the threshold, the neuron "fires" (outputs 1), otherwise, it remains inactive (outputs 0)
Calculating net input signal (3)
Two types of ANs that compute the net input signal
-
Summation Units (SU):
- weighted sum of all input signals
-
Product Units (PU):
- weighted product of all input signals
- network can represent interactions involving more than two input signals. e.g. would be a 3rd-order interaction
- allows to model more complex relationships in the data
Activation Functions (4)
- receives net input signal and bias
- determines the output (or firing strength) of the neuron
- outputs or
- in fancy terms: [ or ] and
- Types of activation functions