Lecture 6: Deep Learning Flashcards

1
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Drawbacks of ANN

A
  1. standard backproop with signmoi doesn’t scale well with multiple layers - weights change too slow
  2. Overfitting - lots of parameters, more capable of learning by heart
  3. Require lots of labelled ata
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly