Hi
I have been trying to create a uffparser to parse the uff file created from tensorflow frozen model and i’m getting this error for the code I’m using
parser = uffparser.create_uff_parser()
parser.register_input(INPUT_LAYERS[0], (1,28,28), 0)
parser.register_output(OUTPUT_LAYERS[0])
Error:
“NameError: name ‘uffparser’ is not defined”
I couldn’t import uffparser from tensorrt.parsers as well
Any suggestions on this please…
Thanks in advance