From af66b165da857183930ff3da73b6052a35279b04 Mon Sep 17 00:00:00 2001 From: r-blmnr <77175527+r-blmnr@users.noreply.github.com> Date: Thu, 22 Apr 2021 16:51:21 +0200 Subject: [PATCH] Uppercase model filenames enabled (#2890) --- utils/google_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/google_utils.py b/utils/google_utils.py index 0a7ca3b896d6..db36fa9d6822 100644 --- a/utils/google_utils.py +++ b/utils/google_utils.py @@ -18,7 +18,7 @@ def gsutil_getsize(url=''): def attempt_download(file, repo='ultralytics/yolov5'): # Attempt file download if does not exist - file = Path(str(file).strip().replace("'", '').lower()) + file = Path(str(file).strip().replace("'", '')) if not file.exists(): try: