Spaces:
Running
Running
jaifar530
commited on
fix spycy
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ import requests
|
|
11 |
import pickle
|
12 |
import pandas as pd
|
13 |
import nltk
|
14 |
-
|
15 |
from nltk.corpus import stopwords
|
16 |
from nltk.tokenize import word_tokenize, sent_tokenize
|
17 |
import numpy as np
|
@@ -39,11 +39,11 @@ with open('RandomForestClassifier.pkl', 'rb') as file:
|
|
39 |
|
40 |
|
41 |
|
42 |
-
# Loading a SpaCy model for Named Entity Recognition and Lemmatization
|
43 |
-
!pip install https://huggingface.co/spacy/en_core_web_sm/resolve/main/en_core_web_sm-any-py3-none-any.whl
|
44 |
|
45 |
# Using spacy.load().
|
46 |
-
import spacy
|
47 |
nlp = spacy.load("en_core_web_sm")
|
48 |
|
49 |
# # Importing as module.
|
|
|
11 |
import pickle
|
12 |
import pandas as pd
|
13 |
import nltk
|
14 |
+
from spacy_huggingface_hub import en_core_web_sm
|
15 |
from nltk.corpus import stopwords
|
16 |
from nltk.tokenize import word_tokenize, sent_tokenize
|
17 |
import numpy as np
|
|
|
39 |
|
40 |
|
41 |
|
42 |
+
# # Loading a SpaCy model for Named Entity Recognition and Lemmatization
|
43 |
+
# !pip install https://huggingface.co/spacy/en_core_web_sm/resolve/main/en_core_web_sm-any-py3-none-any.whl
|
44 |
|
45 |
# Using spacy.load().
|
46 |
+
# import spacy
|
47 |
nlp = spacy.load("en_core_web_sm")
|
48 |
|
49 |
# # Importing as module.
|