Hi,
Sorry if I didn’t mention this.
There are one plugin required by the ssd_mobilenet called FlattenConcat.
You can find it in our TensorRT sample: /usr/src/tensorrt/samples/python/uff_ssd
You can build it with the following command:
mkdir build
cd build
cmake ..
make
You will have the libflattenconcat.so library inside the build folder.
Then add the path into your python script:
ctypes.CDLL("/path/to/the/libflattenconcat.so")
Thanks.