Spaces:
Running
Running
Update app.py
Browse files
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():
|