GullyDRS / gully_drs_core /model_utils.py
AjaykumarPilla's picture
Update gully_drs_core/model_utils.py
7a3575c verified
raw
history blame contribute delete
196 Bytes
# 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