TAO Converter with Classification TF1/TF2
The tao-converter
tool is provided with the TAO Toolkit
to facilitate the deployment of TAO trained models on TensorRT and/or Deepstream.
This section elaborates on how to generate a TensorRT engine using tao-converter
.
For deployment platforms with an x86-based CPU and discrete GPUs, the tao-converter
is distributed within the TAO docker. Therefore, we suggest using the docker to generate
the engine. However, this requires that the user adhere to the same minor version of
TensorRT as distributed with the docker. The TAO docker includes TensorRT version 8.0.
For an x86 platform with discrete GPUs, the default TAO package includes the tao-converter
built for TensorRT 8.2.5.1 with CUDA 11.4 and CUDNN 8.2. However, for any other version of CUDA and
TensorRT, please refer to the overview section for download. Once the
tao-converter
is downloaded, follow the instructions below to generate a TensorRT engine.
Unzip the zip file on the target machine.
Install the OpenSSL package using the command:
sudo apt-get install libssl-dev
Export the following environment variables:
$ export TRT_LIB_PATH=”/usr/lib/x86_64-linux-gnu”
$ export TRT_INC_PATH=”/usr/include/x86_64-linux-gnu”
Run the
tao-converter
using the sample command below and generate the engine.
Make sure to follow the output node names as mentioned in Exporting the Model
section of the respective model.
For the Jetson platform, the tao-converter
is available to download in the NVIDIA developer zone. You may choose
the version you wish to download as listed in the overview section.
Once the tao-converter
is downloaded, please follow the instructions below to generate a
TensorRT engine.
Unzip the zip file on the target machine.
Install the OpenSSL package using the command:
sudo apt-get install libssl-dev
Export the following environment variables:
$ export TRT_LIB_PATH=”/usr/lib/aarch64-linux-gnu”
$ export TRT_INC_PATH=”/usr/include/aarch64-linux-gnu”
For Jetson devices, TensorRT comes pre-installed with Jetpack. If you are using older JetPack, upgrade to JetPack-5.0DP.
Run the
tao-converter
using the sample command below and generate the engine.
Make sure to follow the output node names as mentioned in Exporting the Model
section of the respective model.
tao-converter [-h] -k <encryption_key>
-d <input_dimensions>
-o <comma separated output nodes>
[-c <path to calibration cache file>]
[-e <path to output engine>]
[-b <calibration batch size>]
[-m <maximum batch size of the TRT engine>]
[-t <engine datatype>]
[-w <maximum workspace size of the TRT Engine>]
[-i <input dimension ordering>]
[-p <optimization_profiles>]
[-s]
[-u <DLA_core>]
input_file
Required Arguments
input_file
: The path to the.etlt
model exported usingexport
-k
: The key used to encode the.tlt
model when training-d
: A comma-separated list of input dimensions that should match the dimensions used fortao classification export
. Unliketao classification export
, this cannot be inferred from calibration data. This parameter is not required for new models introduced in TAO Toolkit 3.0-21.08 (for example, LPRNet, UNet, GazeNet, etc).-o
: A comma-separated list of output blob names that should match the output configuration used fortao classification export
. This parameter is not required for new models introduced in TAO Toolkit v3.0 (for example, LPRNet, UNet, GazeNet, etc). For classification, set this argument topredictions/Softmax
.
Optional Arguments
-e
: The path to save the engine to. The default value is./saved.engine
.-t
: The engine data type; this argument generates a calibration cache if in INT8 mode. The default value isfp32
. The options are {fp32
,fp16
,int8
}.-w
: The maximum workspace size for the TensorRT engine. The default value is1073741824(1<<30)
.-i
: The input dimension ordering, all other TAO commands use NCHW. The default value isnchw
. The options are {nchw
,nhwc
,nc
}. For classification, it can be omitted (defaults tonchw
).-p
: Optimization profiles for.etlt
models with dynamic shape. The argument format is a comma-separated list of optimization profile shapes in the format<input_name>,<min_shape>,<opt_shape>,<max_shape>
, where each shape has the format<n>x<c>x<h>x<w>
. This argument can be specified multiple times if there are multiple input tensors for the model. This is only useful for new models introduced in TAO Toolkit v3.0.-s
: A Boolean to apply TensorRT strict type constraints when building the TensorRT engine.-u
: Specifies the DLA core index when building the TensorRT engine on Jetson devices.
INT8 Mode Arguments
-c
: The path to the calibration cache file. This argument is only used in INT8 mode. The default value is./cal.bin
.-b
: The batch size to use during the export step for INT8 calibration cache generation. The default value is 8.-m
: The maximum batch size for the TensorRT engine. The default value is 16. If you encounter an out-of-memory issue, decrease the batch size accordingly. This parameter is only useful for.etlt
models generated with static shape.
Sample Output Log
Here is a sample log for converting a classification model.
tao-converter /ws/export/final_model.etlt
-k $KEY
-c /ws/export/final_model_int8_cache.bin
-o predictions/Softmax
-d 3,224,224
-i nchw
-m 64 -t int8
-e /ws/export/final_model.trt
-b 64
[INFO] Some tactics do not have sufficient workspace memory to run. Increasing workspace size may increase performance, please check verbose output.
[INFO] Detected 1 inputs and 1 output network tensors.