Pendrokar commited on
Commit
d434929
·
1 Parent(s): b10ac7d

hover model name fix; README new models linked

Browse files
Files changed (2) hide show
  1. README.md +2 -0
  2. app/models.py +3 -1
README.md CHANGED
@@ -16,10 +16,12 @@ models:
16
  - fishaudio/fish-speech-1.4
17
  - fishaudio/fish-speech-1.5
18
  - hexgrad/Kokoro-82M
 
19
  - metavoiceio/metavoice-1B-v0.1
20
  - myshell-ai/MeloTTS-English-v2
21
  - myshell-ai/OpenVoice
22
  - myshell-ai/OpenVoiceV2
 
23
  - parler-tts/parler-tts-mini-v1
24
  - Pendrokar/xvapitch_expresso
25
  - SWivid/F5-TTS
 
16
  - fishaudio/fish-speech-1.4
17
  - fishaudio/fish-speech-1.5
18
  - hexgrad/Kokoro-82M
19
+ - lj1995/GPT-SoVITS
20
  - metavoiceio/metavoice-1B-v0.1
21
  - myshell-ai/MeloTTS-English-v2
22
  - myshell-ai/OpenVoice
23
  - myshell-ai/OpenVoiceV2
24
+ - OuteAI/OuteTTS-0.2-500M
25
  - parler-tts/parler-tts-mini-v1
26
  - Pendrokar/xvapitch_expresso
27
  - SWivid/F5-TTS
app/models.py CHANGED
@@ -280,7 +280,7 @@ HF_SPACES = {
280
  'series': 'GPT-SoVITS',
281
  },
282
  'ameerazam08/OuteTTS-0.2-500M-Demo': {
283
- 'name': 'OuteTTS 500M',
284
  'function': '/generate_tts',
285
  'text_param_index': 0,
286
  'return_audio_index': 0,
@@ -493,6 +493,8 @@ def make_link_to_space(model_name, for_leaderboard=False):
493
 
494
  if model_name in AVAILABLE_MODELS:
495
  style += 'color: var(--link-text-color);'
 
 
496
  else:
497
  style += 'font-style: italic;'
498
  title += model_name +'; Disabled (See AVAILABLE_MODELS within code for why)'
 
280
  'series': 'GPT-SoVITS',
281
  },
282
  'ameerazam08/OuteTTS-0.2-500M-Demo': {
283
+ 'name': 'OuteTTS 0.2 500M',
284
  'function': '/generate_tts',
285
  'text_param_index': 0,
286
  'return_audio_index': 0,
 
493
 
494
  if model_name in AVAILABLE_MODELS:
495
  style += 'color: var(--link-text-color);'
496
+ if '/' in model_name:
497
+ title += model_name
498
  else:
499
  style += 'font-style: italic;'
500
  title += model_name +'; Disabled (See AVAILABLE_MODELS within code for why)'