WE LAUNCHED YOLOv8! 🚀 #10757
taliabender
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It's been a long time coming of research and development, and we're so excited to finally bring you the latest installment of the YOLO family of architectures. YOLOv8 builds on the successes of countless experiments and previous architectures, we've created models that are the best in the world at what they do: real-time object detection, classification, and segmentation.
So, what actually sets YOLOv8 apart?
⭐️ Well-documented workflows, prioritizing clarity and thoroughness.
⭐️ Spotless code, written from the ground up.
⭐️ Simple usage of the easiest YOLO models ever to train and deploy.
⭐️ Flexible solutions via support for all YOLO versions.
...And did we mention that it's SOTA?
Get started with YOLOv8!
English | 简体中文
Ultralytics YOLOv8, developed by Ultralytics, is a cutting-edge, state-of-the-art (SOTA) model that builds upon the success of previous YOLO versions and introduces new features and improvements to further boost performance and flexibility. YOLOv8 is designed to be fast, accurate, and easy to use, making it an excellent choice for a wide range of object detection, image segmentation and image classification tasks.
See below for a quickstart installation and usage example, and see the YOLOv8 Docs for full documentation on training, validation, prediction and deployment.
Install
Pip install the ultralytics package including all requirements.txt in a 3.10>=Python>=3.7 environment, including PyTorch>=1.7.
Usage
CLI
YOLOv8 may be used directly in the Command Line Interface (CLI) with a
yolo
command:yolo predict model=yolov8n.pt source="https://ultralytics.com/images/bus.jpg"
yolo
can be used for a variety of tasks and modes and accepts additional arguments, i.e.imgsz=640
. See the YOLOv8CLI Docs for examples.
Python
YOLOv8 may also be used directly in a Python environment, and accepts the
same arguments as in the CLI example above:
Models download automatically from the latest Ultralytics release. See YOLOv8 Python Docs for more examples.
Beta Was this translation helpful? Give feedback.
All reactions