Update paths

This commit is contained in:
ynerant 2022-01-31 12:59:22 +01:00
parent 129abe7d93
commit 04adf8edcd
1 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ def sakey_output(file: str, threshold: int) -> tuple[list[list[str]], list[list[
"""
Prints the SAKEY output for the given dataset file.
"""
process = subprocess.Popen(['java', '-jar', 'material/sakey.jar', file, str(threshold)], stdout=subprocess.PIPE)
process = subprocess.Popen(['java', '-jar', 'sakey.jar', file, str(threshold)], stdout=subprocess.PIPE)
process.wait()
if process.returncode != 0:
@ -185,7 +185,7 @@ def process(classname: str, threshold: int, limit: int = 1000, recursion: int =
def main() -> None:
# Parse DBPedia ontology
with open('datasets/dbpedia.owl') as f:
with open('dbpedia.owl') as f:
ontology = BeautifulSoup(f, 'xml')
for e in ontology.find_all('ns0:range'):