LeNet is a popular architectural pattern for implementing CNN. In this chapter, we shall learn to build CNN model based on LeNet pattern by creating the layers in the following sequence:
- The input layer
- The convolutional layer 1 that produces a set of feature maps, with ReLU activation
- The pooling layer 1 that produces a set of statistically aggregated feature maps
- The convolutional layer 2 that produces a set of feature maps, with ReLU activation
- The pooling layer 2 that produces a set of statistically aggregated feature maps
- The fully connected layer that flattens the feature maps, with ReLU activation
- The output layer that produces the output by applying simple linear activation
LeNet family of models ...