Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -15,6 +15,8 @@ it is also not limited to the artifacts, even the prosody and natural-ness of th
|
|
15 |
|
16 |
by [Soshyant](https://twitter.com/MystiqCaleid)
|
17 |
|
|
|
|
|
18 |
|
19 |
=========
|
20 |
音声の開始時または終了時に、もともと存在しなかったはずのアーティファクトが、ここで発生する可能性があります。
|
@@ -23,6 +25,8 @@ by [Soshyant](https://twitter.com/MystiqCaleid)
|
|
23 |
その結果、以下で体験するパフォーマンスはモデルの真の性能を正確に反映していません。
|
24 |
そのため、アーティファクトの問題だけではなく、ナチュラルネスや音声クオリティーにも及びます。
|
25 |
|
|
|
|
|
26 |
"""
|
27 |
import gradio as gr
|
28 |
import random
|
@@ -185,8 +189,8 @@ with gr.Blocks() as vctk:
|
|
185 |
inp = gr.Textbox(label="Text", info="Enter the text | テキストを入れてください、短すぎるとひどくなります.", value="あなたがいないと、世界は色褪せて見えます。あなたの笑顔が私の日々を明るく照らしています。あなたがいない日は、まるで冬のように寒く、暗いです.", interactive=True)
|
186 |
voice = gr.Dropdown(voicelist, label="Voice", info="Select a default voice.", value='m-us-2', interactive=True)
|
187 |
embscale = gr.Slider(minimum=1, maximum=10, value=1.8, step=0.1, label="Embedding Scale (READ WARNING BELOW)", info="これを上げたらもっとエモーショナルな音声になります(下げたらその逆)、増やしすぎるとだめになるので、ご注意ください", interactive=True)
|
188 |
-
alpha = gr.Slider(minimum=0, maximum=1, value=0.
|
189 |
-
beta = gr.Slider(minimum=0, maximum=1, value=0.
|
190 |
multispeakersteps = gr.Slider(minimum=3, maximum=15, value=3, step=1, label="Diffusion Steps", interactive=True)
|
191 |
# use_gruut = gr.Checkbox(label="Use alternate phonemizer (Gruut) - Experimental")
|
192 |
with gr.Column(scale=1):
|
|
|
15 |
|
16 |
by [Soshyant](https://twitter.com/MystiqCaleid)
|
17 |
|
18 |
+
** NOTE: Punctuations are important! **
|
19 |
+
|
20 |
|
21 |
=========
|
22 |
音声の開始時または終了時に、もともと存在しなかったはずのアーティファクトが、ここで発生する可能性があります。
|
|
|
25 |
その結果、以下で体験するパフォーマンスはモデルの真の性能を正確に反映していません。
|
26 |
そのため、アーティファクトの問題だけではなく、ナチュラルネスや音声クオリティーにも及びます。
|
27 |
|
28 |
+
**NOTE: 句読点はとても大事です!**
|
29 |
+
|
30 |
"""
|
31 |
import gradio as gr
|
32 |
import random
|
|
|
189 |
inp = gr.Textbox(label="Text", info="Enter the text | テキストを入れてください、短すぎるとひどくなります.", value="あなたがいないと、世界は色褪せて見えます。あなたの笑顔が私の日々を明るく照らしています。あなたがいない日は、まるで冬のように寒く、暗いです.", interactive=True)
|
190 |
voice = gr.Dropdown(voicelist, label="Voice", info="Select a default voice.", value='m-us-2', interactive=True)
|
191 |
embscale = gr.Slider(minimum=1, maximum=10, value=1.8, step=0.1, label="Embedding Scale (READ WARNING BELOW)", info="これを上げたらもっとエモーショナルな音声になります(下げたらその逆)、増やしすぎるとだめになるので、ご注意ください", interactive=True)
|
192 |
+
alpha = gr.Slider(minimum=0, maximum=1, value=0.1, step=0.1, label="Alpha",info ="Closer to 0 means similar to the Audio Reference | ゼロに近いほど、音声サンプルのスタイルに近い音声になります", interactive=True)
|
193 |
+
beta = gr.Slider(minimum=0, maximum=1, value=0.1, step=0.1, label="Beta",info ="alphaと同じく", interactive=True)
|
194 |
multispeakersteps = gr.Slider(minimum=3, maximum=15, value=3, step=1, label="Diffusion Steps", interactive=True)
|
195 |
# use_gruut = gr.Checkbox(label="Use alternate phonemizer (Gruut) - Experimental")
|
196 |
with gr.Column(scale=1):
|