Weyaxi commited on
Commit
59ed98b
·
verified ·
1 Parent(s): 7a80756

testing for unatorheized things

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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/([^/]+)/([^/]+)\)'