saritha5 commited on
Commit
37210a6
1 Parent(s): a22e596

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -3,6 +3,9 @@ import spacy
3
  from spacy.lang.en.stop_words import STOP_WORDS
4
  from string import punctuation
5
 
 
 
 
6
  stopwords = list(STOP_WORDS)
7
  nlp = spacy.load('en_core_web_sm')
8
  punctuation = punctuation + '\n'
 
3
  from spacy.lang.en.stop_words import STOP_WORDS
4
  from string import punctuation
5
 
6
+ !python -m spacy download en_core_web_sm --q
7
+
8
+
9
  stopwords = list(STOP_WORDS)
10
  nlp = spacy.load('en_core_web_sm')
11
  punctuation = punctuation + '\n'