Update constants.py
Browse files- constants.py +18 -0
constants.py
CHANGED
@@ -11,6 +11,24 @@ EVAL_REQUESTS_PATH = Path("eval_requests")
|
|
11 |
banner_url = "https://huggingface.co/datasets/reach-vb/random-images/resolve/main/asr_leaderboard.png"
|
12 |
BANNER = f'<div style="display: flex; justify-content: space-around;"><img src="{banner_url}" alt="Banner" style="width: 40vw; min-width: 300px; max-width: 600px;"> </div>'
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
TITLE = "<html> <head> <style> h1 {text-align: center;} </style> </head> <body> <h1> 🤗 Open Automatic Speech Recognition Leaderboard </b> </body> </html>"
|
15 |
|
16 |
INTRODUCTION_TEXT = "📐 Results on [EdAcc Dataset](https://huggingface.co/datasets/edinburghcstr/edacc) split by accents and gender. \
|
|
|
11 |
banner_url = "https://huggingface.co/datasets/reach-vb/random-images/resolve/main/asr_leaderboard.png"
|
12 |
BANNER = f'<div style="display: flex; justify-content: space-around;"><img src="{banner_url}" alt="Banner" style="width: 40vw; min-width: 300px; max-width: 600px;"> </div>'
|
13 |
|
14 |
+
EXPLANATION = """
|
15 |
+
## Why EdAcc Matters for ASR Evaluation
|
16 |
+
|
17 |
+
The EdAcc dataset is specifically designed to evaluate the robustness of Automatic Speech Recognition (ASR) models across diverse accents and demographics. This leaderboard helps you:
|
18 |
+
|
19 |
+
* **Assess Accent Fairness**: Compare model performance across 30+ different accents and speaker demographics
|
20 |
+
* **Evaluate Real-World Robustness**: Understand how ASR models perform beyond standard benchmarks
|
21 |
+
* **Make Informed Choices**: Select models that work well for your target demographics
|
22 |
+
|
23 |
+
### How to Read the Results
|
24 |
+
* **Average WER ⬇️**: Lower Word Error Rate (WER) is better
|
25 |
+
* **Average per Gender**: Average WER for each gender
|
26 |
+
* **Average per Accent**: Average WER for each accent
|
27 |
+
* **RTFx ⬆️**: Real-Time Factor - higher means faster processing
|
28 |
+
|
29 |
+
Use the column filter to focus on specific demographics or view all results together.
|
30 |
+
"""
|
31 |
+
|
32 |
TITLE = "<html> <head> <style> h1 {text-align: center;} </style> </head> <body> <h1> 🤗 Open Automatic Speech Recognition Leaderboard </b> </body> </html>"
|
33 |
|
34 |
INTRODUCTION_TEXT = "📐 Results on [EdAcc Dataset](https://huggingface.co/datasets/edinburghcstr/edacc) split by accents and gender. \
|