Skip to content
Snippets Groups Projects
Commit bd6e7992 authored by toyota's avatar toyota
Browse files

add some stopwords

parent f1e0ea5b
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,9 @@ def get_stopword_list(stop_path):
stopli = []
for line in f:
stopli.append(line[:-1])
stopli.append("n't")
stopli.append("'m")
stopli.append("whether")
return stopli
def get_infos(tree_path):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment