wannaphong commited on
Commit
99753cb
·
1 Parent(s): b8c8472

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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", lines=5)
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()