Spaces:
Sleeping
Sleeping
j-tobias
commited on
Commit
β’
2ff44a9
1
Parent(s):
946726e
improved UI
Browse files
app.py
CHANGED
@@ -88,11 +88,13 @@ with gr.Blocks() as demo:
|
|
88 |
visible=True,
|
89 |
height=500,
|
90 |
)
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
|
|
|
|
96 |
column_radio.change(update_table, inputs=[column_radio], outputs=[leaderboard_table])
|
97 |
|
98 |
with gr.TabItem("π Metrics", elem_id="od-benchmark-tab-table", id=1):
|
|
|
88 |
visible=True,
|
89 |
height=500,
|
90 |
)
|
91 |
+
with gr.Accordion("π Select a more detailed subset",open=False):
|
92 |
+
column_radio = gr.Radio(
|
93 |
+
["All Columns", "Main Metrics", "Narrated", "Oratory", "Spontaneous"],
|
94 |
+
label="Categories",
|
95 |
+
value="All Columns"
|
96 |
+
)
|
97 |
+
|
98 |
column_radio.change(update_table, inputs=[column_radio], outputs=[leaderboard_table])
|
99 |
|
100 |
with gr.TabItem("π Metrics", elem_id="od-benchmark-tab-table", id=1):
|