onnx-coreml
onnx-coreml copied to clipboard
ValueError: Unsupported ONNX attribute: name: "body"
I download the yolov3.onnx from onnx's model zoo, then I got this exception, here is my code:
import onnx
import onnx_coreml
if __name__ == "__main__":
model = onnx.load('yolov3.onnx')
cml = onnx_coreml.convert(model)
attribute body is present in ONNX op loop which is currently not supported by onnx-coreml