Description
I am trying to convert pb file of ReidentificationNet Model to uff file to run it on deepstream 6.2.
The idea is to run NvDeepSORT tracker with the deepstream app. For that I’ve installed tensorflow to convert pb model to uff format according to instruction provided by deepstream. However, when I run the below convert.py file, I got the following error.
Traceback (most recent call last):
File "convert.py", line 17, in <module>
import graphsurgeon as gs
ModuleNotFoundError: No module named 'graphsurgeon'
Even though graphsurgeon is pre-built with tensorRT in the Jetpack versions, I am confused that why is this error coming. What could be the issue?
Environment
TensorRT Version:8.5.2.2
Device Type: Nvidia Jetson Xavier NX
CUDA Version: 11.4.315
CUDNN Version: 8.6.0.166
Operating System + Version: Jetpack 5.1.2
Python Version (if applicable): 3.8.10
TensorFlow Version (if applicable): 2.12
Relevant Files
convert.txt (2.9 KB)
I was following instructions from this file:
README.txt (3.1 KB)