Spaces:
Runtime error
Runtime error
TedYeh commited on
Commit ·
23ea43b
1
Parent(s): e7ebace
update app
Browse files
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
def
|
| 4 |
-
return
|
| 5 |
|
| 6 |
-
iface = gr.Interface(fn=
|
| 7 |
iface.launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
+
def cged_correction(sentence):
|
| 4 |
+
return sentence
|
| 5 |
|
| 6 |
+
iface = gr.Interface(fn=cged_correction, inputs="text", outputs="text")
|
| 7 |
iface.launch()
|