Files
FastDeploy/examples/vision/detection/yolov5
yeliang2258 45865c8724 [Other] Change all XPU to KunlunXin (#973)
* [FlyCV] Bump up FlyCV -> official release 1.0.0

* XPU to KunlunXin

* update

* update model link

* update doc

* update device

* update code

* useless code

Co-authored-by: DefTruth <qiustudent_r@163.com>
Co-authored-by: DefTruth <31974251+DefTruth@users.noreply.github.com>
2022-12-27 10:02:02 +08:00
..

YOLOv5准备部署模型

  • YOLOv5 v7.0部署模型实现来自YOLOv5,和基于COCO的预训练模型
    • 1官方库提供的*.onnx可直接进行部署
    • 2开发者基于自己数据训练的YOLOv5 v7.0模型,可使用YOLOv5中的export.py导出ONNX文件后完成部署。

下载预训练ONNX模型

为了方便开发者的测试下面提供了YOLOv5导出的各系列模型开发者可直接下载使用。下表中模型的精度来源于源官方库

模型 大小 精度
YOLOv5n 7.6MB 28.0%
YOLOv5s 28MB 37.4%
YOLOv5m 82MB 45.4%
YOLOv5l 178MB 49.0%
YOLOv5x 332MB 50.7%

详细部署文档

版本说明