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.
13 lines
530 B
13 lines
530 B
# Ultralytics YOLO 🚀, AGPL-3.0 license |
|
|
|
__version__ = '8.0.156' |
|
|
|
from ultralytics.hub import start |
|
from ultralytics.models import RTDETR, SAM, YOLO |
|
from ultralytics.models.fastsam import FastSAM |
|
from ultralytics.models.nas import NAS |
|
from ultralytics.utils import SETTINGS as settings |
|
from ultralytics.utils.checks import check_yolo as checks |
|
from ultralytics.utils.downloads import download |
|
|
|
__all__ = '__version__', 'YOLO', 'NAS', 'SAM', 'FastSAM', 'RTDETR', 'checks', 'download', 'start', 'settings' # allow simpler import
|
|
|