Spaces:
Running
Running
notification that leaderboard is currently being updated
Browse files- app.py +1 -1
- content.py +8 -0
app.py
CHANGED
|
@@ -175,7 +175,7 @@ with gr.Blocks(css=LEADERBOARD_CSS) as demo:
|
|
| 175 |
value=True,
|
| 176 |
)
|
| 177 |
|
| 178 |
-
submit_btn = gr.Button("Submit")
|
| 179 |
|
| 180 |
with Modal("Submission Feedback", visible=False) as modal:
|
| 181 |
feedback_text = gr.Text(
|
|
|
|
| 175 |
value=True,
|
| 176 |
)
|
| 177 |
|
| 178 |
+
submit_btn = gr.Button("Submit", interactive=False)
|
| 179 |
|
| 180 |
with Modal("Submission Feedback", visible=False) as modal:
|
| 181 |
feedback_text = gr.Text(
|
content.py
CHANGED
|
@@ -10,6 +10,10 @@ Welcome to the official leaderboard for benchmarking **multi-talker ASR systems*
|
|
| 10 |
LEADERBOARD_TAB_TITLE_MARKDOWN = """
|
| 11 |
## Leaderboard
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
Below you’ll find the latest results submitted to the benchmark. Models are evaluated using **`meeteval`** with **TCP-WER [%] (collar=5s)**.
|
| 14 |
|
| 15 |
For AISHELL-4 and AliMeeting conversion to simplified Mandarin is applied, and tcpCER [%] is used.
|
|
@@ -18,6 +22,10 @@ For AISHELL-4 and AliMeeting conversion to simplified Mandarin is applied, and t
|
|
| 18 |
SUBMISSION_TAB_TITLE_MARKDOWN = """
|
| 19 |
## Submit Your Model
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
To submit your MT-ASR hypothesis to the benchmark, complete the form below:
|
| 22 |
|
| 23 |
- **Submitted by**: Your name or team identifier.
|
|
|
|
| 10 |
LEADERBOARD_TAB_TITLE_MARKDOWN = """
|
| 11 |
## Leaderboard
|
| 12 |
|
| 13 |
+
> ⚠️ **Status: Under Maintenance**
|
| 14 |
+
>
|
| 15 |
+
> The leaderboard is currently being updated. New results will appear soon.
|
| 16 |
+
|
| 17 |
Below you’ll find the latest results submitted to the benchmark. Models are evaluated using **`meeteval`** with **TCP-WER [%] (collar=5s)**.
|
| 18 |
|
| 19 |
For AISHELL-4 and AliMeeting conversion to simplified Mandarin is applied, and tcpCER [%] is used.
|
|
|
|
| 22 |
SUBMISSION_TAB_TITLE_MARKDOWN = """
|
| 23 |
## Submit Your Model
|
| 24 |
|
| 25 |
+
> ⚠️ **Status: Under Maintenance**
|
| 26 |
+
>
|
| 27 |
+
> The leaderboard is currently being updated. Submit will be reactivated soon.
|
| 28 |
+
|
| 29 |
To submit your MT-ASR hypothesis to the benchmark, complete the form below:
|
| 30 |
|
| 31 |
- **Submitted by**: Your name or team identifier.
|