Lecture 6: Deep Learning Flashcards
1
Q
A
2
Q
Drawbacks of ANN
A
- standard backproop with signmoi doesn’t scale well with multiple layers - weights change too slow
- Overfitting - lots of parameters, more capable of learning by heart
- Require lots of labelled ata
3
Q
Deal with poor backpropagation
A
- Vanishing gradient -> shrink expon.
- Exploding gradient -> grow expon.
Use other activation functions or set bounds on the gradients
4
Q
Solutions to overfitting
A
Regularization - modify error function to penalize alrge weights
dropout - keep neuron active with some probability p of setting it to 0
5
Q
utility of pooling layers
A
Used to:
To reduce the size of the activation maps
So that we reduce the number of parameters of the network and hence avoid overfitting.