Convonet Flashcards
What is the curse of dimensionality?
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.
What is the problem of self-similarity?
Different areas in a image might seem the same when viewed out of context.
What are the main differences of the Lenet and the Alex net?
Lenet:
Tanh
Average pooling
Small filters (5x5
Alexnet: Relu Max pooling Data augmentation Large filters (11x11)
What is the ouput size of a concolution layer?
1 + (in_size + 2*padding - filter_size) / stride
What is the main difference from AlexNet to VGG?
Smaller filters (3x3) Deeper (16 layers) Uniform architecture (All layers the same).
What is the main feature of GoogLeNet?
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.
What is the main feature of ResNet?
Skip connections, allows gradient propagation trough extremly deep networks.