ValadisCERTH commited on
Commit
325517e
·
1 Parent(s): ac0eacb

Update comparativesIdentification.py

Browse files
Files changed (1) hide show
  1. comparativesIdentification.py +2 -0
comparativesIdentification.py CHANGED
@@ -6,6 +6,8 @@ import numpy as np
6
 
7
  from sklearn.metrics.pairwise import cosine_similarity
8
 
 
 
9
  # use spacy small because in that way we are closer to a BOW model which is the one we care in our case since we just compare words
10
  nlp_comparatives = spacy.load('en_core_web_sm', disable=["parser", "ner"])
11
 
 
6
 
7
  from sklearn.metrics.pairwise import cosine_similarity
8
 
9
+ spacy.cli.download("en_core_web_sm")
10
+
11
  # use spacy small because in that way we are closer to a BOW model which is the one we care in our case since we just compare words
12
  nlp_comparatives = spacy.load('en_core_web_sm', disable=["parser", "ner"])
13