Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
| 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()
|