Custom trained model on Jetson Nano

Hi,

Your ONNX model uses a dynamic shape, but the corresponding information (profile) doesn’t be set.
In general, you don’t need the dynamic shape support if the image size won’t change at runtime.
(it is 1024x1024x3 in your use case)

To avoid the error, please specified the batch size in the ONNX model with the below steps:

Thanks.