mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-05 08:37:06 +08:00

* add yolov5cls * fixed bugs * fixed bugs * fixed preprocess bug * add yolov5cls readme * deal with comments * Add YOLOv5Cls Note * add yolov5cls test Co-authored-by: Jason <jiangjiajun@baidu.com>
1.7 KiB
1.7 KiB
YOLOv5Cls准备部署模型
- YOLOv5Cls v6.2部署模型实现来自YOLOv5,和基于ImageNet的预训练模型
下载预训练ONNX模型
为了方便开发者的测试,下面提供了YOLOv5Cls导出的各系列模型,开发者可直接下载使用。(下表中模型的精度来源于源官方库)
模型 | 大小 | 精度(top1) | 精度(top5) |
---|---|---|---|
YOLOv5n-cls | 9.6MB | 64.6% | 85.4% |
YOLOv5s-cls | 21MB | 71.5% | 90.2% |
YOLOv5m-cls | 50MB | 75.9% | 92.9% |
YOLOv5l-cls | 102MB | 78.0% | 94.0% |
YOLOv5x-cls | 184MB | 79.0% | 94.4% |
详细部署文档
版本说明
- 本版本文档和代码基于YOLOv5 v6.2 编写