From 3e654293db6ff0756d538d16a3ccd77bb7f1376f 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) (cherry picked from commit 0395e39fd04018b43eb2213438ed694ab1b47317) --- 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: