Views
No views yet
1from ultralytics import YOLO 2 3# 2024 model 4model = YOLO("zhongqic/river-herring-yolo11.pt") 5# 2025 model 6model = YOLO("zhongqic/river-herring-yolo11_2025.pt") 7 8 9# Run prediction 10results = model(source=img_path)