Spaces:
Running
Running
[release] speechIQ layout imprv-v2
Browse files- app.py +15 -13
- src/about.py +6 -6
app.py
CHANGED
|
@@ -86,19 +86,6 @@ with demo:
|
|
| 86 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
| 87 |
with gr.TabItem("🏅 SpeechIQ Leaderboard", elem_id="speechiq-leaderboard-tab", id=0):
|
| 88 |
|
| 89 |
-
# Statistics section - moved before table
|
| 90 |
-
with gr.Row():
|
| 91 |
-
gr.Markdown(get_top_performers(speechiq_df), elem_classes="markdown-text stats-section")
|
| 92 |
-
|
| 93 |
-
# Main leaderboard table
|
| 94 |
-
with gr.Row():
|
| 95 |
-
leaderboard_table = gr.Dataframe(
|
| 96 |
-
value=speechiq_df,
|
| 97 |
-
headers=speechiq_df.columns.tolist() if not speechiq_df.empty else ['Rank', 'Speech IQ', 'Remember', 'Understand', 'Apply', 'Model Type', 'Setup', 'Audio Encoder'],
|
| 98 |
-
interactive=False,
|
| 99 |
-
elem_classes="leaderboard-table"
|
| 100 |
-
)
|
| 101 |
-
|
| 102 |
# Legend and explanation
|
| 103 |
with gr.Row():
|
| 104 |
gr.Markdown("""
|
|
@@ -115,6 +102,21 @@ with demo:
|
|
| 115 |
|
| 116 |
*Higher scores indicate better performance across all metrics.*
|
| 117 |
""", elem_classes="markdown-text")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 118 |
|
| 119 |
with gr.TabItem("📊 Analysis", elem_id="analysis-tab", id=1):
|
| 120 |
with gr.Row():
|
|
|
|
| 86 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
| 87 |
with gr.TabItem("🏅 SpeechIQ Leaderboard", elem_id="speechiq-leaderboard-tab", id=0):
|
| 88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 89 |
# Legend and explanation
|
| 90 |
with gr.Row():
|
| 91 |
gr.Markdown("""
|
|
|
|
| 102 |
|
| 103 |
*Higher scores indicate better performance across all metrics.*
|
| 104 |
""", elem_classes="markdown-text")
|
| 105 |
+
|
| 106 |
+
# Main leaderboard table
|
| 107 |
+
with gr.Row():
|
| 108 |
+
leaderboard_table = gr.Dataframe(
|
| 109 |
+
value=speechiq_df,
|
| 110 |
+
headers=speechiq_df.columns.tolist() if not speechiq_df.empty else ['Rank', 'Speech IQ', 'Remember', 'Understand', 'Apply', 'Model Type', 'Setup', 'Audio Encoder'],
|
| 111 |
+
interactive=False,
|
| 112 |
+
elem_classes="leaderboard-table"
|
| 113 |
+
)
|
| 114 |
+
|
| 115 |
+
# Statistics section - moved before table
|
| 116 |
+
with gr.Row():
|
| 117 |
+
gr.Markdown(get_top_performers(speechiq_df), elem_classes="markdown-text stats-section")
|
| 118 |
+
|
| 119 |
+
|
| 120 |
|
| 121 |
with gr.TabItem("📊 Analysis", elem_id="analysis-tab", id=1):
|
| 122 |
with gr.Row():
|
src/about.py
CHANGED
|
@@ -87,10 +87,10 @@ Please provide:
|
|
| 87 |
For questions about SpeechIQ evaluation or to submit your model, please contact the research team.
|
| 88 |
"""
|
| 89 |
|
| 90 |
-
CITATION_BUTTON_LABEL = "
|
| 91 |
-
CITATION_BUTTON_TEXT = r"""@article{
|
| 92 |
-
title={Speech Intelligence Quotient
|
| 93 |
-
author={
|
| 94 |
-
journal={
|
| 95 |
-
year={
|
| 96 |
}"""
|
|
|
|
| 87 |
For questions about SpeechIQ evaluation or to submit your model, please contact the research team.
|
| 88 |
"""
|
| 89 |
|
| 90 |
+
CITATION_BUTTON_LABEL = "Refer to the following ACL 2025 main conference paper."
|
| 91 |
+
CITATION_BUTTON_TEXT = r"""@article{speechiq2025,
|
| 92 |
+
title={SpeechIQ: Speech Intelligence Quotient Across Cognitive Levels in Voice Understanding Large Language Models},
|
| 93 |
+
author={Zhen Wan, Chao-Han Huck Yang, Yahan Yu, Jinchuan Tian, Sheng Li, Ke Hu, Zhehuai Chen, Shinji Watanabe, Fei Cheng, Chenhui Chu, Sadao Kurohashi},
|
| 94 |
+
journal={ACL 2025 main conference},
|
| 95 |
+
year={2025}
|
| 96 |
}"""
|