This notebook is best used on google colab for a free GPU.
It runs through how to create a very accurate flower classifier using transfer learning & training data augmentation on tensorFlow.
-
We download a flowers dataset and mobileNetv2 from google.
-
Next we split the dataset into training and validation sets.
-
We create a generator that will randomly rotate, zoom, flip and shift the training data as it goes into the model for training.
-
We initialise a new model by creating a softmax layer at the end of mobileNet with the number of classes in the flower dataset.
-
We train the model.
-
Plot the results.