他的回复:
报错信息为:function的construct中,参数有368个,但只找到了367个,参数不匹配,所以编译失败了。经查看网络定义发现,这个网络的输入为:input 和 input_shape,在脚本调用export接口时,只传入了input,没有传入input_shape,故报错。可以修改为类似这样:`export(network, Tensor(input), Tensor(416, 416, ms.float32), file_name="", file_format="ONNX") `