Views
No views yet
best.pt, a YOLO26n object-detection model fine-tuned on the COCO128 dataset.yolo26n.ptcoco128.yamlyolo26n_coco128_finetune_v21from ultralytics import YOLO
2
3model = YOLO("best.pt")
4results = model("image.jpg")
5results[0].show()