Hi , I did the following conversion on my model : keras(.h5) -----> tensorflow(.pb) ----->ONNX(.onnx) and now I want to build tensorRT engine for this ONNX model , I’m new in this case so I appreciate it if you give me a simple solution . thanks
Hi,
You can find a python example in the below topic:
Or you can run the inference with our trtexec binary directly.
/usr/src/tensorrt/bin/trtexec --onnx=[your/.onnx]
Thanks.