I have the following frozen inference graph. This is for semantic segmentation using Deeplab (download graph here). I converting this graph to tflite format
tfli
tflite_convert \
--output_file=test2.lite \
--graph_def_file=frozen_inference_graph_3mbvoc.pb \
--input_arrays=sub_2 \
--output_arrays=ResizeBilinear_2 \
--input_shapes=1,450,600,3 \
--inference_input_type=QUANTIZED_UINT8 \
--inference_type=FLOAT \
--mean_values=128 \
--std_dev_values=128
This solved my question