From 7bbe7e803a81560c9fc6bf852d2cf2cc70546f5d Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Fri, 8 Dec 2023 05:01:25 -0800 Subject: [PATCH] Minor fix --- download-model.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/download-model.py b/download-model.py index b9779a4f..b22405ec 100644 --- a/download-model.py +++ b/download-model.py @@ -128,7 +128,7 @@ class ModelDownloader: links.pop(i) # For GGUF, try to download only the Q4_K_M if no specific file is specified. - # If not present, exclude all GGUFs, as that's like a repository with both + # If not present, exclude all GGUFs, as that's likely a repository with both # GGUF and fp16 files. if has_gguf and specific_file is None: has_q4km = False @@ -138,7 +138,7 @@ class ModelDownloader: if has_q4km: for i in range(len(classifications) - 1, -1, -1): - if 'q4_k_m' in links[i].lower(): + if 'q4_k_m' not in links[i].lower(): links.pop(i) else: for i in range(len(classifications) - 1, -1, -1):