You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
我已经搜索过问题,但是没有找到解答。I have searched the question and found no related answer.
请提出你的问题 Please ask your question
当前我有一个已经训练好的PPyoloe-SOD模型,需要部署到边缘端设备上。但在执行pdmodel-onnx-om这条模型转换路径时,pdmodel中自带的模型后处理相关算子在转换时有较大的精度损失,所以当前需要搭配出一个不包含后处理或NMS的pdmodel。此前尝试过在使用-exclude_nms参数。现在我在runtime.yml文件中,发现以下几个参数:
export:
post_process: False # Whether post-processing is included in the network when export model.
nms: False # Whether NMS is included in the network when export model.
benchmark: False # It is used to testing model performance, if set True, post-process and NMS will not be exported.
fuse_conv_bn: False
问题确认 Search before asking
请提出你的问题 Please ask your question
当前我有一个已经训练好的PPyoloe-SOD模型,需要部署到边缘端设备上。但在执行pdmodel-onnx-om这条模型转换路径时,pdmodel中自带的模型后处理相关算子在转换时有较大的精度损失,所以当前需要搭配出一个不包含后处理或NMS的pdmodel。此前尝试过在使用-exclude_nms参数。现在我在runtime.yml文件中,发现以下几个参数:
export:
post_process: False # Whether post-processing is included in the network when export model.
nms: False # Whether NMS is included in the network when export model.
benchmark: False # It is used to testing model performance, if set
True
, post-process and NMS will not be exported.fuse_conv_bn: False
请问一下post_process与nms是包含关系吗?这两个参数是否与-exclude_nms等同?
以及,我在去除模型中的后处理部分后,其对应的后处理代码实现有现成的吗?
The text was updated successfully, but these errors were encountered: