You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Ultralytics YOLO 🚀, AGPL-3.0 license
|
|
|
|
|
|
|
|
__version__ = '8.0.126'
|
|
|
|
|
|
|
|
from ultralytics.hub import start
|
|
|
|
from ultralytics.vit.rtdetr import RTDETR
|
|
|
|
from ultralytics.vit.sam import SAM
|
|
|
|
from ultralytics.yolo.engine.model import YOLO
|
|
|
|
from ultralytics.yolo.nas import NAS
|
|
|
|
from ultralytics.yolo.utils.checks import check_yolo as checks
|
|
|
|
from ultralytics.yolo.utils.downloads import download
|
|
|
|
|
|
|
|
__all__ = '__version__', 'YOLO', 'NAS', 'SAM', 'RTDETR', 'checks', 'start', 'download' # allow simpler import
|