TensorRT6 does not support ResizeBilinear.

TensorRT6 does not support ResizeBilinear, but you just place it on the guider page ?

Using the following code to reproduce the problem.

# Author: Jiarenyf ...

import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'

import warnings
warnings.filterwarnings(action='ignore', category=FutureWarning)

#---------------------------------------------------------------------

import tensorflow as tf

######################################################################

if __name__ == '__main__':
    with tf.Graph().as_default() as graph:
        t = tf.placeholder(tf.float32, shape=(1,160,160,64), name='input')
        t = tf.image.resize_bilinear(t, (320, 320), name="output")
        tf.io.write_graph(graph, '.', '/dev/shm/error.pb', as_text=False)
        os.system('convert-to-uff /dev/shm/error.pb')

Hi,

This is a duplicate of your other post, please see: https://devtalk.nvidia.com/default/topic/1064929/tensorrt/resizebilinear

Thanks,
NVIDIA Enterprise Support