-
Notifications
You must be signed in to change notification settings - Fork 5
/
retrieval.py
658 lines (530 loc) · 26.9 KB
/
retrieval.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
import json
import os
import pickle
import time
from contextlib import contextmanager
from typing import List, NoReturn, Optional, Tuple, Union
import faiss
import numpy as np
import pandas as pd
from datasets import Dataset, concatenate_datasets, load_from_disk
from sklearn.feature_extraction.text import TfidfVectorizer
from tqdm.auto import tqdm
from rank_bm25 import BM25Okapi
from es_retrieval import ElasticObject
@contextmanager
def timer(name):
t0 = time.time()
yield
print(f"[{name}] done in {time.time() - t0:.3f} s")
class Retrieval:
def __init__(
self,
tokenize_fn,
data_path: Optional[str] = "../data/",
context_path: Optional[str] = "wikipedia_documnets.json",
) -> NoReturn:
"""
Arguments:
tokenize_fn:
기본 text를 tokenize해주는 함수입니다.
아래와 같은 함수들을 사용할 수 있습니다.
- lambda x: x.split(' ')
- Huggingface Tokenizer
- konlpy.tag의 Mecab
data_path:
데이터가 보관되어 있는 경로입니다.
context_path:
Passage들이 묶여있는 파일명입니다.
data_path/context_path가 존재해야합니다.
Summary:
Passage 파일을 불러오고 TfidfVectorizer를 선언하는 기능을 합니다.
"""
self.data_path = data_path
with open(os.path.join(data_path, context_path), "r", encoding="utf-8") as f:
wiki = json.load(f)
self.contexts = list(dict.fromkeys([v["text"] for v in wiki.values()])) # set 은 매번 순서가 바뀌므로
print(f"Lengths of unique contexts : {len(self.contexts)}")
self.ids = list(range(len(self.contexts)))
self.tokenize_fn = tokenize_fn
self.p_embedding = None # get_sparse_embedding()로 생성합니다
self.indexer = None # build_faiss()로 생성합니다.
def retrieve(
self, query_or_dataset: Union[str, Dataset], topk: Optional[int] = 1
) -> Union[Tuple[List, List], pd.DataFrame]:
"""
Arguments:
query_or_dataset (Union[str, Dataset]):
str이나 Dataset으로 이루어진 Query를 받습니다.
str 형태인 하나의 query만 받으면 `get_relevant_doc`을 통해 유사도를 구합니다.
Dataset 형태는 query를 포함한 HF.Dataset을 받습니다.
이 경우 `get_relevant_doc_bulk`를 통해 유사도를 구합니다.
topk (Optional[int], optional): Defaults to 1.
상위 몇 개의 passage를 사용할 것인지 지정합니다.
Returns:
1개의 Query를 받는 경우 -> Tuple(List, List)
다수의 Query를 받는 경우 -> pd.DataFrame: [description]
Note:
다수의 Query를 받는 경우,
Ground Truth가 있는 Query (train/valid) -> 기존 Ground Truth Passage를 같이 반환합니다.
Ground Truth가 없는 Query (test) -> Retrieval한 Passage만 반환합니다.
"""
# assert self.p_embedding is not None, "get_sparse_embedding() 메소드를 먼저 수행해줘야합니다."
if isinstance(query_or_dataset, str):
doc_scores, doc_indices = self.get_relevant_doc(query_or_dataset, k=topk)
print("[Search query]\n", query_or_dataset, "\n")
for i in range(topk):
print(f"Top-{i+1} passage with score {doc_scores[i]:4f}")
print(self.contexts[doc_indices[i]])
return (doc_scores, [self.contexts[doc_indices[i]] for i in range(topk)])
elif isinstance(query_or_dataset, Dataset):
# Retrieve한 Passage를 pd.DataFrame으로 반환합니다.
total = []
with timer("query exhaustive search"):
doc_scores, doc_indices = self.get_relevant_doc_bulk(
query_or_dataset["question"], k=topk
)
for idx, example in enumerate(tqdm(query_or_dataset, desc="Sparse retrieval: ")):
tmp = {
# Query와 해당 id를 반환합니다.
"question": example["question"],
"id": example["id"],
# Retrieve한 Passage의 id, context를 반환합니다.
"context": " ".join([self.contexts[pid] for pid in doc_indices[idx]]),
}
if "context" in example.keys() and "answers" in example.keys():
# validation 데이터를 사용하면 ground_truth context와 answer도 반환합니다.
tmp["original_context"] = example["context"]
tmp["answers"] = example["answers"]
total.append(tmp)
cqas = pd.DataFrame(total)
return cqas
def get_sparse_embedding(self) -> NoReturn:
raise NotImplementedError("embedding 함수를 작성해야한다")
def get_relevant_doc(self, query: str, k: Optional[int] = 1) -> Tuple[List, List]:
raise NotImplementedError("문장이 들어올 때 계산을 구현해야한다.")
def get_relevant_doc_bulk(self, queries: List, k: Optional[int] = 1) -> Tuple[List, List]:
raise NotImplementedError("여러 문장이 들어올 때 계산을 구현해야한다")
def build_faiss(self, num_clusters=64) -> NoReturn:
pass
def retrieve_faiss(
self, query_or_dataset: Union[str, Dataset], topk: Optional[int] = 1
) -> Union[Tuple[List, List], pd.DataFrame]:
pass
def get_relevant_doc_faiss(self, query: str, k: Optional[int] = 1) -> Tuple[List, List]:
pass
def get_relevant_doc_bulk_faiss(self, queries: List, k: Optional[int] = 1) -> Tuple[List, List]:
pass
class TfidfRetrieval(Retrieval):
def __init__(
self,
tokenize_fn,
data_path: Optional[str] = "../data/",
context_path: Optional[str] = "wikipedia_documents.json",
) -> NoReturn:
super().__init__(tokenize_fn, data_path, context_path)
self.tfidfv = TfidfVectorizer(
tokenizer=tokenize_fn,
ngram_range=(1, 2),
max_features=50000,
)
def get_sparse_embedding(self) -> NoReturn:
"""
Summary:
Passage Embedding을 만들고
TFIDF와 Embedding을 pickle로 저장합니다.
만약 미리 저장된 파일이 있으면 저장된 pickle을 불러옵니다.
"""
# Pickle을 저장합니다.
pickle_name = f"sparse_embedding.bin"
tfidfv_name = f"tfidv.bin"
emd_path = os.path.join(self.data_path, pickle_name)
tfidfv_path = os.path.join(self.data_path, tfidfv_name)
if os.path.isfile(emd_path) and os.path.isfile(tfidfv_path):
with open(emd_path, "rb") as file:
self.p_embedding = pickle.load(file)
with open(tfidfv_path, "rb") as file:
self.tfidfv = pickle.load(file)
print("Embedding pickle load.")
else:
print("Build passage embedding")
self.p_embedding = self.tfidfv.fit_transform(self.contexts)
print(self.p_embedding.shape)
with open(emd_path, "wb") as file:
pickle.dump(self.p_embedding, file)
with open(tfidfv_path, "wb") as file:
pickle.dump(self.tfidfv, file)
print("Embedding pickle saved.")
def build_faiss(self, num_clusters=64) -> NoReturn:
"""
Summary:
속성으로 저장되어 있는 Passage Embedding을
Faiss indexer에 fitting 시켜놓습니다.
이렇게 저장된 indexer는 `get_relevant_doc`에서 유사도를 계산하는데 사용됩니다.
Note:
Faiss는 Build하는데 시간이 오래 걸리기 때문에,
매번 새롭게 build하는 것은 비효율적입니다.
그렇기 때문에 build된 index 파일을 저정하고 다음에 사용할 때 불러옵니다.
다만 이 index 파일은 용량이 1.4Gb+ 이기 때문에 여러 num_clusters로 시험해보고
제일 적절한 것을 제외하고 모두 삭제하는 것을 권장합니다.
"""
indexer_name = f"faiss_clusters{num_clusters}.index"
indexer_path = os.path.join(self.data_path, indexer_name)
if os.path.isfile(indexer_path):
print("Load Saved Faiss Indexer.")
self.indexer = faiss.read_index(indexer_path)
else:
p_emb = self.p_embedding.astype(np.float32).toarray()
emb_dim = p_emb.shape[-1]
num_clusters = num_clusters
quantizer = faiss.IndexFlatL2(emb_dim)
self.indexer = faiss.IndexIVFScalarQuantizer(
quantizer, quantizer.d, num_clusters, faiss.METRIC_L2
)
self.indexer.train(p_emb)
self.indexer.add(p_emb)
faiss.write_index(self.indexer, indexer_path)
print("Faiss Indexer Saved.")
def retrieve(
self, query_or_dataset: Union[str, Dataset], topk: Optional[int] = 1
) -> Union[Tuple[List, List], pd.DataFrame]:
"""
Arguments:
query_or_dataset (Union[str, Dataset]):
str이나 Dataset으로 이루어진 Query를 받습니다.
str 형태인 하나의 query만 받으면 `get_relevant_doc`을 통해 유사도를 구합니다.
Dataset 형태는 query를 포함한 HF.Dataset을 받습니다.
이 경우 `get_relevant_doc_bulk`를 통해 유사도를 구합니다.
topk (Optional[int], optional): Defaults to 1.
상위 몇 개의 passage를 사용할 것인지 지정합니다.
Returns:
1개의 Query를 받는 경우 -> Tuple(List, List)
다수의 Query를 받는 경우 -> pd.DataFrame: [description]
Note:
다수의 Query를 받는 경우,
Ground Truth가 있는 Query (train/valid) -> 기존 Ground Truth Passage를 같이 반환합니다.
Ground Truth가 없는 Query (test) -> Retrieval한 Passage만 반환합니다.
"""
# assert self.p_embedding is not None, "get_sparse_embedding() 메소드를 먼저 수행해줘야합니다."
if isinstance(query_or_dataset, str):
doc_scores, doc_indices = self.get_relevant_doc(query_or_dataset, k=topk)
print("[Search query]\n", query_or_dataset, "\n")
for i in range(topk):
print(f"Top-{i+1} passage with score {doc_scores[i]:4f}")
print(self.contexts[doc_indices[i]])
return (doc_scores, [self.contexts[doc_indices[i]] for i in range(topk)])
elif isinstance(query_or_dataset, Dataset):
# Retrieve한 Passage를 pd.DataFrame으로 반환합니다.
total = []
with timer("query exhaustive search"):
doc_scores, doc_indices = self.get_relevant_doc_bulk(
query_or_dataset["question"], k=topk
)
for idx, example in enumerate(tqdm(query_or_dataset, desc="Sparse retrieval: ")):
tmp = {
# Query와 해당 id를 반환합니다.
"question": example["question"],
"id": example["id"],
# Retrieve한 Passage의 id, context를 반환합니다.
"context": " ".join(
[self.contexts[pid] for pid in doc_indices[idx]] # topk문장 합치기
),
}
if "context" in example.keys() and "answers" in example.keys():
# validation 데이터를 사용하면 ground_truth context와 answer도 반환합니다.
tmp["original_context"] = example["context"]
tmp["answers"] = example["answers"]
total.append(tmp)
cqas = pd.DataFrame(total)
return cqas
def get_relevant_doc(self, query: str, k: Optional[int] = 1) -> Tuple[List, List]:
"""
Arguments:
query (str):
하나의 Query를 받습니다.
k (Optional[int]): 1
상위 몇 개의 Passage를 반환할지 정합니다.
Note:
vocab 에 없는 이상한 단어로 query 하는 경우 assertion 발생 (예) 뙣뙇?
"""
with timer("transform"):
query_vec = self.tfidfv.transform([query])
assert (
np.sum(query_vec) != 0
), "오류가 발생했습니다. 이 오류는 보통 query에 vectorizer의 vocab에 없는 단어만 존재하는 경우 발생합니다."
with timer("query ex search"):
result = query_vec * self.p_embedding.T
if not isinstance(result, np.ndarray):
result = result.toarray()
sorted_result = np.argsort(result.squeeze())[::-1]
doc_score = result.squeeze()[sorted_result].tolist()[:k]
doc_indices = sorted_result.tolist()[:k]
return doc_score, doc_indices
def get_relevant_doc_bulk(self, queries: List, k: Optional[int] = 1) -> Tuple[List, List]:
"""
Arguments:
queries (List):
하나의 Query를 받습니다.
k (Optional[int]): 1
상위 몇 개의 Passage를 반환할지 정합니다.
Note:
vocab 에 없는 이상한 단어로 query 하는 경우 assertion 발생 (예) 뙣뙇?
"""
query_vec = self.tfidfv.transform(queries)
assert (
np.sum(query_vec) != 0
), "오류가 발생했습니다. 이 오류는 보통 query에 vectorizer의 vocab에 없는 단어만 존재하는 경우 발생합니다."
result = query_vec * self.p_embedding.T
if not isinstance(result, np.ndarray):
result = result.toarray()
doc_scores = []
doc_indices = []
for i in range(result.shape[0]):
sorted_result = np.argsort(result[i, :])[::-1]
doc_scores.append(result[i, :][sorted_result].tolist()[:k])
doc_indices.append(sorted_result.tolist()[:k])
return doc_scores, doc_indices
def retrieve_faiss(
self, query_or_dataset: Union[str, Dataset], topk: Optional[int] = 1
) -> Union[Tuple[List, List], pd.DataFrame]:
"""
Arguments:
query_or_dataset (Union[str, Dataset]):
str이나 Dataset으로 이루어진 Query를 받습니다.
str 형태인 하나의 query만 받으면 `get_relevant_doc`을 통해 유사도를 구합니다.
Dataset 형태는 query를 포함한 HF.Dataset을 받습니다.
이 경우 `get_relevant_doc_bulk`를 통해 유사도를 구합니다.
topk (Optional[int], optional): Defaults to 1.
상위 몇 개의 passage를 사용할 것인지 지정합니다.
Returns:
1개의 Query를 받는 경우 -> Tuple(List, List)
다수의 Query를 받는 경우 -> pd.DataFrame: [description]
Note:
다수의 Query를 받는 경우,
Ground Truth가 있는 Query (train/valid) -> 기존 Ground Truth Passage를 같이 반환합니다.
Ground Truth가 없는 Query (test) -> Retrieval한 Passage만 반환합니다.
retrieve와 같은 기능을 하지만 faiss.indexer를 사용합니다.
"""
assert self.indexer is not None, "build_faiss()를 먼저 수행해주세요."
if isinstance(query_or_dataset, str):
doc_scores, doc_indices = self.get_relevant_doc_faiss(query_or_dataset, k=topk)
print("[Search query]\n", query_or_dataset, "\n")
for i in range(topk):
print("Top-%d passage with score %.4f" % (i + 1, doc_scores[i]))
print(self.contexts[doc_indices[i]])
return (doc_scores, [self.contexts[doc_indices[i]] for i in range(topk)])
elif isinstance(query_or_dataset, Dataset):
# Retrieve한 Passage를 pd.DataFrame으로 반환합니다.
queries = query_or_dataset["question"]
total = []
with timer("query faiss search"):
doc_scores, doc_indices = self.get_relevant_doc_bulk_faiss(queries, k=topk)
for idx, example in enumerate(tqdm(query_or_dataset, desc="Sparse retrieval: ")):
tmp = {
# Query와 해당 id를 반환합니다.
"question": example["question"],
"id": example["id"],
# Retrieve한 Passage의 id, context를 반환합니다.
"context": " ".join([self.contexts[pid] for pid in doc_indices[idx]]),
}
if "context" in example.keys() and "answers" in example.keys():
# validation 데이터를 사용하면 ground_truth context와 answer도 반환합니다.
tmp["original_context"] = example["context"]
tmp["answers"] = example["answers"]
total.append(tmp)
return pd.DataFrame(total)
def get_relevant_doc_faiss(self, query: str, k: Optional[int] = 1) -> Tuple[List, List]:
"""
Arguments:
query (str):
하나의 Query를 받습니다.
k (Optional[int]): 1
상위 몇 개의 Passage를 반환할지 정합니다.
Note:
vocab 에 없는 이상한 단어로 query 하는 경우 assertion 발생 (예) 뙣뙇?
"""
query_vec = self.tfidfv.transform([query])
assert (
np.sum(query_vec) != 0
), "오류가 발생했습니다. 이 오류는 보통 query에 vectorizer의 vocab에 없는 단어만 존재하는 경우 발생합니다."
q_emb = query_vec.toarray().astype(np.float32)
with timer("query faiss search"):
D, I = self.indexer.search(q_emb, k)
return D.tolist()[0], I.tolist()[0]
def get_relevant_doc_bulk_faiss(self, queries: List, k: Optional[int] = 1) -> Tuple[List, List]:
"""
Arguments:
queries (List):
하나의 Query를 받습니다.
k (Optional[int]): 1
상위 몇 개의 Passage를 반환할지 정합니다.
Note:
vocab 에 없는 이상한 단어로 query 하는 경우 assertion 발생 (예) 뙣뙇?
"""
query_vecs = self.tfidfv.transform(queries)
assert (
np.sum(query_vecs) != 0
), "오류가 발생했습니다. 이 오류는 보통 query에 vectorizer의 vocab에 없는 단어만 존재하는 경우 발생합니다."
q_embs = query_vecs.toarray().astype(np.float32)
D, I = self.indexer.search(q_embs, k)
return D.tolist(), I.tolist()
class BM25(Retrieval):
def __init__(
self,
tokenize_fn,
data_path: Optional[str] = "../data/",
context_path: Optional[str] = "wikipedia_documents.json",
):
super().__init__(tokenize_fn, data_path, context_path)
self.bm25 = None
def get_sparse_embedding(self):
with timer("bm25 building"):
self.bm25 = BM25Okapi(self.contexts, tokenizer=self.tokenize_fn)
def get_relevant_doc(self, query: str, k: Optional[int] = 1) -> Tuple[List, List]:
with timer("transform"):
tokenized_query = self.tokenize_fn(query)
with timer("query ex search"):
result = self.bm25.get_scores(tokenized_query)
sorted_result = np.argsort(result)[::-1]
doc_score = result[sorted_result].tolist()[:k]
doc_indices = sorted_result.tolist()[:k]
return doc_score, doc_indices
def get_relevant_doc_bulk(self, queries: List, k: Optional[int] = 1) -> Tuple[List, List]:
with timer("transform"):
tokenized_queris = [self.tokenize_fn(query) for query in queries]
with timer("query ex search"):
result = np.array(
[
self.bm25.get_scores(tokenized_query)
for tokenized_query in tqdm(tokenized_queris)
]
)
doc_scores = []
doc_indices = []
for i in range(result.shape[0]):
sorted_result = np.argsort(result[i, :])[::-1]
doc_scores.append(result[i, :][sorted_result].tolist()[:k])
doc_indices.append(sorted_result.tolist()[:k])
return doc_scores, doc_indices
class ElasticRetrieval:
def __init__(self, host='localhost', port='9200') -> NoReturn:
self.host = host
self.port = port
self.elastic_client = ElasticObject(host=self.host, port=self.port)
def retrieve(
self, query_or_dataset: Union[str, Dataset], topk: Optional[int] = 1
) -> Union[Tuple[List, List], pd.DataFrame]:
if isinstance(query_or_dataset, str):
doc_scores, doc_indices, responses = self.get_relevant_doc(query_or_dataset, k=topk)
print("[Search query]\n", query_or_dataset, "\n")
for i in range(min(topk, len(responses))):
print(f"Top-{i+1} passage with score {doc_scores[i]:4f}")
print(doc_indices[i])
print(responses[i]['_source']['text'])
return (doc_scores, [doc_indices[i] for i in range(topk)])
elif isinstance(query_or_dataset, Dataset):
# Retrieve한 Passage를 pd.DataFrame으로 반환합니다.
total = []
with timer("query exhaustive search"):
doc_scores, doc_indices, doc_responses = self.get_relevant_doc_bulk(
query_or_dataset["question"], k=topk
)
for idx, example in enumerate(tqdm(query_or_dataset, desc="Elasticsearch")):
# retrieved_context 구하는 부분 수정
retrieved_context = []
for i in range(min(topk, len(doc_responses[idx]))):
retrieved_context.append(doc_responses[idx][i]['_source']['text'])
tmp = {
# Query와 해당 id를 반환합니다.
"question": example["question"],
"id": example["id"],
# Retrieve한 Passage의 id, context를 반환합니다.
# "context_id": doc_indices[idx],
"context": " ".join(retrieved_context), # 수정
}
if "context" in example.keys() and "answers" in example.keys():
# validation 데이터를 사용하면 ground_truth context와 answer도 반환합니다.
tmp["original_context"] = example["context"]
tmp["answers"] = example["answers"]
total.append(tmp)
cqas = pd.DataFrame(total)
return cqas
def get_sparse_embedding(self):
with timer("elastic building..."):
indices = self.elastic_client.get_indices()
print('Elastic indices :', indices)
def get_relevant_doc(self, query: str, k: Optional[int] = 1) -> Tuple[List, List]:
with timer("query ex search"):
responses = self.elastic_client.search('wiki_docs', question=query, topk=k)
doc_score = []
doc_indices = []
for res in responses:
doc_score.append(res['_score'])
doc_indices.append(res['_id'])
return doc_score, doc_indices, responses
def get_relevant_doc_bulk(self, queries: List, k: Optional[int] = 10) -> Tuple[List, List]:
with timer("query ex search"):
doc_scores = []
doc_indices = []
doc_responses = []
for query in queries:
doc_score = []
doc_index = []
responses = self.elastic_client.search('wiki_docs', question=query, topk=k)
for res in responses:
doc_score.append(res['_score'])
doc_indices.append(res['_id'])
doc_scores.append(doc_score)
doc_indices.append(doc_index)
doc_responses.append(responses)
return doc_scores, doc_indices, doc_responses
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser(description="")
parser.add_argument(
"--dataset_name", default="../data/train_dataset", type=str, help=""
)
parser.add_argument(
"--model_name_or_path",
default="bert-base-multilingual-cased",
type=str,
help="",
)
parser.add_argument("--data_path", default="../data", type=str, help="")
parser.add_argument(
"--context_path", default="../data/wikipedia_documents", type=str, help=""
)
parser.add_argument("--use_faiss", default=False, type=bool, help="")
args = parser.parse_args()
# Test sparse
print(args.dataset_name)
org_dataset = load_from_disk(args.dataset_name)
full_ds = concatenate_datasets(
[
org_dataset["train"].flatten_indices(),
org_dataset["validation"].flatten_indices(),
]
) # train dev 를 합친 4192 개 질문에 대해 모두 테스트
print("*" * 40, "query dataset", "*" * 40)
print(full_ds)
retriever = ElasticRetrieval(host='localhost', port='9200')
query = "대통령을 포함한 미국의 행정부 견제권을 갖는 국가 기관은?"
if args.use_faiss:
# test single query
with timer("single query by faiss"):
scores, indices = retriever.retrieve_faiss(query)
# test bulk
with timer("bulk query by exhaustive search"):
df = retriever.retrieve_faiss(full_ds)
df["correct"] = df["original_context"] == df["context"]
print("correct retrieval result by faiss", df["correct"].sum() / len(df))
else:
with timer("bulk query by exhaustive search"):
df = retriever.retrieve(full_ds)
df["correct"] = df["original_context"] == df["context"]
print(
"correct retrieval result by exhaustive search",
df["correct"].sum() / len(df),
)
with timer("single query by exhaustive search"):
scores, indices = retriever.retrieve(query)