Feedforward networks Flashcards
1
Q
What are other ways to call a neuron?
A
Perceptron, elementary computing unit
2
Q
How does a neuron work?
Or in other words, what is it composed of?
A
- Parametric linear transform
- followed by a fixed scalar non linear function
Each neuron computes one single thing
3
Q
What are some activation functions?
A
- Linear: g(a)=a, unbounted but limited to linear relation
- Sigmoid: g(a)=sigma(a)= 1/(1+exp(-a)), bounded btw 0 and 1, squashes large/small values
- ReLU (Rectified linear activation): g(a) = max(0, a), lower bounded, negatives become 0
4
Q
What is a feedforward NN?
A
Multilayer perceptron.
There is an input layer (features, followed by at least one hidden layer, and an output layer.
Each neuron from a layer takes as input all the neurons of the previous layer