testing for unatorheized things
Browse files
app.py
CHANGED
@@ -50,7 +50,7 @@ This space potentially includes incorrectly quantized models for a model.
|
|
50 |
If you find any incorrectly quantized model, please report it to me.
|
51 |
"""
|
52 |
|
53 |
-
quant_models = [i.__dict__['id'] for i in api.list_models(author="TheBloke") if "GPTQ" in i.__dict__['id'] or "GGUF" in i.__dict__['id'] or "AWQ" in i.__dict__['id'] or "GGML" in i.__dict__['id']]
|
54 |
|
55 |
|
56 |
pattern = r'\(https://huggingface\.co/([^/]+)/([^/]+)\)'
|
|
|
50 |
If you find any incorrectly quantized model, please report it to me.
|
51 |
"""
|
52 |
|
53 |
+
quant_models = [i.__dict__['id'] for i in api.list_models(author="TheBloke", token=False) if "GPTQ" in i.__dict__['id'] or "GGUF" in i.__dict__['id'] or "AWQ" in i.__dict__['id'] or "GGML" in i.__dict__['id']]
|
54 |
|
55 |
|
56 |
pattern = r'\(https://huggingface\.co/([^/]+)/([^/]+)\)'
|