Questions tagged [uff]
5 questions
3
votes
1 answer
Converting Tensorflow Frozen Graph to UFF for TensorRT inference
I want to use a tensorflow model with TensorRT (C++) and first need to convert the the .pb to .uff format. When executing this code:
uff_model = uff.from_tensorflow_frozen_model(
frozen_file="my_tf_model.pb",
output_nodes=["output_layer"],
…

Jodo
- 4,515
- 6
- 38
- 50
2
votes
1 answer
No module named 'uff'
Goal :
To convert tensorflow .pb model to tensorrt
System specs :
Ubundu 18.04
Cuda 10.0
TensorRT 5.1
Even Installed sudo apt-get install uff-converter-tf
Error obtained when trying to import uff in Python:
ModuleNotFoundError: No module named…

Sai Krishnadas
- 2,863
- 9
- 36
- 69
1
vote
0 answers
Display the content of an tensorflow UFF model
Is there a way to display the content of an UFF model? I would like to check the dimension and datatype of a particular node inside the UFF model

AAA
- 43
- 5
0
votes
1 answer
Performance drop when converting Mask RCNN to uff format
My goal is to deploy a Mask RCNN model trained with the well known Matterport's repo with Nvidia deepstream.
To do so, first I have to convert the generated .h5 model into a .uff. This operation is decribed here.
After the conversion, I have run the…

Aure
- 31
- 1
- 5
0
votes
0 answers
how to convert uff files to csv?
I have a bunch of uff files and im trying to write a code that opens the file and converts it to csv.
this is my code so far
import pandas as pd
import pyuff as pu
uff_file =…

Blewson
- 1
- 1