Detectnet model

How to find the execution time of the model.
And detectnet model uses some labels by default. Is it possible to add new labels. If so how can we add those

Hi,

You can get the detailed execution time with our trtexec app:

/usr/src/tensorrt/bin/trtexec --deploy=[your/prototxt]

To add a new label, indicating you want the model to recognize one more class type.
So you will need to retrain the detectnet with the dataset including the new object image.

Here is a training tutorial of ResNet-18 and SSD-Mobilenet for your reference:

Thanks.