pytorch转onnx: step = 1 is currently not supported以及Exporting the operator silu to ONNX opset version
1.在yolov5s的pytorch模型转换onnx模型时报如下错误:RuntimeError:step!=1iscurrentlynotsupported原因主要是低版本的opset不支持切片操作导致的;把模型转换的代码改成如下所示即可,即使用版本11以上的opset:torch.onnx.export(model,img,"xxx.onnx",verbose=True,opset_versio