Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ def infer(text, character, language):
|
|
62 |
return (text,(22050, audio))
|
63 |
|
64 |
# We instantiate the Textbox class
|
65 |
-
textbox = gr.Textbox(label="Type your sentence here
|
66 |
# select character
|
67 |
char_dropdown = gr.Dropdown(['0:特别周','1:无声铃鹿','2:东海帝王','3:丸善斯基',
|
68 |
'4:富士奇迹','5:小栗帽','6:黄金船','7:伏特加',
|
@@ -87,9 +87,11 @@ char_dropdown = gr.Dropdown(['0:特别周','1:无声铃鹿','2:东海帝王','3:
|
|
87 |
'80:真弓快车','81:骏川手纲','82:凯斯奇迹','83:小林历奇',
|
88 |
'84:北港火山','85:奇锐骏','86:秋川理事长'])
|
89 |
language_dropdown = gr.Dropdown(['日本語','简体中文','English'])
|
90 |
-
examples = [['
|
91 |
-
['
|
92 |
-
['
|
93 |
-
['
|
|
|
|
|
94 |
gr.Interface(fn=infer, inputs=[textbox, char_dropdown, language_dropdown], outputs=["text","audio"],
|
95 |
title=title, description=description, article=article, examples = examples).launch()
|
|
|
62 |
return (text,(22050, audio))
|
63 |
|
64 |
# We instantiate the Textbox class
|
65 |
+
textbox = gr.Textbox(label="Text", placeholder="Type your sentence here", lines=2)
|
66 |
# select character
|
67 |
char_dropdown = gr.Dropdown(['0:特别周','1:无声铃鹿','2:东海帝王','3:丸善斯基',
|
68 |
'4:富士奇迹','5:小栗帽','6:黄金船','7:伏特加',
|
|
|
87 |
'80:真弓快车','81:骏川手纲','82:凯斯奇迹','83:小林历奇',
|
88 |
'84:北港火山','85:奇锐骏','86:秋川理事长'])
|
89 |
language_dropdown = gr.Dropdown(['日本語','简体中文','English'])
|
90 |
+
examples = [['お疲れ様です,トレーナーさん。', '1:无声铃鹿', '日本語'],
|
91 |
+
['張り切っていこう!', '67:北部玄驹', '日本語'],
|
92 |
+
['何でこんなに慣れでんのよ,私のほが先に好きだっだのに。', '10:草上飞','日本語'],
|
93 |
+
['授業中に出しだら,学校生活終わるですわ。', '12:目白麦昆','日本語']
|
94 |
+
['お帰りなさい,お兄様!', '29:米浴','日本語']
|
95 |
+
['私の処女をもらっでください!', '29:米浴','日本語']]
|
96 |
gr.Interface(fn=infer, inputs=[textbox, char_dropdown, language_dropdown], outputs=["text","audio"],
|
97 |
title=title, description=description, article=article, examples = examples).launch()
|