Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ def run(model_id, benchmark, sample_count):
|
|
60 |
])
|
61 |
return score, formatted
|
62 |
|
63 |
-
with gr.Blocks(css="body {font-family: Inter, sans-serif; padding: 1em; max-width: 900px; margin: auto;}", analytics_enabled=False
|
64 |
gr.Markdown("""
|
65 |
# 🤖 LLM Benchmark Evaluator
|
66 |
|
@@ -87,4 +87,4 @@ with gr.Blocks(css="body {font-family: Inter, sans-serif; padding: 1em; max-widt
|
|
87 |
|
88 |
run_button.click(run, inputs=[model_id, benchmark, sample_count], outputs=[acc_output, detail_output])
|
89 |
|
90 |
-
demo.launch()
|
|
|
60 |
])
|
61 |
return score, formatted
|
62 |
|
63 |
+
with gr.Blocks(css="body {font-family: Inter, sans-serif; padding: 1em; max-width: 900px; margin: auto;}", analytics_enabled=False) as demo:
|
64 |
gr.Markdown("""
|
65 |
# 🤖 LLM Benchmark Evaluator
|
66 |
|
|
|
87 |
|
88 |
run_button.click(run, inputs=[model_id, benchmark, sample_count], outputs=[acc_output, detail_output])
|
89 |
|
90 |
+
demo.launch()
|