-
V1default.pt: YOLO11
-
V1yolo11more_epochs.pt: YOLO11
-
yolo11besto10.pt: YOLO11
-
yolo11besto274.pt: YOLO11
-
yolo11edemo2_det.pt: YOLOE, swapped to detection head.
-
Developed by: Jerry Yu
-
License: agpl-3.0
-
Model type: Object Detection
-
- For more information on training, see the
Notebooks/Strawberry Detection.ipynb notebook in the repository.
1# Import Model
2from ultralytics import YOLO
3yolo11 = YOLO(".V1default.pt")
4# Detect strawberries in an image
5from PIL import Image
6pic = Image.open("Strawberry.jpeg"))
7result = yolo11.predict(pic,conf=0.25)[0]
8detections = sv.Detections.from_ultralytics(result)