Spaces:
Sleeping
Sleeping
wannaphong
commited on
Commit
·
99753cb
1
Parent(s):
b8c8472
Update app.py
Browse files
app.py
CHANGED
@@ -4,5 +4,5 @@ import gradio as gr
|
|
4 |
def cut_word(text):
|
5 |
return ' '.join(word_tokenize(text))
|
6 |
|
7 |
-
iface = gr.Interface(fn=cut_word, inputs="textbox", outputs="text"
|
8 |
iface.launch()
|
|
|
4 |
def cut_word(text):
|
5 |
return ' '.join(word_tokenize(text))
|
6 |
|
7 |
+
iface = gr.Interface(fn=cut_word, inputs="textbox", outputs="text")
|
8 |
iface.launch()
|