onnx / onnx-coreml

ONNX to Core ML Converter
MIT License
394 stars 80 forks source link

ValueError: Unsupported ONNX attribute: name: "body" #443

Open zlinwei opened 5 years ago

zlinwei commented 5 years ago

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)
bhushan23 commented 5 years ago

attribute body is present in ONNX op loop which is currently not supported by onnx-coreml