kplug / app.py
xusong28
add jddc demo
62edb7a
raw
history blame
No virus
560 Bytes
# coding=utf-8
# author: xusong <xusong28@jd.com>
# time: 2022/8/23 16:06
"""
https://gradio.app/docs/#tabbedinterface-header
## 更多任务
- 抽取式摘要
- 检索式对话 、 抽取式问答
-
"""
import gradio as gr
from demo_sum import sum_iface
from demo_mlm import mlm_iface
from demo_corrector import corr_iface
from demo_chatbot_jddc import jddc_iface
demo = gr.TabbedInterface([sum_iface, mlm_iface, corr_iface, jddc_iface], ["生成式摘要", "文本填词", "句子纠错", "对话机器人"])
if __name__ == "__main__":
demo.launch()