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 was archived by the owner on Nov 17, 2023. It is now read-only.
When trying to convert yolov3_mobilenetv1.0_coco pretrained from gluonCV v0.5 to ONNX via onnx_mxnet.export_model (using mxnet-cu90mkl==1.5.0b20190313 ), I get the following error:
/anaconda3/lib/python3.7/site-packages/mxnet/contrib/onnx/mx2onnx/_op_translations.py in convert_slice_axis(node, **kwargs)
1320 axes = int(attrs.get("axis"))
1321 starts = int(attrs.get("begin"))
-> 1322 ends = int(attrs.get("end", None))
1323 if not ends:
1324 raise ValueError("Slice: ONNX doesnt't support 'None' in 'end' attribute")
ValueError: invalid literal for int() with base 10: 'None'
When trying to convert
yolov3_mobilenetv1.0_cocopretrained from gluonCV v0.5 to ONNX viaonnx_mxnet.export_model(using mxnet-cu90mkl==1.5.0b20190313 ), I get the following error:This matches this line which is a bug introduced in #12878 .