Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 2 KB

README_CN.md

File metadata and controls

28 lines (19 loc) · 2 KB

English | 简体中文

YOLOv8准备部署模型

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

下载预训练ONNX模型

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

模型 大小 精度 备注
YOLOv8n 12.1MB 37.3% This model file is sourced from YOLOv8,GPL-3.0 License
YOLOv8s 42.6MB 44.9% This model file is sourced from YOLOv8,GPL-3.0 License
YOLOv8m 98.8MB 50.2% This model file is sourced from YOLOv8,GPL-3.0 License
YOLOv8l 166.7MB 52.9% This model file is sourced from YOLOv8,GPL-3.0 License
YOLOv8x 260.3MB 53.9% This model file is sourced from YOLOv8,GPL-3.0 License

详细部署文档

版本说明

  • 本版本文档和代码基于YOLOv8 编写