onnx-coreml icon indicating copy to clipboard operation
onnx-coreml copied to clipboard

ValueError: Unsupported ONNX attribute: name: "body"

Open zlinwei opened this issue 6 years ago • 1 comments

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)

zlinwei avatar Aug 10 '19 15:08 zlinwei

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

bhushan23 avatar Sep 05 '19 23:09 bhushan23