Tensorflow object detection API:Sample program not working as expected

孤人 提交于 2019-12-08 02:54:17

Please try updated SSD models in the detection zoo : https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md. This should be fixed.

It seems that the latest version of the model ssd_mobilenet_v1_coco_2017_11_08 doesn't work and outputs abnormally low value. Replacing it in the Jupyter Notebook with an older version of the model works fine for me:

# What model to download.
MODEL_NAME = 'ssd_mobilenet_v1_coco_11_06_2017'

Ref: https://github.com/tensorflow/models/issues/2773

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!