How Image Classification Works
The image classification algorithm takes an image as input and classifies it into one
of the output categories. Deep learning has revolutionized the image classification
domain and has achieved great performance. Various deep learning networks such as ResNet
Image classification in Amazon SageMaker can be run in two modes: full training and transfer learning. In full training mode, the network is initialized with random weights and trained on user data from scratch. In transfer learning mode, the network is initialized with pre-trained weights and just the top fully connected layer is initialized with random weights. Then, the whole network is fine-tuned with new data. In this mode, training can be achieved even with a smaller dataset. This is because the network is already trained and therefore can be used in cases without sufficient training data.