gyroing commited on
Commit
66a56b3
1 Parent(s): 1ac8e83

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -35,8 +35,8 @@ def fix_words(words: typing.List[str]) -> typing.List[str]:
35
 
36
  fixed_words.append(word)
37
 
38
- #return fixed_words
39
- return tagger.tag(words)
40
 
41
  iface = gr.Interface(fn=preprocess_text, inputs="text", outputs="text")
42
  iface.launch()
 
35
 
36
  fixed_words.append(word)
37
 
38
+ return fixed_words
39
+ #return tagger.tag(words)
40
 
41
  iface = gr.Interface(fn=preprocess_text, inputs="text", outputs="text")
42
  iface.launch()