Chapter 7: Artificial Neural Networks Flashcards
Give the three types of neural network models
single neuron model
single layer perceptron
multilayer perceptron
how is the output of a neuron created
activation function * ( sum of (weights * input) + bias )
what does an activation function do
squishes the amplitude range of the output signal
give some activation functions
identity
threshold
sigmoid/ tanh
Relu
what is the identity function
no change φ(v) = v
what is the symbol for the activation function
phi φ
what is the threshold function
maps to {-1 , 1}
φ(v) = 1 if v >= 0
-1 if v < 0
what is the sigmoid function
maps to { 0 , 1 }
1 / 1 + exp (-v)
give the tanh sigmoid function
maps to { -1, 1}
exp( 2v ) - 1
—————-
exp( 2v ) + 1
give the rectified linear unit function
maps to ( v, 0 )
φ(v) = v if v >= 0
0 if v < 0
what does relu stand for
rectified linear unit
describe a single layer perceptron
one input layer
one output layer
what are hidden layers
between the input and output
creates complex function
what is a multi layer perceptron
also called a feed forward neural network
consists of at least three layers
what are the hyperparameters in a neural network
the number of hidden layers
the number of neurons in each layer
the number of hidden layers