`ultralytics 8.1.20` add YOLOv8x-World support (#8539)

Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
pull/8502/head^2 v8.1.20
Laughing 12 months ago committed by GitHub
parent 31cf94e7f9
commit 59ed47c448
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      docs/en/models/yolo-world.md
  2. 2
      ultralytics/__init__.py

@ -41,6 +41,7 @@ This section details the models available with their specific pre-trained weight
| YOLOv8s-world | [yolov8s-world.pt](https://github.com/ultralytics/assets/releases/download/v8.1.0/yolov8s-world.pt) | [Object Detection](../tasks/detect.md) | ✅ | ✅ | ❌ | ❌ |
| YOLOv8m-world | [yolov8m-world.pt](https://github.com/ultralytics/assets/releases/download/v8.1.0/yolov8m-world.pt) | [Object Detection](../tasks/detect.md) | ✅ | ✅ | ❌ | ❌ |
| YOLOv8l-world | [yolov8l-world.pt](https://github.com/ultralytics/assets/releases/download/v8.1.0/yolov8l-world.pt) | [Object Detection](../tasks/detect.md) | ✅ | ✅ | ❌ | ❌ |
| YOLOv8x-world | [yolov8x-world.pt](https://github.com/ultralytics/assets/releases/download/v8.1.0/yolov8x-world.pt) | [Object Detection](../tasks/detect.md) | ✅ | ✅ | ❌ | ❌ |
## Zero-shot Transfer on COCO Dataset
@ -49,6 +50,7 @@ This section details the models available with their specific pre-trained weight
| yolov8s-world | 37.4 | 52.0 | 40.6 |
| yolov8m-world | 42.0 | 57.0 | 45.6 |
| yolov8l-world | 45.7 | 61.3 | 49.8 |
| yolov8x-world | 47.0 | 63.0 | 51.2 |
## Usage Examples

@ -1,6 +1,6 @@
# Ultralytics YOLO 🚀, AGPL-3.0 license
__version__ = "8.1.19"
__version__ = "8.1.20"
from ultralytics.data.explorer.explorer import Explorer
from ultralytics.models import RTDETR, SAM, YOLO, YOLOWorld

Loading…
Cancel
Save