From e0e2f83a47eee8b58be6a288de15e14c10b65140 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sat, 21 Jan 2023 01:07:48 +0100 Subject: [PATCH] Fix entrypoint(debug=False) to True (#530) --- ultralytics/yolo/configs/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ultralytics/yolo/configs/__init__.py b/ultralytics/yolo/configs/__init__.py index 48c9af7..2c0c373 100644 --- a/ultralytics/yolo/configs/__init__.py +++ b/ultralytics/yolo/configs/__init__.py @@ -115,7 +115,7 @@ def check_config_mismatch(base: Dict, custom: Dict): sys.exit() -def entrypoint(debug=True): +def entrypoint(debug=False): """ This function is the ultralytics package entrypoint, it's responsible for parsing the command line arguments passed to the package.