edithram23 commited on
Commit
0123959
1 Parent(s): b226445

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -191,7 +191,7 @@ if uploaded_file is not None:
191
  for w in words_out:
192
  new+=w.split('\n')
193
  new+=bert_words
194
- words_out = [i for i in new if len(i)>2]
195
  # print(words_out)
196
  words_out=sorted(words_out, key=len,reverse=True)
197
 
 
191
  for w in words_out:
192
  new+=w.split('\n')
193
  new+=bert_words
194
+ words_out = [i for i in new if len(i)>3]
195
  # print(words_out)
196
  words_out=sorted(words_out, key=len,reverse=True)
197