Spaces:
Runtime error
Runtime error
Reverted to commit ff193d9
Browse files
app.py
CHANGED
|
@@ -307,29 +307,16 @@ with demo:
|
|
| 307 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
| 308 |
|
| 309 |
with gr.Row():
|
| 310 |
-
with gr.Accordion("🎯 Submission Guidelines", open=
|
| 311 |
gr.Markdown(SUBMISSION_TEXT, elem_classes="markdown-text")
|
| 312 |
|
| 313 |
with gr.Row():
|
| 314 |
-
with gr.Accordion("📙 Citation", open=
|
| 315 |
citation_button = gr.TextArea(
|
| 316 |
value=CITATION_BUTTON_TEXT,
|
| 317 |
label=CITATION_BUTTON_LABEL,
|
| 318 |
elem_id="citation-button",
|
| 319 |
-
)
|
| 320 |
-
bibtex_citation = gr.Code(
|
| 321 |
-
value="""@inproceedings{yang2024large,
|
| 322 |
-
title={Large language model based generative error correction: A challenge and baselines for speech recognition, speaker tagging, and emotion recognition},
|
| 323 |
-
author={Yang, Chao-Han Huck and Park, Taejin and Gong, Yuan and Li, Yuanchao and Chen, Zhehuai and Lin, Yen-Ting and Chen, Chen and Hu, Yuchen and Dhawan, Kunal and {\.Z}elasko, Piotr and others},
|
| 324 |
-
booktitle={2024 IEEE Spoken Language Technology Workshop (SLT)},
|
| 325 |
-
pages={371--378},
|
| 326 |
-
year={2024},
|
| 327 |
-
organization={IEEE}
|
| 328 |
-
}""",
|
| 329 |
-
language="text",
|
| 330 |
-
label="BibTeX Citation",
|
| 331 |
-
elem_id="bibtex-citation",
|
| 332 |
-
)
|
| 333 |
with gr.Tab("Results: Dev"):
|
| 334 |
leaderboard_table_dev = gr.components.Dataframe(
|
| 335 |
value=dev_dataset_dataframe, datatype=TYPES, interactive=False,
|
|
|
|
| 307 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
| 308 |
|
| 309 |
with gr.Row():
|
| 310 |
+
with gr.Accordion("🎯 Submission Guidelines", open=False):
|
| 311 |
gr.Markdown(SUBMISSION_TEXT, elem_classes="markdown-text")
|
| 312 |
|
| 313 |
with gr.Row():
|
| 314 |
+
with gr.Accordion("📙 Citation", open=False):
|
| 315 |
citation_button = gr.TextArea(
|
| 316 |
value=CITATION_BUTTON_TEXT,
|
| 317 |
label=CITATION_BUTTON_LABEL,
|
| 318 |
elem_id="citation-button",
|
| 319 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 320 |
with gr.Tab("Results: Dev"):
|
| 321 |
leaderboard_table_dev = gr.components.Dataframe(
|
| 322 |
value=dev_dataset_dataframe, datatype=TYPES, interactive=False,
|