UFF for converting TensorFlow v2 models

Trying to export a TensorFlow v2 SegNet model to UFF for input into TensorRT3 but running into issues and wanted to see if anyone else has done this or if there something about the v2 TensorFlow models that causes this to fail.

Hi,

The most common issue is there is some non-supported operation in your model.

You can find the supported layer in our document:
1.1. TensorRT Layers@‘/usr/share/doc/tensorrt’

Thanks.