This document provides an overview of three practical deep learning examples using MATLAB:
1. Training a convolutional neural network from scratch to classify handwritten digits from the MNIST dataset, achieving over 99% accuracy after adjusting the network configuration and training options.
2. Using transfer learning to retrain the GoogLeNet model on a new food classification task with only a few categories, reconfiguring the last layers and achieving 83% accuracy on the new data.
3. An example of applying deep learning techniques for image classification to signal data classification.
The examples demonstrate different approaches to training deep learning networks: training from scratch, using transfer learning, and training an existing network for a new task. All code and