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