Spaces:
Sleeping
Sleeping
latest gradio version
Browse files
README.md
CHANGED
|
@@ -8,7 +8,7 @@ app_file: app.py
|
|
| 8 |
pinned: true
|
| 9 |
license: mit
|
| 10 |
short_description: Benchmarking LLMs on standard and modified FizzBuzz
|
| 11 |
-
sdk_version: 5.
|
| 12 |
tags:
|
| 13 |
- leaderboard
|
| 14 |
---
|
|
|
|
| 8 |
pinned: true
|
| 9 |
license: mit
|
| 10 |
short_description: Benchmarking LLMs on standard and modified FizzBuzz
|
| 11 |
+
sdk_version: 6.5.1
|
| 12 |
tags:
|
| 13 |
- leaderboard
|
| 14 |
---
|
app.py
CHANGED
|
@@ -116,7 +116,7 @@ with gr.Blocks(title="FizzBuzz LLM Benchmark") as demo:
|
|
| 116 |
table = gr.Dataframe(
|
| 117 |
value=initial_df,
|
| 118 |
interactive=True,
|
| 119 |
-
|
| 120 |
)
|
| 121 |
table.input(on_data_edit, inputs=[table], outputs=[plot])
|
| 122 |
|
|
|
|
| 116 |
table = gr.Dataframe(
|
| 117 |
value=initial_df,
|
| 118 |
interactive=True,
|
| 119 |
+
column_count=(3, "fixed"),
|
| 120 |
)
|
| 121 |
table.input(on_data_edit, inputs=[table], outputs=[plot])
|
| 122 |
|