Skip to content

Commit 1336659

Browse files
Add hint on how to get ultralytics with YOLOv10 models support
1 parent 1fb6471 commit 1336659

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,11 @@ workspace.upload_dataset(
131131
# upload model weights
132132
version.deploy(model_type="yolov8", model_path=f”{HOME}/runs/detect/train/”)
133133

134+
# upload model weights - yolov10
135+
# Before attempting to upload YOLOv10 models install ultralytics like this:
136+
# pip install git+https://github.com/THU-MIG/yolov10.git
137+
version.deploy(model_type="yolov10", model_path=f”{HOME}/runs/detect/train/”, filename="weights.pt")
138+
134139
# run inference
135140
model = version.model
136141

0 commit comments

Comments
 (0)