mirror of
https://github.com/mii443/usls.git
synced 2025-12-03 02:58:22 +00:00
* Add onnx proto * Update ort to 2.0.0-rc.2 * Improve the speed of resizing * Fix yolo-seg bug * Update README.md
Quick Start
cargo run -r --example yolo-world
Donwload or Export ONNX Model
-
Download
-
Or generate your own
yolo-worldmodel and then Export- Installation
pip install -U ultralytics- Generate
from ultralytics import YOLO # Initialize a YOLO-World model model = YOLO('yolov8m-worldv2.pt') # Define custom classes model.set_classes(["shoes"]) # Save the model with the defined offline vocabulary model.save("custom_yolov8m-world-v2.pt")- Export
yolo export model=custom_yolov8m-world-v2.pt format=onnx simplify dynamic
