We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fb6471 commit 1336659Copy full SHA for 1336659
README.md
@@ -131,6 +131,11 @@ workspace.upload_dataset(
131
# upload model weights
132
version.deploy(model_type="yolov8", model_path=f”{HOME}/runs/detect/train/”)
133
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
+
139
# run inference
140
model = version.model
141
0 commit comments