rjzevallos commited on
Commit
0631ef3
verified
1 Parent(s): a205daf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -0
app.py CHANGED
@@ -43,6 +43,14 @@ PESQ is a perceptual metric that evaluates the quality of speech in a similar ma
43
  Model performance is evaluated using [our test datasets](https://huggingface.co/spaces/projecte-aina/catalan_tts_arena/blob/main/bsc.txt). These datasets cover a variety of domains and acoustic conditions, ensuring a robust evaluation.
44
  """
45
 
 
 
 
 
 
 
 
 
46
 
47
 
48
  ####################################
@@ -91,6 +99,14 @@ with gr.Blocks(theme=theme) as demo:
91
 
92
  gr.Markdown(f"Last updated on **{LAST_UPDATED}**", elem_classes="markdown-text")
93
 
 
 
 
 
 
 
 
 
94
 
95
 
96
  # Lanzar la aplicaci贸n
 
43
  Model performance is evaluated using [our test datasets](https://huggingface.co/spaces/projecte-aina/catalan_tts_arena/blob/main/bsc.txt). These datasets cover a variety of domains and acoustic conditions, ensuring a robust evaluation.
44
  """
45
 
46
+ CITATION_TEXT = """@misc{catalan-tts-arena,
47
+ title = {Catalan Texto-to-Speech Leaderboard},
48
+ author = {Rodolfo Zevallos, Jos茅 Giraldo, Alex Peir贸-Lilja, Carme Armentano-Oller},
49
+ year = 2024,
50
+ publisher = {Hugging Face},
51
+ howpublished = "\\url{https://huggingface.co/spaces/projecte-aina/catalan_tts_arena}"
52
+ }
53
+ """
54
 
55
 
56
  ####################################
 
99
 
100
  gr.Markdown(f"Last updated on **{LAST_UPDATED}**", elem_classes="markdown-text")
101
 
102
+ with gr.Row():
103
+ with gr.Accordion("馃摍 Citation", open=False):
104
+ gr.Textbox(
105
+ value=CITATION_TEXT, lines=7,
106
+ label="Copy the BibTeX snippet to cite this source",
107
+ elem_id="citation-button",
108
+ show_copy_button=True,
109
+ )
110
 
111
 
112
  # Lanzar la aplicaci贸n