DeepLearning-Introduction Flashcards
1
Q
Factors leading to rise of deep learning.
A
- Big Data
- GPUs: parallelizable algorithms
- New algorithms
2
Q
Perceptron
A
y= g(w_o + X*W)
Where g is a sigmoid function, X is in the input vector, W is the weight vector
3
Q
Examples of a non-linear sigmoid function
A
g(z) = 1/(1 +e^(-z))
tf. math.sigmoid
tf. math.tanh
tf. math.relu
4
Q
Why do we care about non-linear activation functions?
A
Introduces non-linearities into the network.