I want to use tensorrt to convert a tf model to uff.
I got CUDA 9 and cuDNN 7 installed on my x86 Host Machine, i installed TensorRT and pyCuda according to the official installation guide using the debian: http://developer2.download.nvidia.com/compute/machine-learning/tensorrt/secure/3.0/ga/TensorRT-Installation-Guide.pdf?EjPPsmXia1_6e64BqMgr4lvVg5x5wxt4rRsF0xY80vveGy6Vr7Ds6cXBjzwGzTO74mxnw-mXs6LoZpq_1T3cZnlmjXRZuIBRxTtqmS2CN54S6L8lE_LBVOZW2fhnoyaoh-IIgK-vQqoQk8HdehJuFBvTsEZsI_CayclUDD4UmAjLsg2H7yFRKYUDgowx3A
But when i run the Python API i get following Error:
File "/home/gustav/workspace/TensorRT/tf_to_trt.py", line 10, in <module>
import tensorrt as trt
File "/usr/lib/python2.7/dist-packages/tensorrt/__init__.py", line 53, in <module>
from tensorrt import __versions__
ImportError: cannot import name __versions__
Any Solutions to that? Inside the versions file stands following:
'''
Version information for the TensorRT Python API
'''
package_version = '3.0.1'
infer_lib_version = 301
so_version = '4.0.1'
cudnn_version = '7.0'