Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Onnx to mlmodel conversion fails to generate .mlmodel file #564

Open
ghost opened this issue Apr 15, 2020 · 5 comments
Open

Onnx to mlmodel conversion fails to generate .mlmodel file #564

ghost opened this issue Apr 15, 2020 · 5 comments
Labels
awaiting response Please respond to this issue to provide further clarification (status) question Response providing clarification needed. Will not be assigned to a release. (type)

Comments

@ghost
Copy link

ghost commented Apr 15, 2020

I'm trying to convert Pytorch model to MLModel with Onnx.

My code:

import torch
from onnx_coreml import convert
import coremltools

net = BiSeNet(19)
net.cuda()
net.load_state_dict(torch.load('model.pth'))
#net.eval()

dummy = torch.rand(1,3,512,512).cuda()


torch.onnx.export(net, dummy, "Model.onnx", input_names=["image"], output_names=["output"], opset_version=11)

finalModel = convert(model='Model.onnx', minimum_ios_deployment_target='12')
finalModel.save('ModelML.mlmodel')

After the code runs Model.onnx is generated, however, .mlmodel file is not generated. There're no errors in the console.

What could be the issue?

@ghost ghost added the question Response providing clarification needed. Will not be assigned to a release. (type) label Apr 15, 2020
@bhushan23
Copy link
Collaborator

can you try
print(finalModel)
before saving the model? This will help us understand that we indeed have valid mlmodel being converted

@bhushan23 bhushan23 added the awaiting response Please respond to this issue to provide further clarification (status) label Apr 20, 2020
@ghost
Copy link
Author

ghost commented Apr 20, 2020

@bhushan23 I did try print, no output

I also tried this

onnx_model = onnx.load("Model.onnx")
onnx.checker.check_model(onnx_model)
onnx.helper.printable_graph(onnx_model.graph)

Again no output in the console.

I'm running this in Google Collab

@bhushan23
Copy link
Collaborator

@Malemo can you share onnx model?

@ghost
Copy link
Author

ghost commented Apr 21, 2020

Here is the Onnx Model
This is original Pytorch model I'm trying to convert

@bhushan23
Copy link
Collaborator

bhushan23 commented Apr 21, 2020

@Malemo Please reinstall ONNX-CoreML and try
I see following with latest onnx-coreml beta

>>> mlmodel = convert(model='./Model.onnx', minimum_ios_deployment_target='13')
  File "/Users/bhushansonawane/anaconda3/envs/devenv/lib/python3.7/site-packages/onnx_coreml/converter.py", line 500, in convert
    graph = _prepare_onnx_graph(onnx_model.graph, transformers, onnx_model.ir_version)
  File "/Users/bhushansonawane/anaconda3/envs/devenv/lib/python3.7/site-packages/onnx_coreml/converter.py", line 370, in _prepare_onnx_graph
    graph_ = Graph.from_onnx(graph, onnx_ir_version)
  File "/Users/bhushansonawane/anaconda3/envs/devenv/lib/python3.7/site-packages/onnx_coreml/_graph.py", line 234, in from_onnx
    node_ = Node.from_onnx(node)
  File "/Users/bhushansonawane/anaconda3/envs/devenv/lib/python3.7/site-packages/onnx_coreml/_graph.py", line 115, in from_onnx
    attrs = Attributes.from_onnx(node.attribute)
  File "/Users/bhushansonawane/anaconda3/envs/devenv/lib/python3.7/site-packages/onnx_coreml/_graph.py", line 72, in from_onnx
    d[arg.name] = _convertAttributeProto(arg)
  File "/Users/bhushansonawane/anaconda3/envs/devenv/lib/python3.7/site-packages/onnx_coreml/_graph.py", line 48, in _convertAttributeProto
    raise ValueError("Unsupported ONNX attribute: {}".format(onnx_arg))
ValueError: Unsupported ONNX attribute: name: "strides"
type: INTS

Why does it fails?
ONNX model is of opset version 11 (ai.onnx v11)
I would recommend converting to opset version 9 or 10. Support for 11 is not yet added in onnx-coreml.
https://pytorch.org/docs/stable/onnx.html#torch.onnx.export

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
awaiting response Please respond to this issue to provide further clarification (status) question Response providing clarification needed. Will not be assigned to a release. (type)
Projects
None yet
Development

No branches or pull requests

1 participant