Tanvir1337 commited on
Commit
6b16a29
Β·
verified Β·
1 Parent(s): 911ffbe

app.py: fix exl2 id in dict

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 "EXL2" in i.__dict__['id']]
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 = {}