TenosrRT 6.0.1 - UFF parser ResizeBilinear not supported

I have converted my frozen_graph.pb into UFF model format using convert_to_uff.py script. Now, when I want to run inference either through python script programmatically or using the trtexec binary, I am getting

[E] [TRT] UffParser: Validator error: MyNetowrk/resize_4/ResizeBilinear: Unsupported operation _ResizeBilinear

https://docs.nvidia.com/deeplearning/sdk/tensorrt-support-matrix/index.html#supported-ops

It says that ResizeBilinear is supported, or I am wrong something?

edit: I found now that it is not supported with UFF parser, so I have to switch to ONNX.

Hi,

The UFF parser does not support the ResizeBilinear op.

You can either try to use TF-TRT (Accelerating Inference In TF-TRT User Guide :: NVIDIA Deep Learning Frameworks Documentation), or TF-ONNX+ONNX Parser (GitHub - onnx/tensorflow-onnx: Convert TensorFlow, Keras, Tensorflow.js and Tflite models to ONNX) instead of the UFF Parser for converting your model to TensorRT.

Thanks