Spaces:
Sleeping
Sleeping
edit preprocess
Browse files
app.py
CHANGED
@@ -39,8 +39,9 @@ def preprocess_text(text):
|
|
39 |
for doc in docs:
|
40 |
for token in doc:
|
41 |
if token.pos_ != "PUNCT":
|
42 |
-
|
43 |
-
|
|
|
44 |
return word_seq
|
45 |
|
46 |
def classify_question(text):
|
|
|
39 |
for doc in docs:
|
40 |
for token in doc:
|
41 |
if token.pos_ != "PUNCT":
|
42 |
+
if token.text not in word_dict:
|
43 |
+
word_dict[token.text] = OOV_INDEX
|
44 |
+
word_seq.append(word_dict[token.text])
|
45 |
return word_seq
|
46 |
|
47 |
def classify_question(text):
|