Weyaxi commited on
Commit
53ac7e8
·
verified ·
1 Parent(s): fff2611
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -106,11 +106,10 @@ for model, values in liste.items():
106
  awq.append(awq_value)
107
  ggml.append(ggml_value)
108
 
109
- print(authors)
110
- print(gptq)
111
 
112
  df = pd.DataFrame({'👤 Author Name': authors, '🤖 Model Name': models, '👍 GPTQ': gptq, '📥 GGUF': gguf, '🤷‍♂️ AWQ': awq, '😭 GGML': ggml})
113
 
 
114
  def search(search_text):
115
  if not search_text:
116
  return df
@@ -130,7 +129,6 @@ def to_clickable(df):
130
  df[column] = df[column].apply(lambda x: clickable(x))
131
  return df
132
 
133
-
134
  with gr.Blocks() as demo:
135
  gr.Markdown("""<center><img src = "https://cdn-uploads.huggingface.co/production/uploads/6426d3f3a7723d62b53c259b/tvPikpAzKTKGN5wrpadOJ.jpeg" width=200 height=200></center>""")
136
  gr.Markdown("""<h1 align="center" id="space-title">The Bloke Quantized Models</h1>""")
@@ -139,7 +137,7 @@ with gr.Blocks() as demo:
139
  with gr.Column(min_width=320):
140
  search_bar = gr.Textbox(placeholder="🔍 Search for a author or a specific model", show_label=False)
141
 
142
-
143
  df_clickable = to_clickable(df)
144
  gr_df = gr.Dataframe(df_clickable, interactive=False, datatype=["markdown"]*len(df.columns))
145
 
 
106
  awq.append(awq_value)
107
  ggml.append(ggml_value)
108
 
 
 
109
 
110
  df = pd.DataFrame({'👤 Author Name': authors, '🤖 Model Name': models, '👍 GPTQ': gptq, '📥 GGUF': gguf, '🤷‍♂️ AWQ': awq, '😭 GGML': ggml})
111
 
112
+
113
  def search(search_text):
114
  if not search_text:
115
  return df
 
129
  df[column] = df[column].apply(lambda x: clickable(x))
130
  return df
131
 
 
132
  with gr.Blocks() as demo:
133
  gr.Markdown("""<center><img src = "https://cdn-uploads.huggingface.co/production/uploads/6426d3f3a7723d62b53c259b/tvPikpAzKTKGN5wrpadOJ.jpeg" width=200 height=200></center>""")
134
  gr.Markdown("""<h1 align="center" id="space-title">The Bloke Quantized Models</h1>""")
 
137
  with gr.Column(min_width=320):
138
  search_bar = gr.Textbox(placeholder="🔍 Search for a author or a specific model", show_label=False)
139
 
140
+
141
  df_clickable = to_clickable(df)
142
  gr_df = gr.Dataframe(df_clickable, interactive=False, datatype=["markdown"]*len(df.columns))
143