caffer转onnx
1. Ubantu18.04配置caffer
Ubuntu 17.04以上的系统全都包含了所有的依赖而且直接提供了编译好的Caffe,只需要一行代码即可: sudo apt install caffe-cuda
但是期间会踩一些坑:
1.ModuleNotFoundError: No module named ‘caffe’
这种情况一般是没有把caffe中的和python相关的内容的路径添加到python的编译路径中
解决方案 : https://zhuanlan.zhihu.com/p/37805085
http://t.zoukankan.com/geoffreyone-p-10998377.html
2.ModuleNotFoundError: No module named ‘caffe._caffe’
这种情况是由于python环境导致,可以将级到3.6
解决方案:https://blog.csdn.net/zizhenta0169/article/details/82984259
3.ImportError: cannot import name ‘_validate_lengths’ from 'numpy.lib.arraypad’
这种情况一般是由于Numpy版本太高导致,尝试卸载numpy并安装低版本。但由于一直time out 所以另得一法。
解决方案:https://blog.csdn.net/weixin_44019809/article/details/104377233
2.caffer2onnx
直接赋上大佬的github: https://github.com/inisis/caffe2onnx
但是在使用argparse参数列表时,某个参数指定了默认值,仍显示:error: the following arguments are required,需要在参数名前加 –
如下:
parser.add_argument(
“–caffe_proto_file”, default=“/home/wqp/Downloads/Rect_Sign_Net_Stage1.prototxt”, action=“store”, help=“Caffe prototxt file”
)