Exporting Tensorflow models to Jetson Nano

Hi,

The model uses dynamic input, and it’s recommended to set it to fix if you don’t need it.
You can specify the dimension directly through the ONNX Graphsurgeon API shared above.

For example:

...
input = graph.inputs[0]
input.shape = [1, 3, 512, 512]
...

Thanks.