Update app.py
Browse files
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
|
| 149 |
|
| 150 |
-
|
| 151 |
|
| 152 |
-
|
| 153 |
|
| 154 |
-
|
| 155 |
|
| 156 |
-
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
|
|
|
|
|
|
|
|
|
| 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 |
|