inception_model = tf.keras.applications.InceptionV3(input_shape=(180,180,3), include_top=False)
- Print the model: inception_model.summary()
- Unfreeze the last Inception module (starting at layer mixed9)
- Start with an input layer
- Then add a rescalling layer: tf.keras.layers.Rescaling(1./255)
- Then add the inception model and then classifying layers
- Train for 30 or more epochs
- Experiment with hyperparameters (augmentation, size of classification layers, ...)
- You can also unfreeze another module starting at layer mixed8
- You should obtain validation accuracy better than with VGG16 (i.e., about 0.99)