C3W2 Flashcards

1
Q

Train-dev set

A

Portion of train set which comes from the same distribution as dev set

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

What to do when overfitting to the dev set?

A

Get bigger dev set

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

What is data mismatch?

A

When your dev and test sets come from different distribution, and that’s why you model performs bad on the dev/set

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

Transfer learning with small dataset

A

Retrain just last layer

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

Transfer learning with large dataset

A

Retrain hidden layers as well as output layer

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

What is pretraining/fine tuning

A

Pre-training - train on unrelated data
Fine tuning - train on target data

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

When transfer learning makes sense?

A

When you have large data from the problem you transferring from, and less data for the problem you transferring to

When task A and B have the same input

Low level feature from A may help B

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

When use Multi task learning

A

Training in a set of tasks that could benefit from sharing low level features

You have similar amount of data for each task (especially small amount)

Can train big enough neural network

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

What is end to end learning?

A

Bypass intermediate steps in learning
You need large dataset for this

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

Types of layers in ConNet?

A

Convolutional
Pooling
Fully connected

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

What is pooling layer and when to use it?

A

Divide image pixels into equal regions and take max from each region.
It has 2 parameters, but gradient decent doesn’t learn anything

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

What is average pooling?

A

Take average of the image regions

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

Hyper parameters for pooling(max/average)?

A

F - filter size
S - stride (step)

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

What is fully connected layer?

A

When you connect layer to another layer with less neurons

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