I followed the following Tensorflow tutorial to retrain the Inception V3 on my own classes.
https://www.tensorflow.org/hub/tutorials/image_retraining
Everything worked well so far and I got an acceptable final test accuracy. However, I want to improve the result by increasing the training the steps. I trained the model for 4000 steps and I want to increase it to 8000 steps. How can I do that without starting the training all over again?
I have read so many documents about saving and restoring checkpoints but I could not understand how to use them. Should I modify the retain.py to allow continuation of the training? If yes, how can I do so?
Thank you for your help!
As explained in this link,
To achieve this, run the command,
python retrain.py --image_dir ~/flower_photos --how_many_training_steps 8000
If you want to get the list of all the available parameters run the command,
python retrain.py -h
. Below mentioned is the list.