dai-ichiro commented on issue #20769:
URL:
https://github.com/apache/incubator-mxnet/issues/20769#issuecomment-988572747
super_resolution.onnx has no opset because it is too old.
```
import onnx
from mxnet.contrib.onnx.onnx2mx.import_onnx import GraphProto
graph = GraphProto()
model_proto = onnx.load_model('super_resolution.onnx')
sym, arg, aux = graph.from_onnx(model_proto.graph, opset_version=10)
```
10 is dummy number.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]