You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
yolo can be used for a variety of tasks and modes and accepts additional arguments, i.e. imgsz=640. See the YOLOv8 CLI 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:
fromultralyticsimportYOLO# Load a modelmodel=YOLO("yolov8n.yaml") # build a new model from scratchmodel=YOLO("yolov8n.pt") # load a pretrained model (recommended for training)# Use the modelmodel.train(data="coco128.yaml", epochs=3) # train the modelmetrics=model.val() # evaluate model performance on the validation setresults=model("https://ultralytics.com/images/bus.jpg") # predict on an imagesuccess=model.export(format="onnx") # export the model to ONNX format
Models download automatically from the latest Ultralytics release. See YOLOv8 Python Docs for more examples.
The text was updated successfully, but these errors were encountered:
During the past 2 years, our focus has been on continuous research and development, and we're thrilled to finally announce the latest addition to the YOLO family of architectures.
Building on the success 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. They're faster, more accurate, and simpler.
So, what have we done to make this possible? There are four main advantages of YOLOv8:
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.
YOLOv8 places AI's power in everyone's hands. Get started now and make sure to leave us a โญ๏ธ on the new repo!
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.
To request an Enterprise License please complete the form at Ultralytics Licensing.
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 Python>=3.7 environment with 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.
The text was updated successfully, but these errors were encountered: