Convonet Flashcards

1
Q

What is the curse of dimensionality?

A

Objects of the same “size” will make up less and less of the space as the dimension increase. This can be visualised as a ball inscribed in a cube makes up less and less of the volume as the dimension increases.

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

What is the problem of self-similarity?

A

Different areas in a image might seem the same when viewed out of context.

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

What are the main differences of the Lenet and the Alex net?

A

Lenet:
Tanh
Average pooling
Small filters (5x5

Alexnet:
Relu
Max pooling
Data augmentation
Large filters (11x11)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the ouput size of a concolution layer?

A

1 + (in_size + 2*padding - filter_size) / stride

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

What is the main difference from AlexNet to VGG?

A
Smaller filters (3x3)
Deeper (16 layers)
Uniform architecture (All layers the same).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the main feature of GoogLeNet?

A

Inception blocks, several different convolutions in each block. The network can “learn” which block to use. In addition it uses auxilary training, very small filter sizes , batch normalization.

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

What is the main feature of ResNet?

A

Skip connections, allows gradient propagation trough extremly deep networks.

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