Views
No views yet
1from ultralytics import YOLO
2from huggingface_hub import hf_hub_download
3
4model_path = hf_hub_download(
5 repo_id="MathysIRVIS/YOLOv8-artifact",
6 filename="best.pt"
7)
8
9model = YOLO(model_path)
10results = model("image.jpg")