mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
downloader: fix downloading 01-ai/Yi-1.5-34B-Chat
This commit is contained in:
parent
9557f49f2f
commit
e225b0b995
@ -138,9 +138,12 @@ class ModelDownloader:
|
|||||||
cursor = cursor.replace(b'=', b'%3D')
|
cursor = cursor.replace(b'=', b'%3D')
|
||||||
|
|
||||||
# If both pytorch and safetensors are available, download safetensors only
|
# If both pytorch and safetensors are available, download safetensors only
|
||||||
if (has_pytorch or has_pt) and has_safetensors:
|
# Also if GGUF and safetensors are available, download only safetensors
|
||||||
|
# (why do people do this?)
|
||||||
|
if (has_pytorch or has_pt or has_gguf) and has_safetensors:
|
||||||
|
has_gguf = False
|
||||||
for i in range(len(classifications) - 1, -1, -1):
|
for i in range(len(classifications) - 1, -1, -1):
|
||||||
if classifications[i] in ['pytorch', 'pt']:
|
if classifications[i] in ['pytorch', 'pt', 'gguf']:
|
||||||
links.pop(i)
|
links.pop(i)
|
||||||
|
|
||||||
# For GGUF, try to download only the Q4_K_M if no specific file is specified.
|
# For GGUF, try to download only the Q4_K_M if no specific file is specified.
|
||||||
|
Loading…
Reference in New Issue
Block a user