Python Version (if applicable): TensorFlow Version (if applicable): PyTorch Version (if applicable): Baremetal or Container (if container which image + tag):
Hi,
Request you to share the ONNX model and the script if not shared already so that we can assist you better.
Alongside you can try few things:
validating your model with the below snippet
check_model.py
import sys
import onnx
filename = yourONNXmodel
model = onnx.load(filename)
onnx.checker.check_model(model).
2) Try running your model with trtexec command. https://github.com/NVIDIA/TensorRT/tree/master/samples/opensource/trtexec
In case you are still facing issue, request you to share the trtexec “”–verbose"" log for further debugging
Thanks!
thanks for your response ! I did share the links of log, the model earlier. Please find them my_model.onnx - Google Drive trt.log - Google Drive
Inference from the onnxmodel works fine.
The following snippet outputs
input.1
input shape [1, 3, 512, 512]
output name 1349
The main reason for this issue is TRT currently does not support INT32 types for the NEG operator. Fix for this will be available soon in future releases.