Chapter 8 covers
- Understanding convolutional neural networks (convnets)
- Using data augmentation to mitigate overfitting
- Using a pretrained convnet to do feature extraction
- Fine-tuning a pretrained convnet
- Visualizing what convnets learn and how they make classification decisions
MNIST again
- Eariler, using a feed forward neural network, the accuracy was 97.8%
- Now, using a convolutional neural network, the accuracy can be improved, beyond 99%.
Convnets work locally
What is the difference between a densely connected layer and a convolution layer?
- Dense layers learn global patterns in their input feature space
- Convolution layers learn local patterns
Convnets have an interesting property