derekl35 HF Staff commited on
Commit
fd31dbe
·
verified ·
1 Parent(s): 475af3d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -286,6 +286,15 @@ def update_leaderboards_data():
286
 
287
  return quant_rows, user_rows
288
 
 
 
 
 
 
 
 
 
 
289
  with gr.Blocks(title="FLUX Quantization Challenge", theme=gr.themes.Soft()) as demo:
290
  gr.Markdown("# FLUX Model Quantization Challenge")
291
  with gr.Tabs():
 
286
 
287
  return quant_rows, user_rows
288
 
289
+ quant_df = gr.DataFrame(
290
+ headers=["Method", "Correct Guesses", "Total Attempts", "Detectability %"],
291
+ interactive=False, col_count=(4, "fixed")
292
+ )
293
+ user_df = gr.DataFrame(
294
+ headers=["User", "Correct Guesses", "Total Attempts", "Accuracy %"],
295
+ interactive=False, col_count=(4, "fixed")
296
+ )
297
+
298
  with gr.Blocks(title="FLUX Quantization Challenge", theme=gr.themes.Soft()) as demo:
299
  gr.Markdown("# FLUX Model Quantization Challenge")
300
  with gr.Tabs():