-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
其他模型可以使用此程序部署到k210吗 #55
Comments
我加载不了模型,是不是内存不够了。这是我转换成kmodel时,显示的 |
我使用yolo-fastestv2跑出来的pth转onnx再转kmodel,使用你的代码在部署模型时,卡在下面加载模型代码这里,是什么原因? /* 初始化 kpu */ |
onnx转成kmodel可以进行量化吗 |
你用的nncase是新版本的吗?加载模型失败可能需要去nncase release里面下载k210 runtime然后替换sdk中的runtime v1. 不过可能是kmodel太大等原因. 用nncase 编译模型的时候只要开启ptq的选项就可以量化了, 不论是onnx还是tflite. |
你这个模型不到1mb, 应该也不是模型太大的问题. 你有尝试过在pc上加载模型进行验证吗? pc上的runtime和210的runtime是一套代码,如果pc上执行没问题, 210有问题,那你可能需要手动编译一下runtime,在load model函数中添加一些print去排查问题. |
我添加printf函数发现是nncase_load_kmodel()函数出问题,重新下载[kendryte-standalone-sdk],可以加载模型了,但是报了一些看不懂的错误,请问一下您知道这是什么原因吗 |
我后天去检查一下问题. |
我重新测试了yolox的例子,但是并没有遇到无法加载的问题.你们使用的sdk是develop分支的吗? |
我使用的sdk版本是develop,onnx量化可以先经过onnxsim简化吗,为什么我量化失败了 |
yolo-fastestv2的检测头将检测框的回归,前景背景的分类以及检测类别的分类解耦成3个不同的特征图,导出onnx时在通道维度合并了,这个有影响吗 |
量化失败的表现是什么? 我之前做过你这样的操作,先合并后处理再从里面切,最后也没有出现很大的精度损失,不过量化的问题最好还是给nncase提个issue. |
您好,我参考您的yolox的conpile再使用onnx-simplifier简化一下可以了,但是部署k210时,在kpu_run_kmodel()报了如下错误,是模型的原因吗
The summary of the compiled model is
|
我使用yolo-faster训练好的模型输出为[1,45,7,10],[1,45,14,20], 可以使用你的程序部署到k210吗
The text was updated successfully, but these errors were encountered: