mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-24 06:14:55 +08:00
9 lines
253 B
Python
9 lines
253 B
Python
# Ultralytics YOLO 🚀, GPL-3.0 license
|
|
|
|
__version__ = "8.0.38"
|
|
|
|
from ultralytics.yolo.engine.model import YOLO
|
|
from ultralytics.yolo.utils.checks import check_yolo as checks
|
|
|
|
__all__ = ["__version__", "YOLO", "checks"] # allow simpler import
|