我正在运行带有Tensorflow对象检测API(object_detection_tutorial.ipynb)的示例程序。 程序运行正常,没有错误,但边界框根本没有显示。
我的环境如下:
Windows 10
Python 3.6.3
可能是什么原因?
关于
和Manish
答案 0 :(得分:1)
似乎最新版本的模型ssd_mobilenet_v1_coco_2017_11_08
无法正常工作并输出异常低的值。使用旧版本的模型在Jupyter笔记本中替换它对我来说很好:
# What model to download.
MODEL_NAME = 'ssd_mobilenet_v1_coco_11_06_2017'
答案 1 :(得分:0)
请在检测动物园中尝试更新的SSD模型:https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md。这应该是固定的。