Tensorflow object detection API:Sample program not working as expected

强颜欢笑 提交于 2019-12-08 03:27:59

问题


I am running sample program which comes packaged with Tensorflow object detection API(object_detection_tutorial.ipynb). Program runs fine with no error, but bounding boxes are not diaplayed at all.

My environment is as follows:

Windows 10

Python 3.6.3

What can be the reason?

With regards

Manish


回答1:


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.




回答2:


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



来源:https://stackoverflow.com/questions/47238592/tensorflow-object-detection-apisample-program-not-working-as-expected

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