jaifar530 commited on
Commit
f3da86a
·
unverified ·
1 Parent(s): 781ff79
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -11,7 +11,7 @@ import requests
11
  import pickle
12
  import pandas as pd
13
  import nltk
14
- # import spacy
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.