Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -52,6 +52,11 @@ CITATION_TEXT = """@misc{catalan-tts-arena,
|
|
52 |
}
|
53 |
"""
|
54 |
|
|
|
|
|
|
|
|
|
|
|
55 |
|
56 |
####################################
|
57 |
# Functions (static version)
|
@@ -79,7 +84,7 @@ theme = gr.themes.Base(
|
|
79 |
)
|
80 |
|
81 |
with gr.Blocks(theme=theme) as demo:
|
82 |
-
gr.Markdown(
|
83 |
|
84 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
85 |
with gr.TabItem("π
Leaderboard", elem_id="od-benchmark-tab-table", id=0):
|
|
|
52 |
}
|
53 |
"""
|
54 |
|
55 |
+
DESCR = """
|
56 |
+
# π Catalan TTS Arena: Benchmarking TTS Models
|
57 |
+
The Catalan TTS Leaderboard ranks and evaluates TTS models in Catalan.
|
58 |
+
The leaderboard currently focuses on Catalan TTS, and will be expanded to multilingual evaluation in later versions.
|
59 |
+
""".strip()
|
60 |
|
61 |
####################################
|
62 |
# Functions (static version)
|
|
|
84 |
)
|
85 |
|
86 |
with gr.Blocks(theme=theme) as demo:
|
87 |
+
gr.Markdown(DESCR)
|
88 |
|
89 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
90 |
with gr.TabItem("π
Leaderboard", elem_id="od-benchmark-tab-table", id=0):
|