Views
No views yet
1from ultralytics import YOLO
2from huggingface_hub import hf_hub_download
3
4# Download model
5model_path = hf_hub_download(repo_id="your-username/your-model-name", filename="best.pt")
6
7# Load and use
8model = YOLO(model_path)
9results = model("path/to/image.jpg")
10results[0].show()