Spaces:
Runtime error
Runtime error
# | |
# Pyserini: Reproducible IR research with sparse and dense representations | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
import filecmp | |
import os | |
from typing import List | |
class LuceneSearcherAnseriniMatchChecker: | |
def __init__(self, anserini_root: str, index: str, topics: str, pyserini_topics: str, qrels: str, eval_root: str): | |
self.anserini_root = anserini_root | |
self.index_path = index | |
self.topics = topics | |
self.qrels = qrels | |
self.pyserini_topics = pyserini_topics | |
self.anserini_base_cmd = os.path.join(self.anserini_root, | |
'target/appassembler/bin/SearchCollection -topicreader Trec') | |
self.pyserini_base_cmd = 'python -m pyserini.search.lucene' | |
self.eval_base_cmd = os.path.join(eval_root, 'tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30') | |
def _cleanup(files: List[str]): | |
for file in files: | |
if os.path.exists(file): | |
os.remove(file) | |
def run(self, runtag: str, anserini_extras: str, pyserini_extras: str): | |
print('-------------------------') | |
print(f'Running {runtag}:') | |
print('-------------------------') | |
anserini_output = f'verify.anserini.{runtag}.txt' | |
pyserini_output = f'verify.pyserini.{runtag}.txt' | |
anserini_cmd = f'{self.anserini_base_cmd} -index {self.index_path} ' \ | |
+ f'-topics {self.topics} -output {anserini_output} {anserini_extras}' | |
pyserini_cmd = f'{self.pyserini_base_cmd} --index {self.index_path} ' \ | |
+ f'--topics {self.pyserini_topics} --output {pyserini_output} {pyserini_extras}' | |
status = os.system(anserini_cmd) | |
if not status == 0: | |
self._cleanup([anserini_output, pyserini_output]) | |
return False | |
status = os.system(pyserini_cmd) | |
if not status == 0: | |
self._cleanup([anserini_output, pyserini_output]) | |
return False | |
res = filecmp.cmp(anserini_output, pyserini_output) | |
if res is True: | |
eval_cmd = f'{self.eval_base_cmd} {self.qrels} {anserini_output}' | |
status = os.system(eval_cmd) | |
if not status == 0: | |
print(f'[FAIL] {runtag} evaluation failure!') | |
self._cleanup([anserini_output, pyserini_output]) | |
return False | |
print(f'[SUCCESS] {runtag} results verified!') | |
self._cleanup([anserini_output, pyserini_output]) | |
return True | |
else: | |
print(f'[FAIL] {runtag} result do not match!') | |
self._cleanup([anserini_output, pyserini_output]) | |
return False | |