Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
mrfakename
commited on
Commit
•
e080e91
1
Parent(s):
7776ec5
Update app.py
Browse files
app.py
CHANGED
@@ -199,6 +199,7 @@ model_names = {
|
|
199 |
'hierspeech': 'HierSpeech++',
|
200 |
'pheme': 'PolyAI Pheme',
|
201 |
'speecht5': 'SpeechT5',
|
|
|
202 |
}
|
203 |
model_licenses = {
|
204 |
'styletts2': 'MIT',
|
@@ -222,6 +223,27 @@ model_licenses = {
|
|
222 |
'hierspeech': 'MIT',
|
223 |
'pheme': 'CC-BY',
|
224 |
'speecht5': 'MIT',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
}
|
226 |
# def get_random_split(existing_split=None):
|
227 |
# choice = random.choice(list(audio_dataset.keys()))
|
|
|
199 |
'hierspeech': 'HierSpeech++',
|
200 |
'pheme': 'PolyAI Pheme',
|
201 |
'speecht5': 'SpeechT5',
|
202 |
+
'metavoice': 'MetaVoice-1B',
|
203 |
}
|
204 |
model_licenses = {
|
205 |
'styletts2': 'MIT',
|
|
|
223 |
'hierspeech': 'MIT',
|
224 |
'pheme': 'CC-BY',
|
225 |
'speecht5': 'MIT',
|
226 |
+
'metavoice': 'Apache 2.0',
|
227 |
+
}
|
228 |
+
model_links = {
|
229 |
+
'styletts2': 'https://github.com/yl4579/StyleTTS2',
|
230 |
+
'tacotron': 'https://github.com/NVIDIA/tacotron2',
|
231 |
+
'speedyspeech': 'https://github.com/janvainer/speedyspeech',
|
232 |
+
'overflow': 'https://github.com/shivammehta25/OverFlow',
|
233 |
+
'vits': 'https://github.com/jaywalnut310/vits',
|
234 |
+
'openvoice': 'https://github.com/myshell-ai/OpenVoice',
|
235 |
+
'neuralhmm': 'https://github.com/ketranm/neuralHMM',
|
236 |
+
'glow': 'https://github.com/jaywalnut310/glow-tts',
|
237 |
+
'fastpitch': 'https://fastpitch.github.io/',
|
238 |
+
'tortoise': 'https://github.com/neonbjb/tortoise-tts',
|
239 |
+
'xtts2': 'https://huggingface.co/coqui/XTTS-v2',
|
240 |
+
'xtts': 'https://huggingface.co/coqui/XTTS-v1',
|
241 |
+
'elevenlabs': 'https://elevenlabs.io/',
|
242 |
+
'openai': 'https://help.openai.com/en/articles/8555505-tts-api',
|
243 |
+
'hierspeech': 'https://github.com/sh-lee-prml/HierSpeechpp',
|
244 |
+
'pheme': 'https://github.com/PolyAI-LDN/pheme',
|
245 |
+
'speecht5': 'https://github.com/microsoft/SpeechT5',
|
246 |
+
'metavoice': 'https://github.com/metavoiceio/metavoice-src',
|
247 |
}
|
248 |
# def get_random_split(existing_split=None):
|
249 |
# choice = random.choice(list(audio_dataset.keys()))
|