TensorRT 直接支持的model有ONNX、Caffe、TensorFlow,其余常见model建议先转化成ONNX。总结以下:html
1 ONNX(.onnx) python
2 Keras(.h5) --> ONNX(.onnx) (https://github.com/onnx/keras-onnx)git
3 Caffe(.caffemodel)github
4 Darknet(.cfg) --> ONNX(.onnx) (Our tutorial : yolo-v3)api
5 TensorFlow(.uff)网络
2、TensorRT支持的常见运算:ide
Activation(激活函数)、Convolution(卷积运算)、Deconvolution(反卷积运算)、FullConnected(全链接)、Padding(填充)、Pooling(池化)、RNN(递归神经网络)、SoftMax()等。函数
更详细的API可参考:性能
yolo3由CNN网络和detection模块组成,TensorRT只对CNN网络进行Inference加速。即:
TensorRT input is:608*608 image
TensorRT output is:array
(array[0].shape = 255 *19*19、
array[1].shape = 255*38*38、
array[2].shape = 255 *76*76)
具体实现过程:
1 Darknet(.cfg) --> ONNX(.onnx)
2 ONNX(.onnx) --> TensorRT model(.trt)
3 TensorRT加速CNN部分,执行detection模块获得最终结果。
pytorch-yolo3:https://github.com/ayooshkathuria/pytorch-yolo-v3
本项目地址:https://github.com/Cw-zero/TensorRT_yolo3
(注:本项目是对pytorch-yolo3进行改写加速的)
More about TensorRT 可参考官方指导:
原文出处:https://www.cnblogs.com/justcoder/p/10428100.html