I am retraining InceptionV3 model on 200 images and I am using Adam optimiser:
opt = Adam(lr=0.0001, decay=0.0001 / 100)
I noticed the loss bounces specially the validation. I thought that is down to the learning rate as I saw in some answers like Transfer Learning - Val_loss strange behaviour, and also Why is it possible to have low loss, but also very low accuracy, in a convolutional neural network? they were not helpful.
so I used RMSprop, but I had the same behaviour. Here is how the performance looks like:
Any suggestions why am I experiencing this and how to tackle it?