Files
FastDeploy/examples/vision/detection/paddledetection
Winter eb65e91748 [Android] add enableCamera method app examples (#751)
* Remove redundant code for segmentation.

* Classification Documentation and example improvement.

* Ocr Documentation and example improvement.

* 1.detection、face、seg module add "svPreview.enableCamera();".
2.java/android add fastdepolyUi module.

* examples/vision/ to add OCRv3.

* Modify UI directory name.

* Refresh examples\vision,change OCR README.md

* Update ui module

* Update ui module

* [Android] add enableCamera method.

Co-authored-by: DefTruth <31974251+DefTruth@users.noreply.github.com>
2022-11-30 10:41:01 +08:00
..
2022-11-14 18:44:33 +08:00

PaddleDetection模型部署

模型版本说明

支持模型列表

目前FastDeploy支持如下模型的部署

导出部署模型

在部署前需要先将PaddleDetection导出成部署模型导出步骤参考文档导出模型

注意

  • 在导出模型时不要进行NMS的去除操作正常导出即可
  • 导出模型时,不要添加fuse_normalize=True参数

下载预训练模型

为了方便开发者的测试下面提供了PaddleDetection导出的各系列模型开发者可直接下载使用。

其中精度指标来源于PaddleDetection中对各模型的介绍详情各参考PaddleDetection中的说明。

模型 参数大小 精度 备注
picodet_l_320_coco_lcnet 23MB Box AP 42.6%
ppyoloe_crn_l_300e_coco 200MB Box AP 51.4%
ppyoloe_plus_crn_m_80e_coco 83.3MB Box AP 49.8%
ppyolo_r50vd_dcn_1x_coco 180MB Box AP 44.8% 暂不支持TensorRT
ppyolov2_r101vd_dcn_365e_coco 282MB Box AP 49.7% 暂不支持TensorRT
yolov3_darknet53_270e_coco 237MB Box AP 39.1%
yolox_s_300e_coco 35MB Box AP 40.4%
faster_rcnn_r50_vd_fpn_2x_coco 160MB Box AP 40.8% 暂不支持TensorRT
mask_rcnn_r50_1x_coco 128M Box AP 37.4%, Mask AP 32.8% 暂不支持TensorRT、ORT
ssd_mobilenet_v1_300_120e_voc 21.7M Box AP 73.8% 暂不支持TensorRT、ORT
ssd_vgg16_300_240e_voc 97.7M Box AP 77.8% 暂不支持TensorRT、ORT
ssdlite_mobilenet_v1_300_coco 24.4M 暂不支持TensorRT、ORT

详细部署文档