Allwinraj A
Results
2
comments of
Allwinraj A
@chuqingq I can convert the resnet50 model using below code. ` import numpy as np import mxnet mx_symbol = 'params/1.0000-imagenet-resnet18_v1-symbol.json' mx_params = 'params/1.0000-imagenet-resnet18_v1-0001.params' onnx_file = 'modelresnet.onnx' input_shapes = [(1, 3,...
@chuqingq Did you try with import onnxruntime sess = onnxruntime.InferenceSession('model.onnx') instead of using from mxnet.contrib.onnx.onnx2mx.import_model import import_model Onnxruntime worked for me