mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-29 02:14:22 +08:00
Fix operating system to list (#3196)
This commit is contained in:
parent
0a229bd40f
commit
f8e1dcc43f
@ -37,7 +37,7 @@ AUTOINSTALL = str(os.getenv('YOLO_AUTOINSTALL', True)).lower() == 'true' # glob
|
|||||||
VERBOSE = str(os.getenv('YOLO_VERBOSE', True)).lower() == 'true' # global verbose mode
|
VERBOSE = str(os.getenv('YOLO_VERBOSE', True)).lower() == 'true' # global verbose mode
|
||||||
TQDM_BAR_FORMAT = '{l_bar}{bar:10}{r_bar}' # tqdm bar format
|
TQDM_BAR_FORMAT = '{l_bar}{bar:10}{r_bar}' # tqdm bar format
|
||||||
LOGGING_NAME = 'ultralytics'
|
LOGGING_NAME = 'ultralytics'
|
||||||
MACOS, LINUX, WINDOWS = (platform.system() == x for x in ('Darwin', 'Linux', 'Windows')) # environment booleans
|
MACOS, LINUX, WINDOWS = (platform.system() == x for x in ['Darwin', 'Linux', 'Windows']) # environment booleans
|
||||||
HELP_MSG = \
|
HELP_MSG = \
|
||||||
"""
|
"""
|
||||||
Usage examples for running YOLOv8:
|
Usage examples for running YOLOv8:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user