tobiccino commited on
Commit
3c7e1d5
1 Parent(s): ee69da9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -10
app.py CHANGED
@@ -39,7 +39,8 @@ class GradioApplication:
39
  if(lang == "Tacotron2"):
40
  return using_tacotron(text)
41
  else :
42
- return using_viettts(text,duration_rate)
 
43
  return 1
44
 
45
  def run(self):
@@ -55,16 +56,19 @@ def prepare_input():
55
  placeholder="Lựa chọn model test - VietTTS và Tacotron 2 + Univnet",
56
  value="Thành phố muốn thí điểm thu thuế bất động sản thứ 2, tự quyết nhiều quyết định đầu tư để thu hút nguồn vốn tư nhân",
57
  label="Text")
58
- lang_input = gr.Radio(['VietTTS', 'Tacotron2'],
59
- type='value',
60
- value=None,
61
- label="Model select")
62
- duration_rate_input = gr.Slider(minimum=0.2,
63
- maximum=1,
64
- step=0.1,
65
- value=1.0,
66
- label="Duration (The bigger the value, the slower the speech) - only for vietTTS")
 
 
67
 
 
68
  return [text_input, lang_input, duration_rate_input]
69
 
70
 
 
39
  if(lang == "Tacotron2"):
40
  return using_tacotron(text)
41
  else :
42
+ return using_tacotron(text)
43
+ # return using_viettts(text,duration_rate)
44
  return 1
45
 
46
  def run(self):
 
56
  placeholder="Lựa chọn model test - VietTTS và Tacotron 2 + Univnet",
57
  value="Thành phố muốn thí điểm thu thuế bất động sản thứ 2, tự quyết nhiều quyết định đầu tư để thu hút nguồn vốn tư nhân",
58
  label="Text")
59
+ lang_input = "Tacotron2"
60
+ duration_rate_input = 0.1
61
+ # lang_input = gr.Radio(['VietTTS', 'Tacotron2'],
62
+ # type='value',
63
+ # value=None,
64
+ # label="Model select")
65
+ # duration_rate_input = gr.Slider(minimum=0.2,
66
+ # maximum=1,
67
+ # step=0.1,
68
+ # value=1.0,
69
+ # label="Duration (The bigger the value, the slower the speech) - only for vietTTS")
70
 
71
+ # return [text_input, lang_input, duration_rate_input]
72
  return [text_input, lang_input, duration_rate_input]
73
 
74