Korakoe commited on
Commit
8bde9d2
1 Parent(s): 17ce98b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -47,6 +47,8 @@ INTRO = """
47
  </div>
48
 
49
  <p align="center", style="font-size: 1vw; font-weight: bold; color: #ff593e;">A StyleTTS2 fine-tune, designed for expressiveness.</p>
 
 
50
 
51
  <hr>
52
  """
@@ -206,7 +208,7 @@ def generate(audio_path, ins, speed, alpha, beta, embedding, steps=100):
206
 
207
 
208
  if torch.cuda.is_available():
209
- other_tts = tts.StyleTTS2(model_checkpoint_path='./epoch_2nd_00012.pth', config_path="models/config_ft.yml")
210
  else:
211
  other_tts = None
212
 
 
47
  </div>
48
 
49
  <p align="center", style="font-size: 1vw; font-weight: bold; color: #ff593e;">A StyleTTS2 fine-tune, designed for expressiveness.</p>
50
+ <p align="center", style="font-size: 1vw; font-weight: bold; color: #ff593e;">THIS IS AN EARLY TEST CHECKPOINT, MADE PUBLIC</p>
51
+ <p align="center", style="font-size: 1vw; font-weight: bold; color: #ff593e;">EPOCH 9 ON 178 HOURS OF AUDIO DATA</p>
52
 
53
  <hr>
54
  """
 
208
 
209
 
210
  if torch.cuda.is_available():
211
+ other_tts = tts.StyleTTS2(model_checkpoint_path='./epoch_2nd_00008.pth', config_path="models/config_ft.yml")
212
  else:
213
  other_tts = None
214