mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-29 02:14:22 +08:00

Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: Laughing-q <1185102784@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Laughing <61612323+Laughing-q@users.noreply.github.com> Co-authored-by: Viet Nhat Thai <60825385+vietnhatthai@users.noreply.github.com> Co-authored-by: Paula Derrenger <107626595+pderrenger@users.noreply.github.com>
10 lines
271 B
Python
10 lines
271 B
Python
# Ultralytics YOLO 🚀, GPL-3.0 license
|
|
|
|
__version__ = "8.0.7"
|
|
|
|
from ultralytics.hub import checks
|
|
from ultralytics.yolo.engine.model import YOLO
|
|
from ultralytics.yolo.utils import ops
|
|
|
|
__all__ = ["__version__", "YOLO", "hub", "checks"] # allow simpler import
|