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
529 B
13 lines
529 B
# Ultralytics YOLO 🚀, AGPL-3.0 license |
|
|
|
__version__ = "8.1.1" |
|
|
|
from ultralytics.data.explorer.explorer import Explorer |
|
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", "settings", "Explorer"
|
|
|