From 8b616af63a8b07a82caa938ba409e917853b5555 Mon Sep 17 00:00:00 2001 From: Alexey S Date: Tue, 4 Oct 2022 18:53:54 +0300 Subject: [PATCH] Update README.md (#850) --- deploy/triton-inference-server/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deploy/triton-inference-server/README.md b/deploy/triton-inference-server/README.md index 22b01e3..13af4da 100644 --- a/deploy/triton-inference-server/README.md +++ b/deploy/triton-inference-server/README.md @@ -11,6 +11,9 @@ There are no additional dependencies needed to run this deployment, except a wor See https://github.com/WongKinYiu/yolov7#export for more info. ```bash +#install onnx-simplifier not listed in general yolov7 requirements.txt +pip3 install onnx-simplifier + # Pytorch Yolov7 -> ONNX with grid, EfficientNMS plugin and dynamic batch size python export.py --weights ./yolov7.pt --grid --end2end --dynamic-batch --simplify --topk-all 100 --iou-thres 0.65 --conf-thres 0.35 --img-size 640 640 # ONNX -> TensorRT with trtexec and docker