Spaces:
Sleeping
Sleeping
# 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 | |