Commit
·
831cd78
1
Parent(s):
9820b04
Update app.py
Browse files
app.py
CHANGED
@@ -20,6 +20,6 @@ def text_processing(text):
|
|
20 |
|
21 |
return decoded_output[0]
|
22 |
|
23 |
-
iface = gr.Interface(fn = text_processing, inputs='text', outputs=['text'], title='
|
24 |
|
25 |
iface.launch(inline=False)
|
|
|
20 |
|
21 |
return decoded_output[0]
|
22 |
|
23 |
+
iface = gr.Interface(fn = text_processing, inputs='text', outputs=['text'], title='Punctuation Mark Prediction', description='本模型主要用于语言识别模型输出的后处理。\n输入无符号句子,需要打标点处用空格隔开,返回带标点句子。\n仅支持中文,因为训练数据中只有中文。')
|
24 |
|
25 |
iface.launch(inline=False)
|