File size: 397 Bytes
e7ebace 23ea43b e7ebace 0cbca3d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
def cged_correction(sentence):
return sentence
with gr.Blocks() as demo:
#設定輸入元件
sent = gr.Textbox(label="Sentence")
# 設定輸出元件
output = gr.Textbox(label="Result")
#設定按鈕
greet_btn = gr.Button("Correction")
#設定按鈕點選事件
greet_btn.click(fn=cged_correction, inputs=name, outputs=output)
demo.launch() |