OpenVINO执行脚本demo_squeezenet_download_convert_run.bat报错

Error1

错误提示:requests.exceptions.ConnectionError: HTTPSConnectionPool(host=‘http://raw.githubusercontent.com‘, port=443)、HTTPSConnection object at 0x7f497ad085f8>: Failed to establish a new connection: [Errno 111] Connection refused’,))

解决方案:切换网络,比如使用个人热点,但这种方法并不高效,但鼓励大家尝试。因此参考下面error2的解决方案


Error2

错误提示:C:\Program Files (x86)\Intel\openvino_2021\deployment_tools\open_model_zoo\models\public\squeezenet1.1文件夹中不存在"squeezenet1.1.caffemodel"这一模型文件

原因:受限于国内网络环境,模型很难下载

解决方案:首先打开该脚本文件,用::注释第102行,如下:

::python "%downloader_dir%\downloader.py" --name "%model_name%" --output_dir "%models_path%" --cache_dir "%models_cache%"

然后去我的网盘下载这个模型文件,放到对应的squeezenet1.1文件夹中。

链接:https://pan.baidu.com/s/1_Six56Raw9rPinvVBYsBQg

提取码:2402


Error3

错误提示:C:\Users\19749\Documents\Intel\OpenVINO\openvino_models\ir\public\squeezenet1.1\FP16\squeezenet1.1.xml cannot be opened!

解决方案:

正常情况下FP16是一个文件夹,这里对squeezenet来说,它包含了squeezenet1.1.xml以及squeezenet1.1.bin等文件。出现这种情况是因为FP16不再是一个文件夹,所以直接删除就好啦!


总结

原则就是“缺啥补啥,缺哪补哪”。所以如果缺少squeezenet1.1.prototxt文件的话,你也知道该怎么做啦,我的网盘已经为你准备好啦!

希望以上方法对你有所帮助~笔芯

你可能感兴趣的:(OpenVINO学习笔记,openvino,人工智能,深度学习)