Update app.py
Browse files
app.py
CHANGED
@@ -182,7 +182,7 @@ def main():
|
|
182 |
# Process the text when a button is clicked
|
183 |
if st.button("Process"):
|
184 |
output = process_text(input_text)
|
185 |
-
gg = word_tokenize(prepare_text(input_text))
|
186 |
cc = ""
|
187 |
for x, y in zip(gg, output):
|
188 |
cc += rebuildxx(x, y) + " "
|
|
|
182 |
# Process the text when a button is clicked
|
183 |
if st.button("Process"):
|
184 |
output = process_text(input_text)
|
185 |
+
gg = word_tokenize(prepare_text(input_text))
|
186 |
cc = ""
|
187 |
for x, y in zip(gg, output):
|
188 |
cc += rebuildxx(x, y) + " "
|