AlexK-PL commited on
Commit
b48749f
·
1 Parent(s): a25696f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -14,6 +14,12 @@ import numpy as np
14
  torch.manual_seed(1234)
15
  MAX_WAV_VALUE = 32768.0
16
 
 
 
 
 
 
 
17
  # load trained tacotron2 + GST model:
18
  model = load_model(hparams)
19
  checkpoint_path = "trained_models/checkpoint_78000.model"
 
14
  torch.manual_seed(1234)
15
  MAX_WAV_VALUE = 32768.0
16
 
17
+ DESCRIPTION = """# Single-Head Attention Tacotron2 with Global Style Tokens
18
+ This is a Tacotron2 model based on the NVIDIA's model plus three unsupervised Global Style Tokens (GST).
19
+ The whole architecture has been trained from scratch with the LJSpeech dataset. In order to control the relevance
20
+ of each style token, we configured the attention module as a single-head.
21
+ """
22
+
23
  # load trained tacotron2 + GST model:
24
  model = load_model(hparams)
25
  checkpoint_path = "trained_models/checkpoint_78000.model"