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
|
|
|
|
|
|
|
|
from ultralytics.utils import ASSETS, ROOT, WEIGHTS_DIR, checks
|
|
|
|
|
|
|
|
# Constants used in tests
|
|
|
|
MODEL = WEIGHTS_DIR / "path with spaces" / "yolov8n.pt" # test spaces in path
|
|
|
|
CFG = "yolov8n.yaml"
|
|
|
|
SOURCE = ASSETS / "bus.jpg"
|
|
|
|
SOURCES_LIST = [ASSETS / "bus.jpg", ASSETS, ASSETS / "*", ASSETS / "**/*.jpg"]
|
|
|
|
TMP = (ROOT / "../tests/tmp").resolve() # temp directory for test files
|
|
|
|
CUDA_IS_AVAILABLE = checks.cuda_is_available()
|
|
|
|
CUDA_DEVICE_COUNT = checks.cuda_device_count()
|
|
|
|
|
|
|
|
__all__ = (
|
|
|
|
"MODEL",
|
|
|
|
"CFG",
|
|
|
|
"SOURCE",
|
|
|
|
"SOURCES_LIST",
|
|
|
|
"TMP",
|
|
|
|
"IS_TMP_WRITEABLE",
|
|
|
|
"CUDA_IS_AVAILABLE",
|
|
|
|
"CUDA_DEVICE_COUNT",
|
|
|
|
)
|