Where can I find an example, using python, on how to make inference using a .plan or .serialized file?

hi

I am learning to use TensorRT. I already have a .engine file. I cannot use “trtexec” because I am doing a benchmark, so I need to read some parameters from the kernel (ex: temperature in GPU).

Where can I find a good example which teaches me how to make inference using TensorRT with python? Line by line (loading the image, loading the labels, loading the .engine, making preprocessing, etc etc). Is there a book, a course (maybe in Deep Learning Institute)?

Hi,

You can check this example for TensorRT python inference:

Thanks.

1 Like

Hello

I am analyzing the code in your GIT. I have some questions:

Hi again

what is the purpose of the graph surgeon here: https://github.com/AastaNV/TRT_object_detection/blob/master/config/model_ssd_mobilenet_v2_coco_2018_03_29.py

Will I need it with the Inception: v1, v2, v3 and v4 models? Those models are for classifying images.

Hi,

Sorry for the late update

1. The batch size is hardcoded into 1 in this sample.
You can modify it based on your use case here:
https://github.com/AastaNV/TRT_object_detection/blob/master/main.py#L35

2.
Binding is the input/output tensor used by the model.
For example, binding index=0 indicates the input image buffer here.
And index=1 or index=2 represents for output bbox and conf layer.

The batch is affected in the first dimension of the buffer.
For example, the input buffer in this sample is [batch, 3, 300, 300]

3. The python script is used for converting a .pb file into .uff file for TensorRT.
You can find a general script for the conversion here:

/usr/src/tensorrt/samples/sampleUffSSD/config.py

Thanks.