corzent's picture
Upload folder using huggingface_hub
a5c6a73 verified
raw
history blame contribute delete
149 Bytes
from ultralytics import YOLO
model = YOLO("best.pt")
res = model("examples/example3.jpg", conf=0.35)
# res[0].show()
res[0].save(filename="out.jpg")