Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
mrfakename
commited on
Commit
β’
7524c65
1
Parent(s):
60b0d11
update wording
Browse files
app.py
CHANGED
@@ -141,7 +141,7 @@ MUST_BE_LOGGEDIN = "Please login with Hugging Face to participate in the TTS Are
|
|
141 |
DESCR = """
|
142 |
# TTS Arena: Benchmarking TTS Models in the Wild
|
143 |
|
144 |
-
Vote to find the best
|
145 |
""".strip()
|
146 |
# INSTR = """
|
147 |
# ## Instructions
|
@@ -155,24 +155,24 @@ Vote to find the best Text-to-Speech model out there!
|
|
155 |
INSTR = """
|
156 |
## π³οΈ Vote
|
157 |
|
158 |
-
* Input
|
159 |
* Listen to the two audio clips, one after the other.
|
160 |
* Vote on which audio sounds more natural to you.
|
161 |
-
* Model names are revealed after the vote is cast.
|
162 |
|
163 |
-
Note:
|
164 |
""".strip()
|
165 |
request = ''
|
166 |
if SPACE_ID:
|
167 |
request = f"""
|
168 |
-
### Request
|
169 |
|
170 |
Please [create a Discussion](https://huggingface.co/spaces/{SPACE_ID}/discussions/new) to request a model.
|
171 |
"""
|
172 |
ABOUT = f"""
|
173 |
## π About
|
174 |
|
175 |
-
The TTS Arena
|
176 |
|
177 |
### Motivation
|
178 |
|
@@ -180,7 +180,7 @@ The field of speech synthesis has long lacked an accurate method to measure the
|
|
180 |
|
181 |
### The Arena
|
182 |
|
183 |
-
The leaderboard allows a user to enter text, which will be synthesized by two models. After listening to each sample, the user
|
184 |
|
185 |
### Credits
|
186 |
|
@@ -197,15 +197,15 @@ Thank you to the following individuals who helped make this project possible:
|
|
197 |
|
198 |
{request}
|
199 |
|
200 |
-
### Privacy
|
201 |
|
202 |
We may store text you enter and generated audio. We store a unique ID for each session. You agree that we may collect, share, and/or publish any data you input for research and/or commercial purposes.
|
203 |
|
204 |
### License
|
205 |
|
206 |
-
Generated audio clips cannot be redistributed and used for personal, non-commercial use only.
|
207 |
|
208 |
-
Random sentences
|
209 |
""".strip()
|
210 |
LDESC = """
|
211 |
## π Leaderboard
|
|
|
141 |
DESCR = """
|
142 |
# TTS Arena: Benchmarking TTS Models in the Wild
|
143 |
|
144 |
+
Vote to help the community find the best available text-to-speech model!
|
145 |
""".strip()
|
146 |
# INSTR = """
|
147 |
# ## Instructions
|
|
|
155 |
INSTR = """
|
156 |
## π³οΈ Vote
|
157 |
|
158 |
+
* Input text (English only) to synthesize audio (or press π² for random text).
|
159 |
* Listen to the two audio clips, one after the other.
|
160 |
* Vote on which audio sounds more natural to you.
|
161 |
+
* _Note: Model names are revealed after the vote is cast._
|
162 |
|
163 |
+
Note: It may take up to 30 seconds to synthesize audio.
|
164 |
""".strip()
|
165 |
request = ''
|
166 |
if SPACE_ID:
|
167 |
request = f"""
|
168 |
+
### Request a model
|
169 |
|
170 |
Please [create a Discussion](https://huggingface.co/spaces/{SPACE_ID}/discussions/new) to request a model.
|
171 |
"""
|
172 |
ABOUT = f"""
|
173 |
## π About
|
174 |
|
175 |
+
The TTS Arena evaluates leading speech synthesis models. It is inspired by LMsys's [Chatbot Arena](https://chat.lmsys.org/).
|
176 |
|
177 |
### Motivation
|
178 |
|
|
|
180 |
|
181 |
### The Arena
|
182 |
|
183 |
+
The leaderboard allows a user to enter text, which will be synthesized by two models. After listening to each sample, the user can vote on which model sounds more natural. Due to the risks of human bias and abuse, model names are revealed only after a vote is submitted.
|
184 |
|
185 |
### Credits
|
186 |
|
|
|
197 |
|
198 |
{request}
|
199 |
|
200 |
+
### Privacy statement
|
201 |
|
202 |
We may store text you enter and generated audio. We store a unique ID for each session. You agree that we may collect, share, and/or publish any data you input for research and/or commercial purposes.
|
203 |
|
204 |
### License
|
205 |
|
206 |
+
Generated audio clips cannot be redistributed and may be used for personal, non-commercial use only.
|
207 |
|
208 |
+
Random sentences are sourced from a filtered subset of the [Harvard Sentences](https://www.cs.columbia.edu/~hgs/audio/harvard.html).
|
209 |
""".strip()
|
210 |
LDESC = """
|
211 |
## π Leaderboard
|