# 整体流程 ## 1.Pytorch->TensorRT ```shell python export.py --weights "torch权重路径" --onnx2trt --fp16_trt ``` ## 2.TensorRT推理 ```shell python torch2trt/main.py --trt_path "trt权重路径" ``` 图像预处理 -> TensorRT推理 -> 可视化结果 # 耗时对比 | | Pytorch(ms) | TensorRT_FP16(ms) | |:---:|:----:|:----:| | yolov5n-0.5 | 7.7 | 2.1 | | yolov5n-face | 7.7 | 2.4 | | yolov5s-face | 5.6 | 2.2 | | yolov5m-face | 9.9 | 3.3 | | yolov5l-face | 15.9 | 4.5 | > Pytorch=1.10.0+cu102 TensorRT=8.2.0.6 Hardware=rtx2080ti ```shell python torch2trt/speed.py --torch_path "torch权重路径" --trt_path "trt权重路径" ``` # 可视化
yolov5n-0.5 | yolov5n-face |
---|---|
yolov5s-face | yolov5m-face | yolov5l-face |
---|---|---|