A deep convolutional neural network (DCNN) consists of many neural network layers. Two different types of layers, convolutional and pooling, are typically alternated. The depth of each filter increases from left to right in the network. The last stage is typically made of one or more fully connected layers:
There are three key intuitions beyond ConvNets:
- Local receptive fields
- Shared weights
- Pooling
Let's review them.