fix ggml detection regex in model downloader (#1779)

This commit is contained in:
Wojtek Kowaluk 2023-05-04 16:48:36 +02:00 committed by GitHub
parent bd531c2dc2
commit 1436c5845a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,7 +114,7 @@ def get_download_links_from_huggingface(model, branch, text_only=False):
is_pytorch = re.match("(pytorch|adapter)_model.*\.bin", fname)
is_safetensors = re.match(".*\.safetensors", fname)
is_pt = re.match(".*\.pt", fname)
is_ggml = re.match("ggml.*\.bin", fname)
is_ggml = re.match(".*ggml.*\.bin", fname)
is_tokenizer = re.match("(tokenizer|ice).*\.model", fname)
is_text = re.match(".*\.(txt|json|py|md)", fname) or is_tokenizer