Pendrokar commited on
Commit
60dc387
·
1 Parent(s): f1c2985

message fixes

Browse files
Files changed (1) hide show
  1. app/messages.py +10 -8
app/messages.py CHANGED
@@ -18,12 +18,12 @@ Choose 2 candidates and vote on which one is better! Currently in beta.
18
  * Vote on which audio sounds more natural to you.
19
  """
20
  INSTR = """
21
- ## Vote
22
- * Input text (English only) to synthesize audio (or press 🎲 for random text).
23
- * Listen to the two audio clips, one after the other.
24
- * Vote on which audio sounds more natural to you.
25
- * _Note: Model names are revealed after the vote is cast._
26
- Note: It may take up to 30 seconds to synthesize audio.
27
  """.strip()
28
  request = ""
29
  if SPACE_ID:
@@ -48,6 +48,9 @@ Thank you to the following individuals who helped make this project possible:
48
  * Sanchit Gandhi ([Twitter](https://twitter.com/sanchitgandhi99) / [Hugging Face](https://huggingface.co/sanchit-gandhi))
49
  * Apolinário Passos ([Twitter](https://twitter.com/multimodalart) / [Hugging Face](https://huggingface.co/multimodalart))
50
  * Pedro Cuenca ([Twitter](https://twitter.com/pcuenq) / [Hugging Face](https://huggingface.co/pcuenq))
 
 
 
51
  {request}
52
  ### Privacy statement
53
  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.
@@ -56,10 +59,9 @@ Generated audio clips cannot be redistributed and may be used for personal, non-
56
  Random sentences are sourced from a filtered subset of the [Harvard Sentences](https://www.cs.columbia.edu/~hgs/audio/harvard.html).
57
  """.strip()
58
  LDESC = """
59
- ## 🏆 Leaderboard
60
  Vote to help the community determine the best text-to-speech (TTS) models.
61
  The leaderboard displays models in descending order of how natural they sound (based on votes cast by the community).
62
- Important: In order to help keep results fair, the leaderboard hides results by default until the number of votes passes a threshold. Tick the `Reveal preliminary results` to show models without sufficient votes. Please note that preliminary results may be inaccurate.
63
  """.strip()
64
 
65
 
 
18
  * Vote on which audio sounds more natural to you.
19
  """
20
  INSTR = """
21
+ * Press ⚡ to quickly get cached sample pairs you've yet to vote on. (Fast 🐇)
22
+ * Or press 🎲 to randomly use a sentence from the list. (Slow 🐢)
23
+ * Or input text (🇺🇸 English only) to synthesize audio. (Slowest 🐌)
24
+ * _Listen to the two audio clips, one after the other and then vote on which audio sounds more natural to you._
25
+ * Model names are revealed after the vote is cast.
26
+ Note: It **may take up to 30 seconds** to ***synthesize*** audio.
27
  """.strip()
28
  request = ""
29
  if SPACE_ID:
 
48
  * Sanchit Gandhi ([Twitter](https://twitter.com/sanchitgandhi99) / [Hugging Face](https://huggingface.co/sanchit-gandhi))
49
  * Apolinário Passos ([Twitter](https://twitter.com/multimodalart) / [Hugging Face](https://huggingface.co/multimodalart))
50
  * Pedro Cuenca ([Twitter](https://twitter.com/pcuenq) / [Hugging Face](https://huggingface.co/pcuenq))
51
+
52
+ \* ***You are currently in a cloned/forked space of TTS-AGI/TTS-Arena***
53
+
54
  {request}
55
  ### Privacy statement
56
  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.
 
59
  Random sentences are sourced from a filtered subset of the [Harvard Sentences](https://www.cs.columbia.edu/~hgs/audio/harvard.html).
60
  """.strip()
61
  LDESC = """
 
62
  Vote to help the community determine the best text-to-speech (TTS) models.
63
  The leaderboard displays models in descending order of how natural they sound (based on votes cast by the community).
64
+ Important: In order to help keep results fair, the leaderboard hides results by default until the number of votes passes a threshold. Tick the `Reveal preliminary results` to show models without sufficient votes. Please note that preliminary results may be inaccurate. [This dataset is public](https://huggingface.co/datasets/{DB_DATASET_ID}) and only saves the hardcoded sentences while keeping the voters anonymous.
65
  """.strip()
66
 
67