Used faster-rcnn to train my model on Google Colab. However, due to the GPU time limit, my model stopped training at 7000 steps out of 10,000 steps.
I used the following code to train the model
!python model_main_tf2.py --model_dir=models/my_faster_rcnn_inception_resnet_v2 --pipeline_config_path=models/my_faster_rcnn_inception_resnet_v2/pipeline.config
How can I resume training my model from the last step (i.e. 7000)?