TRTEXEC with Facial Landmarks Estimation

The trtexec tool is a command-line wrapper included as part of the TensorRT samples. TAO 5.0.0 exposes the trtexec tool in the TAO Deploy container (or task group when run via launcher) for deploying the model with an x86-based CPU and discrete GPUs. To run trtexec on other platforms, such as Jetson devices, or with versions of TensorRT that are not used by default in the TAO containers, you can follow the official TensorRT documentation on how to get trtexec.

This section describes how to generate a TensorRT engine using trtexec, which allows you to deploy TAO-trained models on TensorRT, Triton, and Deepstream.

To generate an .onnx file for Facial Landmarks Estimation, refer to the Facial Landmarks Estimation documentation. You can also refer to :the ref:Facial Landmarks Estimation documentation <facial_landmarks_estimation> for instructions on generating an INT8 calibration file.

Copy
Copied!
            

trtexec --onnx=/path/to/model.onnx \ --maxShapes=input_face_images:16x1x80x80 \ --minShapes=input_face_images:1x1x80x80 \ --optShapes=input_face_images:8x1x80x80 \ --calib=/path/to/int8/calib.txt \ --fp16 \ --int8 \ --saveEngine=/path/to/save/trt/model.engine

Previous TRTEXEC with EfficientDet TF1/TF2
Next TRTEXEC with Faster RCNN
© Copyright 2024, NVIDIA. Last updated on Mar 22, 2024.