mrfakename commited on
Commit
83020c7
1 Parent(s): d5dbd40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -9
app.py CHANGED
@@ -14,6 +14,7 @@ with open('harvard_sentences.txt') as f:
14
  ####################################
15
  # Constants
16
  ####################################
 
17
  AVAILABLE_MODELS = {
18
  'XTTS': 'xtts',
19
  'WhisperSpeech': 'whisperspeech',
@@ -145,19 +146,22 @@ Please fill out [this form](https://huggingface.co/spaces/{SPACE_ID}/discussions
145
  ABOUT = f"""
146
  ## About
147
 
148
- The TTS Arena is a project created to evaluate leading speech synthesis models. It is inspired by the [Chatbot Arena](https://chat.lmsys.org/) by LMSYS.
149
 
150
- ### How it Works
151
 
152
- First, vote on two samples of text-to-speech models. The models that synthesized the samples are not revealed to mitigate bias.
153
 
154
- As you vote, the leaderboard will be updated based on votes. We calculate a score for each model using a method similar to the [Elo system](https://en.wikipedia.org/wiki/Elo_rating_system).
155
 
156
- ### Motivation
157
-
158
- Recently, many new open-access speech synthesis models have been made available to the community. However, there is no standardized evaluation or benchmark to measure the quality and naturalness of these models.
159
-
160
- The TTS Arena is an attempt to benchmark these models and find the highest-quality models available to the community.
 
 
 
161
 
162
  {request}
163
 
 
14
  ####################################
15
  # Constants
16
  ####################################
17
+ BLOG_POST_LINK = '' # <<<<< ----
18
  AVAILABLE_MODELS = {
19
  'XTTS': 'xtts',
20
  'WhisperSpeech': 'whisperspeech',
 
146
  ABOUT = f"""
147
  ## About
148
 
149
+ The TTS Arena is a project created to evaluate leading speech synthesis models. It is inspired by the [Chatbot Arena](https://chat.lmsys.org/) by LMSys.
150
 
151
+ For more information, please check out our [blog post]({BLOG_POST_LINK})
152
 
153
+ ### Credits
154
 
155
+ Thank you to the following individuals who helped make this project possible:
156
 
157
+ * VB ([Twitter](https://twitter.com/reach_vb) / [Hugging Face](https://huggingface.co/reach-vb))
158
+ * Lucain Pouget ([Twitter](https://twitter.com/Wauplin) / [Hugging Face](https://huggingface.co/Wauplin))
159
+ * Clémentine Fourrier ([Twitter](https://twitter.com/clefourrier) / [Hugging Face](https://huggingface.co/clefourrier))
160
+ * Yoach Lacombe ([Twitter](https://twitter.com/yoachlacombe) / [Hugging Face](https://huggingface.co/ylacombe))
161
+ * Main Horse ([Twitter](https://twitter.com/main_horse) / [Hugging Face](https://huggingface.co/main-horse))
162
+ * Apolinário Passos ([Twitter](https://twitter.com/multimodalart) / [Hugging Face](https://huggingface.co/multimodalart))
163
+ * Sanchit Gandhi ([Twitter](https://twitter.com/sanchitgandhi99) / [Hugging Face](https://huggingface.co/sanchit-gandhi))
164
+ * Pedro Cuenca ([Twitter](https://twitter.com/pcuenq) / [Hugging Face](https://huggingface.co/pcuenq))
165
 
166
  {request}
167