You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.
>>> sym, arg_params, aux_params = import_model('modelv3.onnx')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\rokas\AppData\Roaming\Python\Python37\site-packages\mxnet\contrib\onnx\onnx2mx\import_model.py", line 59, in import_model
sym, arg_params, aux_params = graph.from_onnx(model_proto.graph)
File "C:\Users\rokas\AppData\Roaming\Python\Python37\site-packages\mxnet\contrib\onnx\onnx2mx\import_onnx.py", line 114, in from_onnx
inputs = [self._nodes[i] for i in node.input]
File "C:\Users\rokas\AppData\Roaming\Python\Python37\site-packages\mxnet\contrib\onnx\onnx2mx\import_onnx.py", line 114, in <listcomp>
inputs = [self._nodes[i] for i in node.input]
KeyError: 'conv2d3_W_new'
>>>
what can be the problem?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
I converted yolov4 keras model from TensorFlow-2.x-YOLOv3 to .onnx model, everything worked fine. Now following this tutorial https://mxnet.apache.org/versions/1.5.0/tutorials/onnx/super_resolution.html I tried to convert to mx model, and receiving the following error:
what can be the problem?
The text was updated successfully, but these errors were encountered: