-
Notifications
You must be signed in to change notification settings - Fork 1
/
constants.py
31 lines (29 loc) · 2.55 KB
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
STOP_WORDS = set(["i", "me", "my", "myself", "we", "our", "ours", "ourself", "ourselves", "you", "your", "yours", "yourself", "yourselves", "he", "him", "his", "himself", "she", "her", "herself", "it", "its", "itself", "they", "them", "their", "themselves", "what", "which", "who", "whom", "this", "that", "these", "those", "am", "is", "are", "was", "were", "be", "been", "have", "has", "had", "do", "does", "did", "a", "an", "the", "and", "but", "if", "or", "because", "as", "until", "while", "of", "at", "by", "for", "with", "about", "against", "between", "into", "through", "during", "before", "after", "above", "below", "to", "from", "up", "down", "in", "out", "on", "off", "over", "under", "again", "further", "then", "once", "here", "there", "when", "where", "why", "how", "all", "any", "both", "each", "few", "more", "most", "other", "some", "such", "no", "nor", "not", "only", "own", "same", "so", "than", "too", "very", "can", "will" , "just", "don", "should", "now", "say", "tell", "told", "said", "would", "could", "might", "shall", "nt", "also","L:","P:","O:","s", "t", "m", "re","ll","d"])
#STOP_WORDS = ["i", "me", "my", "myself", "we", "our", "ourselves", "you", "your", "yourself", "yourselves", "he", "him", "his", "himself", "she", "her", "herself", "it", "itself", "they", "them", "their", "themselves", "what", "which", "who", "whom", "this", "that", "these", "those", "am", "is", "are", "was", "were", "be", "been", "have", "has", "had", "do", "does", "did", "a", "an", "the", "and", "but", "if", "or", "because", "as", "until", "while", "of", "at", "by", "for", "with", "about", "against", "between", "into", "through", "during", "before", "after", "above", "below", "to", "from", "up", "down", "in", "out", "on", "off", "over", "under", "again", "further", "then", "once", "here", "there", "when", "where", "why", "how", "all", "any", "both", "each", "few", "more", "most", "other", "some", "such", "no", "nor", "not", "only", "own", "same", "so", "than", "too", "very", "s", "t", "can", "will" , "just", "don", "should", "now", "said", "would", "nt","&"]
WORD2NUM = {
'one': '1',
'two': '2',
'three': '3',
'four': '4',
'five': '5',
'six': '6',
'seven': '7',
'eight': '8',
'nine': '9',
'zero' : '0'
}
MONTH_ABR={
"januari": "jan" ,
"februari": "feb" ,
"march": "mar" ,
"april": "apr" ,
"may": "may" ,
"june": "jun" ,
"juli": "jul" ,
"august": "aug" ,
"septemb": "sep" ,
"sept": "sep" ,
"octob": "oct" ,
"novemb": "nov" ,
"decemb": "dec",
}