Tanvir1337
commited on
app.py: fix exl2 id in dict
Browse files
app.py
CHANGED
@@ -46,7 +46,7 @@ This space potentially includes incorrectly quantized models for a model.
|
|
46 |
If you find any incorrectly quantized model, please report it to me.
|
47 |
"""
|
48 |
|
49 |
-
quant_models = [i.__dict__['id'] for i in api.list_models(author="bartowski") if "GGUF" in i.__dict__['id'] or "
|
50 |
|
51 |
pattern = r'\(https://huggingface\.co/([^/]+)/([^/]+)\)'
|
52 |
liste = {}
|
|
|
46 |
If you find any incorrectly quantized model, please report it to me.
|
47 |
"""
|
48 |
|
49 |
+
quant_models = [i.__dict__['id'] for i in api.list_models(author="bartowski") if "GGUF" in i.__dict__['id'] or "exl2" in i.__dict__['id']]
|
50 |
|
51 |
pattern = r'\(https://huggingface\.co/([^/]+)/([^/]+)\)'
|
52 |
liste = {}
|