我想优化我的神经网络(来自 Google 的 Resnet101)以使用 TensorRT(版本 5.1)进行推理。我一直在寻找如何做到这一点的博客和教程,并找到了一些类似这里的东西和其他一些东西。他们都有一个共同点:
trt_graph = trt.create_inference_graph(
getNetwork(network_file_name),
outputs,
max_batch_size=batch_size,
max_workspace_size_bytes=workspace_size,
precision_mode=”INT8")
但问题是我的TensorRT版本没有这个功能。我得到如下输出。
Python 3.6.6 |Anaconda custom (64-bit)
>>> import tensorrt as trt
>>> trt.__version__
5.1.2.2
>>> trt.create_inference_graph()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: module 'tensorrt' has no attribute 'create_inference_graph'
有谁知道该功能是否在 TensorRT 5.1 版中被其他功能替换?如何运行它?