ONNX Not Implemented Error: Operator Squeeze not implemented

I’m trying to use the onnx_mxnet package to import an ONNX model to MXNet (python interface).
While doing so, I get the following error:
“NotImplementedError: Operator Squeeze not implemented”

The funny thing is that when I’m using the “onnx_caffe2” package to import the same model to Caffe2, it works.

There’s a related Github issue that has been resolved. The Squeeze operator has been implemented as of

See the issue for more details

Vishaal