I tried a simple object training with models/research/object_detection/model_main_tf2.py at master · tensorflow/models · GitHub using several pre-trained models and my own images, but after hours of training the learning_rate is zero and loop continues for ever.
So I wonder if the dimensions in the name of models and my images are the problem. Used ssd models:
- ssd_mobilenet_v2_320x320_coco17_tpu-8
- mask_rcnn_inception_resnet_v2_1024x1024_coco17_gpu-8
- centernet_hg104_512x512_coco17_tpu-8
- and other from here models/research/object_detection/g3doc/tf2_detection_zoo.md at master · tensorflow/models · GitHub
As you can see, the models have a dimension on its name. But my images don’t have that dimensions.
So my question is: If the model has 320x320 on its name, Should the images to be used in the training, have that dimension?
Thanks