Image Classification Flashcards
What can the convolutional process be considered as?
could be considered as acting an image convolution and the convolutional layer is the convolution output of the previous layer
Where does the trainable filter lie?
from the input layer to hidden layer
What could the trainable filter be considered as?
a feature map with shared weights and bias
How is a DCN-like architecture trained?
trained in an unsupervised manner to learn hierarchical sparse features that were locally invariant to small shifts and distortions
What do DCN’s use?
3 or more convolutional layers where each layer is responsible for extracting one or more feature of the image.
What is max pooling?
Max pooling is used between convolutional layers to reduce the dimensions of an image by taking the maximum pixel value of a grid
Why is max pooling useful?
reduce overfitting and makes the model more generic
What other layers to DCN’s have after convolutional layers?
connected layers between input and output layers to ensure the dimensional outputs are correct
What do convolutional neural networks consist of?
Convolutional Layer, Pooling Layer and Fully-Connected Layer
What are the 2 main process of CNN’s and where do they occur?
convolution and sampling, which will happen on convolutional layers and max pooling layers
What is convolution?
Every neuron takes inputs from a rectangular n × n section of the previous layer, the rectangular section is called local receptive field
Why can the parameters of CNN training equation be viewed as a trainable filter?
Since the every local receptive field takes same weights wr,c and biases b from the equation above, the parameters could be viewed as a trainable filter or kernel F
Where does the sampling process happen?
between convolutional layer and pooling layer
What does the pooling layer do?
takes small rectangular blocks from the convolutional layer and subsamples it
What can we consider as the output to the pooling layer?
the maximum of the block as the single output to pooling layer