AntonioMS commited on
Commit
d5769e4
·
1 Parent(s): de72597

Upload test version

Browse files
Files changed (1) hide show
  1. app.py +4 -55
app.py CHANGED
@@ -65,73 +65,22 @@ with gr.Blocks(analytics_enabled=False) as demo:
65
  ## <img src="https://huggingface.co/spaces/proxectonos/README/resolve/main/title-card.png" width="100%" style="border-radius: 0.75rem;">
66
  """
67
  )
68
- gr.Markdown(
69
- """
70
- <br />
71
- ## 🐸Coqui.ai News
72
- - 📣 ⓍTTS, our production TTS model that can speak 13 languages, is released [Blog Post](https://coqui.ai/blog/tts/open_xtts), [Demo](https://huggingface.co/spaces/coqui/xtts), [Docs](https://tts.readthedocs.io/en/dev/models/xtts.html)
73
- - 📣 [🐶Bark](https://github.com/suno-ai/bark) is now available for inference with unconstrained voice cloning. [Docs](https://tts.readthedocs.io/en/dev/models/bark.html)
74
- - 📣 You can use [~1100 Fairseq models](https://github.com/facebookresearch/fairseq/tree/main/examples/mms) with 🐸TTS.
75
- - 📣 🐸TTS now supports 🐢Tortoise with faster inference. [Docs](https://tts.readthedocs.io/en/dev/models/tortoise.html)
76
- - 📣 **Coqui Studio API** is landed on 🐸TTS. - [Example](https://github.com/coqui-ai/TTS/blob/dev/README.md#-python-api)
77
- - 📣 [**Coqui Studio API**](https://docs.coqui.ai/docs) is live.
78
- - 📣 Voice generation with prompts - **Prompt to Voice** - is live on [**Coqui Studio**](https://app.coqui.ai/auth/signin)!! - [Blog Post](https://coqui.ai/blog/tts/prompt-to-voice)
79
- - 📣 Voice generation with fusion - **Voice fusion** - is live on [**Coqui Studio**](https://app.coqui.ai/auth/signin).
80
- - 📣 Voice cloning is live on [**Coqui Studio**](https://app.coqui.ai/auth/signin).
81
- <br>
82
- """
83
- )
84
- with gr.Column():
85
  gr.Markdown(
86
  """
87
  <br/>
88
- 💻 This space showcases some of the **[CoquiTTS](https://github.com/coqui-ai/TTS)** models.
89
- <br/>
90
- There are > 30 languages with single and multi speaker models, all thanks to our 👑 Contributors.
91
  <br/>
92
- Visit the links below for more.
93
- | | |
94
- | ------------------------------- | --------------------------------------- |
95
- | 🐸💬 **CoquiTTS** | [Github](https://github.com/coqui-ai/TTS) |
96
- | 💼 **Documentation** | [ReadTheDocs](https://tts.readthedocs.io/en/latest/)
97
- | 👩‍💻 **Questions** | [GitHub Discussions] |
98
- | 🗯 **Community** | [![Dicord](https://img.shields.io/discord/1037326658807533628?color=%239B59B6&label=chat%20on%20discord)](https://discord.gg/5eXr5seRrv) |
99
- [github issue tracker]: https://github.com/coqui-ai/tts/issues
100
- [github discussions]: https://github.com/coqui-ai/TTS/discussions
101
- [discord]: https://discord.gg/5eXr5seRrv
102
  """
103
  )
104
-
105
- with gr.Row():
106
- gr.Markdown(
107
- """
108
- <details>
109
- <summary>👑 Model contributors</summary>
110
- - <a href="https://github.com/nmstoker/" target="_blank">@nmstoker</a>
111
- - <a href="https://github.com/kaiidams/" target="_blank">@kaiidams</a>
112
- - <a href="https://github.com/WeberJulian/" target="_blank">@WeberJulian,</a>
113
- - <a href="https://github.com/Edresson/" target="_blank">@Edresson</a>
114
- - <a href="https://github.com/thorstenMueller/" target="_blank">@thorstenMueller</a>
115
- - <a href="https://github.com/r-dh/" target="_blank">@r-dh</a>
116
- - <a href="https://github.com/kirianguiller/" target="_blank">@kirianguiller</a>
117
- - <a href="https://github.com/robinhad/" target="_blank">@robinhad</a>
118
- - <a href="https://github.com/fkarabiber/" target="_blank">@fkarabiber</a>
119
- - <a href="https://github.com/nicolalandro/" target="_blank">@nicolalandro</a>
120
- - <a href="https://github.com/a-froghyar" target="_blank">@a-froghyar</a>
121
- - <a href="https://github.com/manmay-nakhashi" target="_blank">@manmay-nakhashi</a>
122
- - <a href="https://github.com/noml4u" target="_blank">@noml4u</a>
123
- </details>
124
- <br/>
125
- """
126
- )
127
 
128
  with gr.Row():
129
  with gr.Column():
130
- input_text = gr.inputs.Textbox(
131
  label="Input Text",
132
  default="This sentence has been generated by a speech synthesis system.",
133
  )
134
- model_select = gr.inputs.Dropdown(
135
  label="Pick Model: tts_models/<language>/<dataset>/<model_name>",
136
  choices=MODEL_NAMES,
137
  default="tts_models/en/jenny/jenny"
 
65
  ## <img src="https://huggingface.co/spaces/proxectonos/README/resolve/main/title-card.png" width="100%" style="border-radius: 0.75rem;">
66
  """
67
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  gr.Markdown(
69
  """
70
  <br/>
71
+ 💻 Este space mostra algúns dos modelos TTS desenvolvidos polo **[Proxecto Nós](https://huggingface.co/proxectonos)**.
 
 
72
  <br/>
 
 
 
 
 
 
 
 
 
 
73
  """
74
  )
75
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
 
77
  with gr.Row():
78
  with gr.Column():
79
+ input_text = gr.Textbox(
80
  label="Input Text",
81
  default="This sentence has been generated by a speech synthesis system.",
82
  )
83
+ model_select = gr.Dropdown(
84
  label="Pick Model: tts_models/<language>/<dataset>/<model_name>",
85
  choices=MODEL_NAMES,
86
  default="tts_models/en/jenny/jenny"