|
|
@ -18,7 +18,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
|
|
|
|
|
|
|
|
[Ultralytics YOLOv8](https://github.com/ultralytics/ultralytics) 是由 [Ultralytics](https://ultralytics.com) 开发的一个前沿 SOTA 模型。它在以前 YOLO 版本的成功基础上,引入了新的功能和改进,进一步提升了性能和灵活性。YOLOv8 基于快速、准确和易于使用的理念设计,使其成为广泛的物体检测、图像分割和图像分类任务的绝佳选择。
|
|
|
|
[Ultralytics YOLOv8](https://github.com/ultralytics/ultralytics) 是由 [Ultralytics](https://ultralytics.com) 开发的一个前沿的 SOTA 模型。它在以前成功的 YOLO 版本基础上,引入了新的功能和改进,进一步提升了其性能和灵活性。YOLOv8 基于快速、准确和易于使用的设计理念,使其成为广泛的目标检测、图像分割和图像分类任务的绝佳选择。
|
|
|
|
|
|
|
|
|
|
|
|
如果要申请企业许可证,请填写 [Ultralytics 许可](https://ultralytics.com/license)。
|
|
|
|
如果要申请企业许可证,请填写 [Ultralytics 许可](https://ultralytics.com/license)。
|
|
|
|
|
|
|
|
|
|
|
@ -84,12 +84,15 @@ YOLOv8 也可以在 Python 环境中直接使用,并接受与上面 CLI 例子
|
|
|
|
```python
|
|
|
|
```python
|
|
|
|
from ultralytics import YOLO
|
|
|
|
from ultralytics import YOLO
|
|
|
|
|
|
|
|
|
|
|
|
model = YOLO("yolov8n.pt") # load a pretrained YOLOv8n model
|
|
|
|
# 加载模型
|
|
|
|
|
|
|
|
model = YOLO("yolov8n.yaml") # 从头开始构建新模型
|
|
|
|
|
|
|
|
model = YOLO("yolov8n.pt") # 加载预训练模型(推荐用于训练)
|
|
|
|
|
|
|
|
|
|
|
|
model.train(data="coco128.yaml") # train the model
|
|
|
|
# Use the model
|
|
|
|
model.val() # evaluate model performance on the validation set
|
|
|
|
results = model.train(data="coco128.yaml", epochs=3) # 训练模型
|
|
|
|
model.predict(source="https://ultralytics.com/images/bus.jpg") # predict on an image
|
|
|
|
results = model.val() # 在验证集上评估模型性能
|
|
|
|
model.export(format="onnx") # export the model to ONNX format
|
|
|
|
results = model("https://ultralytics.com/images/bus.jpg") # 预测图像
|
|
|
|
|
|
|
|
success = YOLO("yolov8n.pt").export(format="onnx") # 将模型导出为 ONNX 格式
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
[模型](https://github.com/ultralytics/ultralytics/tree/main/ultralytics/yolo/v8/models) 会从 Ultralytics [发布页](https://github.com/ultralytics/ultralytics/releases) 自动下载。
|
|
|
|
[模型](https://github.com/ultralytics/ultralytics/tree/main/ultralytics/yolo/v8/models) 会从 Ultralytics [发布页](https://github.com/ultralytics/ultralytics/releases) 自动下载。
|
|
|
@ -200,7 +203,7 @@ model.export(format="onnx") # export the model to ONNX format
|
|
|
|
|
|
|
|
|
|
|
|
<!-- SVG image from https://opencollective.com/ultralytics/contributors.svg?width=990 -->
|
|
|
|
<!-- SVG image from https://opencollective.com/ultralytics/contributors.svg?width=990 -->
|
|
|
|
|
|
|
|
|
|
|
|
<a href="https://github.com/ultralytics/yolov5/graphs/contributors"><img src="https://github.com/ultralytics/yolov5/releases/download/v1.0/image-contributors-1280.png"/></a>
|
|
|
|
<a href="https://github.com/ultralytics/ultralytics/graphs/contributors"><img src="https://github.com/ultralytics/yolov5/releases/download/v1.0/image-contributors-1280.png"/></a>
|
|
|
|
|
|
|
|
|
|
|
|
## <div align="center">License</div>
|
|
|
|
## <div align="center">License</div>
|
|
|
|
|
|
|
|
|
|
|
@ -210,7 +213,7 @@ model.export(format="onnx") # export the model to ONNX format
|
|
|
|
|
|
|
|
|
|
|
|
## <div align="center">联系我们</div>
|
|
|
|
## <div align="center">联系我们</div>
|
|
|
|
|
|
|
|
|
|
|
|
若发现 YOLOv8 的 bug 或有功能需求,请访问 [GitHub 问题](https://github.com/ultralytics/ultralytics/issues)。如需专业支持,请 [联系我们](https://ultralytics.com/contact)。
|
|
|
|
若发现 YOLOv8 的 Bug 或有功能需求,请访问 [GitHub 问题](https://github.com/ultralytics/ultralytics/issues)。如需专业支持,请 [联系我们](https://ultralytics.com/contact)。
|
|
|
|
|
|
|
|
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<div align="center">
|
|
|
|
<div align="center">
|
|
|
|