Supervised deep learning Flashcards

1
Q

What is one distinctive feature of deep neural networks?

A

learning takes place directly on raw data, without any pre-processing or feature selection. The latter are discovered by the network during learning.

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

What are Convolutional Neural Networks composed of?

A

at least one convolutional layer, in which neurons are not fully connected with the preceding layer but have local receptive fields
The convolutional layer is followed by a pooling layer
In the deepest part of the network there is at least one “standard” hidden layer, that is a layer that is fully connected with the preceding one

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

What is the role of the pooling layer?

A

to reduce the dimensionality of the image (max pooling operation). This reduces the number of parameters, controlling overfitting and promoting invariance (e.g. traslation)

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

What do the neurons in the convolutional layer have?

A

Each hidden neuron of the convolutional layer has a local receptive field (filter) which encodes a specific feature

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