Regularization Flashcards

1
Q

What is overfitting?

A

occurs when a model performs well on training data but not on new inputs

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

What is dropout?

A

regularization technique that randomly removes nodes and their connections at every iteration, resulting in different sets of outputs and better generalization

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

What problem does regularization solve in deep learning?

A

Improving model performance using training data AND new test data as the most common problem in deep learning is overfitting

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

What are the different approaches to addressing overfitting?

A
  1. Dropout
  2. Augmentation
  3. Early Stopping
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How does the dropout approach work?

A

At every iteration it randomly selects some nodes and removes them along with their incoming and outgoing connections

key points: each iteration has a different set of nodes and this results in a different set of outputs

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

Why do dropout models perform better?

A

Captures more randomness and memorizes less of the training data which will lead to better generalizations and build a more robust predictive model

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

How can dataset augmentation help train better models?

A

More data = better models and so by adding fake data you can synthesize more data by applying transformations on the existing dataset to synthesize more data

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

What classification problem does dataset augmentation help the most with?

A

Object recognition because images are high dimensional and include an enormous range of factors of variation which many can be simulated

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

Describe the concept of “early stopping”

A

Involves stopping training when the error on the validation set starts to increase, leading to a model with better validation and test set error

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