Update app.py
Browse files
app.py
CHANGED
@@ -39,7 +39,8 @@ class GradioApplication:
|
|
39 |
if(lang == "Tacotron2"):
|
40 |
return using_tacotron(text)
|
41 |
else :
|
42 |
-
return
|
|
|
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 =
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
|
|
|
|
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 |
|