The purpose of this notebook is to classify images of food into 101 categories.
The paper we will try to follow is Food-101 – Mining Discriminative Components with Random Forests
This notebook was inspired by Daniel Bourke's version
- We will be developing our model in TensorFlow.
- The first layer will be a pretrained EfficientNet with all the layers frozen.
- This is followed by a softmax with 101 classes.
- After training the model we will unfreeze the last 5 layers of the EfficientNet layer and train it again.