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

Co-authored-by: Onuralp Sezer <thunderbirdtr@gmail.com> Co-authored-by: Ayush Chaurasia <ayush.chaurarsia@gmail.com>
10 lines
271 B
Python
10 lines
271 B
Python
# Ultralytics YOLO 🚀, GPL-3.0 license
|
|
|
|
__version__ = "8.0.2"
|
|
|
|
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
|