Spaces:
Runtime error
Runtime error
Update src/display/about.py
Browse files- src/display/about.py +5 -3
src/display/about.py
CHANGED
@@ -13,15 +13,17 @@ class Tasks(Enum):
|
|
13 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
14 |
task0 = Task("tts_vocoder1", "MCD", "MCD Eval")
|
15 |
task1 = Task("tts_vocoder2", "Log F0 RMSE", "Log F0 RMSE Eval")
|
16 |
-
task2 = Task("tts_vocoder3", "
|
|
|
|
|
17 |
|
18 |
|
19 |
# Your leaderboard name
|
20 |
-
TITLE = """<h1 align="center" id="space-title">Discrete-based Vocoder Leaderboard</h1>"""
|
21 |
|
22 |
# What does your leaderboard evaluate?
|
23 |
INTRODUCTION_TEXT = """
|
24 |
-
The leaderboard for discrete speech challenge (TTS Challenge - Vocoder Track) at Interspeech 2024. Challenge details can be found at https://www.wavlab.org/activities/2024/Interspeech2024-Discrete-Speech-Unit-Challenge/
|
25 |
"""
|
26 |
|
27 |
# Which evaluations are you running? how can people reproduce what you have?
|
|
|
13 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
14 |
task0 = Task("tts_vocoder1", "MCD", "MCD Eval")
|
15 |
task1 = Task("tts_vocoder2", "Log F0 RMSE", "Log F0 RMSE Eval")
|
16 |
+
task2 = Task("tts_vocoder3", "WER", "ASR Eval")
|
17 |
+
task3 = Task("tts_vocoder4", "UTMOS", "UTMOS Eval")
|
18 |
+
task4 = Task("tts_vocoder5", "Bitrate", "Bitrate")
|
19 |
|
20 |
|
21 |
# Your leaderboard name
|
22 |
+
TITLE = """<h1 align="center" id="space-title">Discrete-based TTS (Acoustic+Vocoder) Leaderboard</h1>"""
|
23 |
|
24 |
# What does your leaderboard evaluate?
|
25 |
INTRODUCTION_TEXT = """
|
26 |
+
The leaderboard for discrete speech challenge (TTS Challenge - Acoustic+Vocoder Track) at Interspeech 2024. Challenge details can be found at https://www.wavlab.org/activities/2024/Interspeech2024-Discrete-Speech-Unit-Challenge/
|
27 |
"""
|
28 |
|
29 |
# Which evaluations are you running? how can people reproduce what you have?
|