Is it possible to use the Faster RCNN models from the object detection model zoo as in this sample?
Could you provide a config.py file that maps the layer in the graphs to the correct plugins?
Thanks.
I have already posted this on the forums. Still no answer…
I would like to add to this question:
If I wanted to use this tensorRT implementation with Python, is the only approach still to use SWIG to create a wrapper around this FasterRCNN engine?
I don’t know what your specific use case is but, in general, you don’t need SWIG to use the engine.
Check the example engine_refit_mnist in /usr/src/tensorrt/samples/python
Your pipeline should be:
frozen_graph ----> uff -----> engine -----> inference in python with engine
The problem is in the first step, as FasterRCNN is not fully supported yet.
@SunilJB is there any official examples of this besides the ones that were talked about earlier ? Or should I just look at the tensorrt examples in the latest install?