-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_phase1.py
244 lines (209 loc) · 7.14 KB
/
search_phase1.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
import sys
from collections import defaultdict
from nltk.stem import PorterStemmer
import re
ps = PorterStemmer()
stopwords=defaultdict(int) #Create stopwords list
with open('stopwords.txt','r') as f:
for line in f:
line= line.strip()
stopwords[line]=1
# Regular Expression to remove URLs
regExp1 = re.compile(r'http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+',re.DOTALL)
# Regular Expression to remove CSS
regExp2 = re.compile(r'{\|(.*?)\|}',re.DOTALL)
# Regular Expression to remove {{cite **}} or {{vcite **}}
regExp3 = re.compile(r'{{v?cite(.*?)}}',re.DOTALL)
# Regular Expression to remove Punctuation
regExp4 = re.compile(r'[.,;_?()"/\']',re.DOTALL)
# Regular Expression to remove [[file:]]
regExp5 = re.compile(r'\[\[file:(.*?)\]\]',re.DOTALL)
# Regular Expression to remove Brackets and other meta characters from title
regExp6 = re.compile(r"[~`!@#$%-^*+{\[}\]\|\\<>/?]",re.DOTALL)
# Regular Expression to remove <..> tags from text
regExp10 = re.compile(r'<(.*?)>',re.DOTALL)
# Regular Expression to remove junk from text
regExp11 = re.compile(r"[~`!@#$%-^*+{\[}\]\|\\<>/?]",re.DOTALL)
def cleanText(text):
'''
Use the Regular Expressions stored to remove unnecessary things from text for tokenizing
'''
text = text.lower()
text = regExp1.sub('',text)
text = regExp2.sub('',text)
text = regExp3.sub('',text)
text = regExp4.sub(' ',text)
text = regExp5.sub('',text)
text = regExp10.sub('',text)
text = re.sub(r'[^\x00-\x7F]+',' ', text)
return text
docNameMap = defaultdict(int)
def readDocToName(path):
global docNameMap
with open(path, 'r') as file:
lines = file.readlines()
for line in lines:
docID,t = line.split("#")
t = t.split(":")[0:-1]
name = ' '.join(t)
docNameMap[docID]=name
def getName(docID):
# print(docID," ",docNameMap[docID])
return docNameMap[docID]
def read_file(testfile):
with open(testfile, 'r') as file:
queries = file.readlines()
return queries
def write_file(outputs, path_to_output):
'''outputs should be a list of lists.
len(outputs) = number of queries
Each element in outputs should be a list of titles corresponding to a particular query.'''
with open(path_to_output, 'w') as file:
for output in outputs:
for line in output:
file.write(line.strip() + '\n')
file.write('\n')
invertedIndex = defaultdict(lambda:defaultdict(lambda:defaultdict(int)))
def readIndexFromFile(path_to_index):
global invertedIndex
with open(path_to_index, "r") as f:
data = f.readlines()
for line in data:
word,rest = line.split("=")
doc_list = rest.split(",")
for d in doc_list:
docID, rest1 = d.split(":")
num = rest1.split("#")
for i in num:
# print(i)
category = i[0]
freq = i[1:]
# print(word+" "+docID+" "+category+" "+freq)
invertedIndex[word][docID][category]=int(freq)
def parseQuery(query):
q = query
# try:
isField = False
if ":" in query and ("title" in query or "ref" in query or "category" in query or "body" in query or "link" in query or "infobox" in query):
d = dict()
d["title"] = "t"
d["ref"] = "r"
d["body"] = "b"
d["category"] = "c"
d["link"] = "l"
d["infobox"] = "i"
isField = True
query = query.split()
parsed_query = []
for q in query:
if q[-1]=='\n':
q = q[0:-1]
if ":" in q:
c,w = q.split(":")
w = cleanText(w)
w = ps.stem(w)
try:
parsed_query.append((w,d[c]))
except:
parsed_query.append((w,"b"))
else:
q = cleanText(q)
q = ps.stem()
parsed_query.append((q,"b"))
return parsed_query,isField
else:
query = cleanText(query)
parsed_query = []
query_words = query.split(" ")
for word in query_words:
if len(word)>1 and word[-1]=='\n':
word = word[0:-1]
word = ps.stem(word)
if stopwords[word]!=1 and len(word)>0:
parsed_query.append(word)
return parsed_query, isField
# except:
# q_t = query.split()
# # t = []
# # for i in q_t:
# # if ":" in i:
# # a,b = i.split(":")
# # if stopwords[a]!=1:
# # t.append(ps.stem(i))
# # if stopwords[b]!=1:
# # t.append(ps.stem(i))
# # else:
# # if stopwords[i]!=1:
# # t.append(ps.stem(i))
# # return t, False
def normalSearch(query):
docToFreqMap = defaultdict(int)
for word in query:
# print(word)
d = invertedIndex[word]
# print(type(d))
for docID,rest in d.items():
# print(docID)
for category,freq in rest.items():
docToFreqMap[docID]+=freq
docToFreqMap = sorted(docToFreqMap.items(), key=lambda item: item[1], reverse=True)[0:10]
result = []
for i in docToFreqMap:
docID,freq = i
# print(docID+" "+str(freq))
result.append(getName(docID))
return result
def fieldSearch(query):
docToFreqMap = defaultdict(int)
for word,c in query:
# print(word)
d = invertedIndex[word]
# print(type(d))
for docID,rest in d.items():
# print(docID)
for category,freq in rest.items():
if category == c:
docToFreqMap[docID]+=freq
docToFreqMap = sorted(docToFreqMap.items(), key=lambda item: item[1], reverse=True)[0:10]
result = []
for i in docToFreqMap:
docID,freq = i
# print(docID+" "+str(freq))
result.append(getName(docID))
return result
def searchOne(query):
query, isField = parseQuery(query)
# print(query)
result = []
if isField:
result = fieldSearch(query)
else:
result = normalSearch(query)
# print(result)
return result
def getResults(queries):
results = []
for query in queries:
result = searchOne(query)
# print(result)
results.append(result)
return results
def search(path_to_index, queries):
'''Write your code here'''
indexFile = path_to_index+"/index.txt"
readIndexFromFile(indexFile)
# print(invertedIndex)
docTitleFile = path_to_index+"/docTitleMap.txt"
readDocToName(docTitleFile)
results = getResults(queries)
# print(results)
return results
def main():
path_to_index = sys.argv[1]
testfile = sys.argv[2]
path_to_output = sys.argv[3]
queries = read_file(testfile)
outputs = search(path_to_index, queries)
write_file(outputs, path_to_output)
if __name__ == '__main__':
main()