Spaces:
Sleeping
Sleeping
changes to font color
Browse files
app.py
CHANGED
|
@@ -312,13 +312,17 @@ with gr.Blocks(css=custom_css, title="TD-EVAL Leaderboard") as demo:
|
|
| 312 |
</div>
|
| 313 |
''')
|
| 314 |
|
| 315 |
-
with gr.
|
| 316 |
-
|
| 317 |
-
|
| 318 |
-
|
| 319 |
|
| 320 |
-
with gr.
|
| 321 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 322 |
|
| 323 |
hidden_sort_state = gr.State(value={"sort_by": "Average Score", "ascending": False})
|
| 324 |
|
|
|
|
| 312 |
</div>
|
| 313 |
''')
|
| 314 |
|
| 315 |
+
with gr.Row(elem_classes="checkbox-panel"):
|
| 316 |
+
cb_mwoz = gr.Checkbox(label="mwoz", value=True)
|
| 317 |
+
cb_tau_airline = gr.Checkbox(label="tau-airline", value=True)
|
| 318 |
+
cb_tau_retail = gr.Checkbox(label="tau-retail", value=True)
|
| 319 |
|
| 320 |
+
with gr.Row(elem_classes="search-panel"):
|
| 321 |
+
search_input = gr.Textbox(
|
| 322 |
+
label="Search models",
|
| 323 |
+
placeholder="Type to filter…",
|
| 324 |
+
elem_classes="search-input"
|
| 325 |
+
)
|
| 326 |
|
| 327 |
hidden_sort_state = gr.State(value={"sort_by": "Average Score", "ascending": False})
|
| 328 |
|