Update app.py
Browse files
app.py
CHANGED
@@ -78,8 +78,8 @@ css = """
|
|
78 |
|
79 |
if __name__ == '__main__':
|
80 |
models_tts = []
|
81 |
-
name = 'Lisa
|
82 |
-
lang = 'Japanese
|
83 |
example = ''
|
84 |
config_path = f"saved_model/config.json"
|
85 |
model_path = f"saved_model/model.pth"
|
@@ -114,7 +114,7 @@ if __name__ == '__main__':
|
|
114 |
with gr.Column():
|
115 |
gr.Markdown(f"## {name}\n\n"
|
116 |
f"![cover](file/{cover_path})\n\n"
|
117 |
-
f"
|
118 |
tts_input1 = gr.TextArea(label="Text (100 words limitation)", value=example,
|
119 |
elem_id=f"tts-input{i}")
|
120 |
tts_input2 = gr.Dropdown(label="Speaker", choices=speakers,
|
|
|
78 |
|
79 |
if __name__ == '__main__':
|
80 |
models_tts = []
|
81 |
+
name = '리사(Lisa/リサ)'
|
82 |
+
lang = '일본어(Japanese/日本語)' # Korean(KO), English(EN)
|
83 |
example = ''
|
84 |
config_path = f"saved_model/config.json"
|
85 |
model_path = f"saved_model/model.pth"
|
|
|
114 |
with gr.Column():
|
115 |
gr.Markdown(f"## {name}\n\n"
|
116 |
f"![cover](file/{cover_path})\n\n"
|
117 |
+
f"언어(language/言葉): {lang}")
|
118 |
tts_input1 = gr.TextArea(label="Text (100 words limitation)", value=example,
|
119 |
elem_id=f"tts-input{i}")
|
120 |
tts_input2 = gr.Dropdown(label="Speaker", choices=speakers,
|