tushargandhi77 commited on
Commit
fc9ab21
1 Parent(s): b21504d

Update helper.py

Browse files
Files changed (1) hide show
  1. helper.py +2 -1
helper.py CHANGED
@@ -23,7 +23,8 @@ def test_total_words(q1,q2):
23
  def test_fetch_token_features(q1, q2):
24
  SAFE_DIV = 0.0001
25
 
26
- STOP_WORDS = stopwords.words("english")
 
27
 
28
  token_features = [0.0] * 8
29
 
 
23
  def test_fetch_token_features(q1, q2):
24
  SAFE_DIV = 0.0001
25
 
26
+ STOP_WORDS = pickle.load(open('stopwords.pkl','rb'))
27
+
28
 
29
  token_features = [0.0] * 8
30