TedYeh
update app
23ea43b
raw
history blame
No virus
159 Bytes
import gradio as gr
def cged_correction(sentence):
return sentence
iface = gr.Interface(fn=cged_correction, inputs="text", outputs="text")
iface.launch()