Spaces:
Sleeping
Sleeping
File size: 409 Bytes
baf304d 701a9c4 baf304d 701a9c4 334296c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
def segment(text):
# 示意:將中文句子依字分開(暫代斷詞功能)
return " / ".join(list(text))
demo = gr.Interface(
fn=segment,
inputs=gr.Textbox(lines=2, placeholder="輸入一段中文..."),
outputs="text",
title="中文斷詞模擬器",
description="這是一個簡易的中文斷詞工具,未來將整合 CKIP 模型。"
)
demo.launch() |