Spaces:
Runtime error
Runtime error
「わ」→「は」
Browse files“は”用于句子中前面提到的某件事与后面提到的某件事相匹配时。它的用法与“わ”不同。
當句子中前面的內容與後面的內容相符時使用「は」。它的用法與“わ”不同。
「は」は、文中で前に示されたものが後に述べられるものと一致するときに使われます。「わ」とは異なる用法です。
"は" is used when something stated earlier in a sentence matches something stated later. It has a different usage than "わ."
app.py
CHANGED
@@ -82,14 +82,14 @@ app = gr.Blocks()
|
|
82 |
with app:
|
83 |
with gr.Tabs():
|
84 |
with gr.TabItem("使用预制情感合成"):
|
85 |
-
tts_input1 = gr.TextArea(label="日语文本", value="
|
86 |
tts_input2 = gr.Dropdown(label="情感", choices=list(emotion_dict.keys()), value="平静1")
|
87 |
tts_submit = gr.Button("合成音频", variant="primary")
|
88 |
tts_output1 = gr.Textbox(label="Message")
|
89 |
tts_output2 = gr.Audio(label="Output")
|
90 |
tts_submit.click(tts1, [tts_input1, tts_input2], [tts_output1, tts_output2])
|
91 |
with gr.TabItem("随机抽取训练集样本作为情感参数"):
|
92 |
-
tts_input1 = gr.TextArea(label="日语文本", value="
|
93 |
tts_submit = gr.Button("合成音频", variant="primary")
|
94 |
tts_output1 = gr.Textbox(label="随机样本id(可用于第三个tab中合成)")
|
95 |
tts_output2 = gr.Audio(label="Output")
|
@@ -97,7 +97,7 @@ with app:
|
|
97 |
|
98 |
with gr.TabItem("使用情感样本id作为情感参数"):
|
99 |
|
100 |
-
tts_input1 = gr.TextArea(label="日语文本", value="
|
101 |
tts_input2 = gr.Number(label="情感样本id", value=2004)
|
102 |
tts_submit = gr.Button("合成音频", variant="primary")
|
103 |
tts_output1 = gr.Textbox(label="Message")
|
|
|
82 |
with app:
|
83 |
with gr.Tabs():
|
84 |
with gr.TabItem("使用预制情感合成"):
|
85 |
+
tts_input1 = gr.TextArea(label="日语文本", value="こんにちは。私はあやちねねです。")
|
86 |
tts_input2 = gr.Dropdown(label="情感", choices=list(emotion_dict.keys()), value="平静1")
|
87 |
tts_submit = gr.Button("合成音频", variant="primary")
|
88 |
tts_output1 = gr.Textbox(label="Message")
|
89 |
tts_output2 = gr.Audio(label="Output")
|
90 |
tts_submit.click(tts1, [tts_input1, tts_input2], [tts_output1, tts_output2])
|
91 |
with gr.TabItem("随机抽取训练集样本作为情感参数"):
|
92 |
+
tts_input1 = gr.TextArea(label="日语文本", value="こんにちは。私はあやちねねです。")
|
93 |
tts_submit = gr.Button("合成音频", variant="primary")
|
94 |
tts_output1 = gr.Textbox(label="随机样本id(可用于第三个tab中合成)")
|
95 |
tts_output2 = gr.Audio(label="Output")
|
|
|
97 |
|
98 |
with gr.TabItem("使用情感样本id作为情感参数"):
|
99 |
|
100 |
+
tts_input1 = gr.TextArea(label="日语文本", value="こんにちは。私はあやちねねです。")
|
101 |
tts_input2 = gr.Number(label="情感样本id", value=2004)
|
102 |
tts_submit = gr.Button("合成音频", variant="primary")
|
103 |
tts_output1 = gr.Textbox(label="Message")
|