TRTEXEC with OCRNet

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 OCRNet, refer to the OCRNet documentation. OCRNet currently does not support INT8 calibration.

Copy
Copied!
            

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

Previous TRTEXEC with OCDNet
Next TRTEXEC with PointPillars
© Copyright 2024, NVIDIA. Last updated on Mar 22, 2024.