How to convert a Mxnet model to tensorRT uff format

Hi Dear,

As the topic title, I have trained a model with mxnet and want to accelerate with tensorRT. the question is how do I convert it to uff format?

BR,
Michael

Hi,
We are deprecating Caffe Parser and UFF Parser in TensorRT 7. They will be tested and functional in the next major release of TensorRT 8.

Hence will recommend to convert your model to ONNX instead and then convert to TensorRT using ONNX parser. Any layer that are not supported needs to be replaced by custom plugin.

https://github.com/onnx/onnx-tensorrt/blob/master/operators.md

Thanks