mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-29 02:14:22 +08:00
10 lines
252 B
Python
10 lines
252 B
Python
# Ultralytics YOLO 🚀, AGPL-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))
|