Squeeze not supported yet!
作者:互联网
解决onnx转ncnn时Squeeze not supported yet!
出现这个问题是ncnn不支持squeeze操作导致的,
第一步做法:参考https://github.com/daquexian/onnx-simplifier尝试解决,安装后,命令:
python -m onnxsim ./your_model.onnx ./your_model_sim.onnx
如果上面的做法解决不了你的问题,你需要修改你的网络结构的代码,
以pytorch为例:
如果你的某层网络输出数据维度是(1,1280,1,1)接下来需要变为(1,1280)
你的代码是这样写的
x=x.squeeze(-1).squeeze(-1)
只需要改为
x.view(size(1), -1)
其他的情况以此类推。
标签:squeeze,onnx,supported,yet,Squeeze,your 来源: https://blog.csdn.net/weixin_42464187/article/details/100578719