mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-23 21:44:22 +08:00

Co-authored-by: Seungtaek Kim <seungtaek.kim.94@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Laughing <61612323+Laughing-q@users.noreply.github.com> Co-authored-by: Yonghye Kwon <developer.0hye@gmail.com> Co-authored-by: Ercalvez <45692523+Ercalvez@users.noreply.github.com> Co-authored-by: Erwan CALVEZ <ecalvez@enib.fr>
10 lines
251 B
Python
10 lines
251 B
Python
# Ultralytics YOLO 🚀, GPL-3.0 license
|
|
|
|
from ultralytics.yolo.utils import emojis
|
|
|
|
|
|
class HUBModelError(Exception):
|
|
|
|
def __init__(self, message='Model not found. Please check model URL and try again.'):
|
|
super().__init__(emojis(message))
|