From 85f8bf52ac974f47ac7ada78856229c2378fe908 Mon Sep 17 00:00:00 2001 From: Jiawei Wang Date: Sat, 20 Feb 2021 21:21:04 +0800 Subject: [PATCH] Merge pull request #1049 from wangjiawei04/develop add readme for examples --- python/examples/README.md | 11 +++++++++++ python/examples/README_CN.md | 9 +++++++++ 2 files changed, 20 insertions(+) create mode 100644 python/examples/README.md create mode 100644 python/examples/README_CN.md diff --git a/python/examples/README.md b/python/examples/README.md new file mode 100644 index 00000000..6e0ee808 --- /dev/null +++ b/python/examples/README.md @@ -0,0 +1,11 @@ +## Examples + +### Support `--use_trt` + +the following models support `--use_trt`, which means you can use TensorRT to accelerate inference at Cuda 10.1 or higher. + +- imagenet ResNet50/ResNet101 +- detection faster_rcnn/yolov3/pp-yolo/ttf-net + + + diff --git a/python/examples/README_CN.md b/python/examples/README_CN.md new file mode 100644 index 00000000..1da32370 --- /dev/null +++ b/python/examples/README_CN.md @@ -0,0 +1,9 @@ +## Serving模型示例 + +### 支持TensorRT的模型列表 `--use_trt` + +以下模型支持TensorRT,可以开启 `--use_trt`来加速在线预测,其他模型不能开启。 + +- imagenet ResNet50/ResNet101 +- detection faster_rcnn/yolov3/pp-yolo/ttf-net +i -- GitLab