File size: 196 Bytes
1ebc307
 
a4e37d9
1ebc307
7a3575c
 
1ebc307
1
2
3
4
5
6
7
8
# gully_drs_core/model_utils.py
from ultralytics import YOLO

def load_model():
    # Load your custom YOLOv8 model
    model = YOLO('best.pt')  # πŸ‘ˆ Your trained cricket model
    return model