Convert onnx to tensorrt

Please provide complete information as applicable to your setup.

• Hardware Platform (Jetson / GPU) GPU
• DeepStream Version 5.0.1
• TensorRT Version 7.1.3
• NVIDIA GPU Driver Version (valid for GPU only) CUDA 102
Hi,
I am trying to convert onnx to tensorRT by command
/usr/src/tensorrt/bin/trtexec --onnx=model.onnx --batch=1 --saveEngine=model.engine

However, I am facing a problem like bellow:


Are you know that why? and how can i fix it?
Thanks a lot.

Hi,

No importer registered for op: CTCBeamSearchDecoder.

This error indicates that there is a non-supported layer inside your model.
You can implement it as a plugin and add it to the TensorRT plugin library.

Thanks.