Spaces:
Running
Running
Rename Speech Recognition tab to ASR
Browse files
app.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
"""Real World VoiceEQ Benchmark — Gradio Space (Text-to-Speech / Speech-to-Speech /
|
| 2 |
-
Voice Controllability / Speech Understanding /
|
| 3 |
|
| 4 |
One Space: an About tab (about.json prose + one clickable card per panel that
|
| 5 |
jumps to its tab), then one tab per modality (plus the SLM Judge
|
|
@@ -18,8 +18,8 @@ Heatmap modes:
|
|
| 18 |
(all rater-scored tabs).
|
| 19 |
* "heatmap": {"mode": "absolute", "stops": [...], "unit", "legend"}: fixed value
|
| 20 |
anchors shared by every column, so a color means the same thing across columns;
|
| 21 |
-
each column's "direction" is honoured ("asc" => lower is better) —
|
| 22 |
-
|
| 23 |
* "heatmap": {"mode": "normalized"}: each factor column is scaled by its own
|
| 24 |
min/max across providers (direction honoured too), best value greenest.
|
| 25 |
|
|
@@ -57,7 +57,7 @@ MODALITIES = [
|
|
| 57 |
("Voice Controllability", "voice_creation", "voice_creation_leaderboard.json"),
|
| 58 |
("Speech-to-Speech", "sts", "sts_leaderboard.json"),
|
| 59 |
("Speech Understanding", "stt", "stt_leaderboard.json"),
|
| 60 |
-
("
|
| 61 |
("SLM Judge", "slm_judge", "slm_judge_leaderboard.json"),
|
| 62 |
]
|
| 63 |
|
|
|
|
| 1 |
"""Real World VoiceEQ Benchmark — Gradio Space (Text-to-Speech / Speech-to-Speech /
|
| 2 |
+
Voice Controllability / Speech Understanding / ASR / SLM Judge).
|
| 3 |
|
| 4 |
One Space: an About tab (about.json prose + one clickable card per panel that
|
| 5 |
jumps to its tab), then one tab per modality (plus the SLM Judge
|
|
|
|
| 18 |
(all rater-scored tabs).
|
| 19 |
* "heatmap": {"mode": "absolute", "stops": [...], "unit", "legend"}: fixed value
|
| 20 |
anchors shared by every column, so a color means the same thing across columns;
|
| 21 |
+
each column's "direction" is honoured ("asc" => lower is better) — the ASR
|
| 22 |
+
WER and SLM Judge Pearson-r tabs.
|
| 23 |
* "heatmap": {"mode": "normalized"}: each factor column is scaled by its own
|
| 24 |
min/max across providers (direction honoured too), best value greenest.
|
| 25 |
|
|
|
|
| 57 |
("Voice Controllability", "voice_creation", "voice_creation_leaderboard.json"),
|
| 58 |
("Speech-to-Speech", "sts", "sts_leaderboard.json"),
|
| 59 |
("Speech Understanding", "stt", "stt_leaderboard.json"),
|
| 60 |
+
("ASR", "asr", "asr_leaderboard.json"),
|
| 61 |
("SLM Judge", "slm_judge", "slm_judge_leaderboard.json"),
|
| 62 |
]
|
| 63 |
|