diff --git a/lib/tenet_extraction.py b/lib/tenet_extraction.py index 814ee4b0eec6d034f526e0acf4d757ba0d1ef0ee..b7e71e2724dbdf892b42c9dda06b8e81fcd98c7c 100644 --- a/lib/tenet_extraction.py +++ b/lib/tenet_extraction.py @@ -147,7 +147,7 @@ def _apply_refinement(graph, refinement_rule_list): for rule in refinement_rule_list: graph_length_before = len(graph) - graph, extracted_triple_set = rule.apply(graph) + (graph, extracted_triple_set), exec_time_date = rule.apply(graph) all_new_triple_set.extend(extracted_triple_set) graph_length_after = len(graph) @@ -179,13 +179,14 @@ def _apply_sequence(graph, sequence, refinement_rule_list): graph_length_before = len(graph) # -- apply rule - graph, extracted_triple_set = rule.apply(graph) + (graph, extracted_triple_set), exec_time_date = rule.apply(graph) all_new_triple_set.extend(extracted_triple_set) new_triple_count = len(graph) - graph_length_before - str = "----- {0}: {1}/{2} new triples ({3})" - str = str.format(rule.label, new_triple_count, - len(extracted_triple_set), len(graph)) + str = f"----- {rule.label}: " + str += f"{new_triple_count}/{len(extracted_triple_set)} new triple" + if new_triple_count > 1: str += f"s" + str += f" ({len(graph)}, {exec_time_date})" if (new_triple_count > 0): logger.info(str) else: diff --git a/lib/timer.py b/lib/timer.py index a5ba28b0cb306881e880af1e685bc4a704f9b3c3..fd9dfb5a661d670e44438bf02e2c5945a4d10d5f 100644 --- a/lib/timer.py +++ b/lib/timer.py @@ -57,3 +57,21 @@ def timed(func): return result return wrapper + +def timer_return(func): + """This decorator returns the execution time of the decorated function.""" + + @wraps(func) + def wrapper(*args, **kwargs): + + exec_start = time.perf_counter() + + result = func(*args, **kwargs) + + exec_end = time.perf_counter() + exec_time = exec_end - exec_start + exec_time_date = datetime.timedelta(seconds=exec_time) + + return result, exec_time_date + + return wrapper \ No newline at end of file diff --git a/lib/transduction/rule.py b/lib/transduction/rule.py index 12c5c34bb344287f3ece7e83a9a6a4b3420aebc4..0f78c3b39c058f7f55a34647fb5a516ae2f5be77 100644 --- a/lib/transduction/rule.py +++ b/lib/transduction/rule.py @@ -11,7 +11,7 @@ # Importing required modules #============================================================================== -# -- +from .timer import timer_return #============================================================================== @@ -119,6 +119,7 @@ class Rule: # Method(s) to update a graph by running the rule SPARQL query #-------------------------------------------------------------------------- + @timer_return def apply(self, graph): """ Update the <graph> by running the rule SPARQL query, and return resulting triples with the updated graph diff --git a/lib/transduction/timer.py b/lib/transduction/timer.py new file mode 100644 index 0000000000000000000000000000000000000000..fd9dfb5a661d670e44438bf02e2c5945a4d10d5f --- /dev/null +++ b/lib/transduction/timer.py @@ -0,0 +1,77 @@ +#!/usr/bin/python3.10 +# -*-coding:Utf-8 -* + +#============================================================================== +# TENET: timer +#------------------------------------------------------------------------------ +# Module using Python decorators to log method execution time +#============================================================================== + +#============================================================================== +# Importing required modules +#============================================================================== + +import logging +import time, datetime +from functools import wraps + + +#============================================================================== +# Parameters +#============================================================================== + +# Logging +logger = logging.getLogger(__name__) + + +#============================================================================== +# Main Function +#============================================================================== + +def timed(func): + """This decorator prints the execution time for the decorated function.""" + + @wraps(func) + def wrapper(*args, **kwargs): + + exec_start = time.perf_counter() + process_start = time.process_time() + + result = func(*args, **kwargs) + + exec_end = time.perf_counter() + process_end = time.process_time() + exec_time = exec_end - exec_start + exec_time_date = datetime.timedelta(seconds=exec_time) + process_time = process_end - process_start + process_time_date = datetime.timedelta(seconds=process_time) + + message = "\n" + " *** Execution Time *** " + message += "\n" + "----- Function: {0} ({1})".format(func.__name__, + func.__module__) + message += "\n" + "----- Total Time: {0}".format(exec_time_date) + message += "\n" + "----- Process Time: {0}".format(process_time_date) + message += "\n" + " *** - *** " + logger.info(message) + + return result + + return wrapper + +def timer_return(func): + """This decorator returns the execution time of the decorated function.""" + + @wraps(func) + def wrapper(*args, **kwargs): + + exec_start = time.perf_counter() + + result = func(*args, **kwargs) + + exec_end = time.perf_counter() + exec_time = exec_end - exec_start + exec_time_date = datetime.timedelta(seconds=exec_time) + + return result, exec_time_date + + return wrapper \ No newline at end of file diff --git a/output/SolarSystemDev1-20230111/SolarSystemDev1-1/SolarSystemDev1_factoid.ttl b/output/SolarSystemDev1-20230111/SolarSystemDev1-1/SolarSystemDev1_factoid.ttl index b80679bc4d5663da6ece9485f013895a687daf3e..dfff467cd6a76acbb486e6bfc002385f1c416c56 100644 --- a/output/SolarSystemDev1-20230111/SolarSystemDev1-1/SolarSystemDev1_factoid.ttl +++ b/output/SolarSystemDev1-20230111/SolarSystemDev1-1/SolarSystemDev1_factoid.ttl @@ -1,68 +1,68 @@ @base <http://SolarSystemDev1/factoid> . -@prefix ns1: <https://tenet.tetras-libre.fr/semantic-net#> . -@prefix ns2: <https://tenet.tetras-libre.fr/base-ontology#> . +@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> . +@prefix ns2: <https://tenet.tetras-libre.fr/semantic-net#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . -ns1:atomClass_gravitation_g ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation> . +ns2:atomClass_gravitation_g ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation> . -ns1:atomClass_object_o ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#object> . +ns2:atomClass_object_o ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#object> . -ns1:atomClass_sun_s2 ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#sun> . +ns2:atomClass_sun_s2 ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#sun> . -ns1:atomClass_system_p ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system> . +ns2:atomClass_system_p ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system> . -ns1:atomClass_system_s ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system> . +ns2:atomClass_system_s ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system> . -ns1:atomProperty_bind_b ns1:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#bind-of> ; - ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#bind> . +ns2:atomProperty_bind_b ns2:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#bind-of> ; + ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#bind> . -ns1:atomProperty_direct_d ns1:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#direct-of> ; - ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#direct> . +ns2:atomProperty_direct_d ns2:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#direct-of> ; + ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#direct> . -ns1:atomProperty_hasManner_m9 ns1:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#hasManner> ; - ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#hasManner> . +ns2:atomProperty_hasManner_m9 ns2:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#hasManner> ; + ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#hasManner> . -ns1:atomProperty_hasPart_p9 ns1:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#hasPart> ; - ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#hasPart> . +ns2:atomProperty_hasPart_p9 ns2:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#hasPart> ; + ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#hasPart> . -ns1:atomProperty_orbit_o2 ns1:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#orbit-of> ; - ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#orbit> . +ns2:atomProperty_orbit_o2 ns2:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#orbit-of> ; + ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#orbit> . -ns1:compositeClass_gravitation-binding-system-hasPart-sun-and-object-etc_g ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-etc> . +ns2:compositeClass_gravitation-binding-system-hasPart-sun-and-object-etc_g ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-etc> . -ns1:compositeClass_gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc_g ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc> . +ns2:compositeClass_gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc_g ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc> . -ns1:compositeClass_gravitation-binding-system-hasPart-sun-and-object_g ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object> . +ns2:compositeClass_gravitation-binding-system-hasPart-sun-and-object_g ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object> . -ns1:compositeClass_gravitation-binding-system_g ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system> . +ns2:compositeClass_gravitation-binding-system_g ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system> . -ns1:compositeClass_object-orbiting-sun_o ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#object-orbiting-sun> . +ns2:compositeClass_object-orbiting-sun_o ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#object-orbiting-sun> . -ns1:compositeClass_system-hasPart-sun-and-object-etc_s ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-etc> . +ns2:compositeClass_system-hasPart-sun-and-object-etc_s ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-etc> . -ns1:compositeClass_system-hasPart-sun-and-object-orbiting-sun-etc_s ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-orbiting-sun-etc> . +ns2:compositeClass_system-hasPart-sun-and-object-orbiting-sun-etc_s ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-orbiting-sun-etc> . -ns1:compositeClass_system-hasPart-sun-and-object_s ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object> . +ns2:compositeClass_system-hasPart-sun-and-object_s ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object> . -ns1:compositeProperty_not-direct_d2 ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#not-direct> . +ns2:compositeProperty_not-direct_d2 ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#not-direct> . -ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-libre.fr/extract-result#solar-system> . +ns2:individual_system_SolarSystem ns2:hasIndividualURI <https://tenet.tetras-libre.fr/extract-result#solar-system> . <https://tenet.tetras-libre.fr/extract-result#bind> a owl:ObjectProperty ; rdfs:label "bind" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#direct> a owl:ObjectProperty ; rdfs:label "direct" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#direct-of> a owl:ObjectProperty ; rdfs:label "direct-of" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system> a owl:Class ; rdfs:label "gravitation-binding-system" ; @@ -70,7 +70,7 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib owl:onProperty <https://tenet.tetras-libre.fr/extract-result#bind-of> ; owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#system> ], <https://tenet.tetras-libre.fr/extract-result#gravitation> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object> a owl:Class ; rdfs:label "gravitation-binding-system-hasPart-sun-and-object" ; @@ -78,7 +78,7 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib owl:onProperty <https://tenet.tetras-libre.fr/extract-result#bind-of> ; owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object> ], <https://tenet.tetras-libre.fr/extract-result#gravitation> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-etc> a owl:Class ; rdfs:label "gravitation-binding-system-hasPart-sun-and-object-etc" ; @@ -86,7 +86,7 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib owl:onProperty <https://tenet.tetras-libre.fr/extract-result#bind-of> ; owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-etc> ], <https://tenet.tetras-libre.fr/extract-result#gravitation> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc> a owl:Class ; rdfs:label "gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc" ; @@ -94,7 +94,7 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib owl:onProperty <https://tenet.tetras-libre.fr/extract-result#bind-of> ; owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-orbiting-sun-etc> ], <https://tenet.tetras-libre.fr/extract-result#gravitation> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#object-orbiting-sun> a owl:Class ; rdfs:label "object-orbiting-sun" ; @@ -102,12 +102,12 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit-of> ; owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#sun> ], <https://tenet.tetras-libre.fr/extract-result#object> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ; rdfs:label "orbit" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#solar-system> a owl:individual, <https://tenet.tetras-libre.fr/extract-result#system>, @@ -115,60 +115,60 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-etc>, <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-orbiting-sun-etc> ; rdfs:label "Solar System" ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#hasManner> a owl:ObjectProperty ; rdfs:label "hasManner" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ; rdfs:label "hasPart" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ; rdfs:label "object" ; - rdfs:subClassOf ns2:Entity ; - ns2:fromStructure "SSC-01-01" . + rdfs:subClassOf ns1:Entity ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#orbit-of> a owl:ObjectProperty ; rdfs:label "orbit-of" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ; rdfs:label "sun" ; - rdfs:subClassOf ns2:Entity ; - ns2:fromStructure "SSC-01-01" . + rdfs:subClassOf ns1:Entity ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object> a owl:Class ; rdfs:label "system-hasPart-sun-and-object" ; rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-etc> a owl:Class ; rdfs:label "system-hasPart-sun-and-object-etc" ; rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-orbiting-sun-etc> a owl:Class ; rdfs:label "system-hasPart-sun-and-object-orbiting-sun-etc" ; rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#bind-of> a owl:ObjectProperty ; rdfs:label "bind-of" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#gravitation> a owl:Class ; rdfs:label "gravitation" ; - rdfs:subClassOf ns2:Entity ; - ns2:fromStructure "SSC-01-01" . + rdfs:subClassOf ns1:Entity ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ; rdfs:label "system" ; - rdfs:subClassOf ns2:Entity ; - ns2:fromStructure "SSC-01-01" . + rdfs:subClassOf ns1:Entity ; + ns1:fromStructure "SSC-01-01" . diff --git a/output/SolarSystemDev1-20230111/SolarSystemDev1_factoid.ttl b/output/SolarSystemDev1-20230111/SolarSystemDev1_factoid.ttl index b80679bc4d5663da6ece9485f013895a687daf3e..dfff467cd6a76acbb486e6bfc002385f1c416c56 100644 --- a/output/SolarSystemDev1-20230111/SolarSystemDev1_factoid.ttl +++ b/output/SolarSystemDev1-20230111/SolarSystemDev1_factoid.ttl @@ -1,68 +1,68 @@ @base <http://SolarSystemDev1/factoid> . -@prefix ns1: <https://tenet.tetras-libre.fr/semantic-net#> . -@prefix ns2: <https://tenet.tetras-libre.fr/base-ontology#> . +@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> . +@prefix ns2: <https://tenet.tetras-libre.fr/semantic-net#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . -ns1:atomClass_gravitation_g ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation> . +ns2:atomClass_gravitation_g ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation> . -ns1:atomClass_object_o ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#object> . +ns2:atomClass_object_o ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#object> . -ns1:atomClass_sun_s2 ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#sun> . +ns2:atomClass_sun_s2 ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#sun> . -ns1:atomClass_system_p ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system> . +ns2:atomClass_system_p ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system> . -ns1:atomClass_system_s ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system> . +ns2:atomClass_system_s ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system> . -ns1:atomProperty_bind_b ns1:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#bind-of> ; - ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#bind> . +ns2:atomProperty_bind_b ns2:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#bind-of> ; + ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#bind> . -ns1:atomProperty_direct_d ns1:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#direct-of> ; - ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#direct> . +ns2:atomProperty_direct_d ns2:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#direct-of> ; + ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#direct> . -ns1:atomProperty_hasManner_m9 ns1:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#hasManner> ; - ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#hasManner> . +ns2:atomProperty_hasManner_m9 ns2:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#hasManner> ; + ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#hasManner> . -ns1:atomProperty_hasPart_p9 ns1:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#hasPart> ; - ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#hasPart> . +ns2:atomProperty_hasPart_p9 ns2:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#hasPart> ; + ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#hasPart> . -ns1:atomProperty_orbit_o2 ns1:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#orbit-of> ; - ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#orbit> . +ns2:atomProperty_orbit_o2 ns2:hasProperty12URI <https://tenet.tetras-libre.fr/extract-result#orbit-of> ; + ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#orbit> . -ns1:compositeClass_gravitation-binding-system-hasPart-sun-and-object-etc_g ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-etc> . +ns2:compositeClass_gravitation-binding-system-hasPart-sun-and-object-etc_g ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-etc> . -ns1:compositeClass_gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc_g ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc> . +ns2:compositeClass_gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc_g ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc> . -ns1:compositeClass_gravitation-binding-system-hasPart-sun-and-object_g ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object> . +ns2:compositeClass_gravitation-binding-system-hasPart-sun-and-object_g ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object> . -ns1:compositeClass_gravitation-binding-system_g ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system> . +ns2:compositeClass_gravitation-binding-system_g ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system> . -ns1:compositeClass_object-orbiting-sun_o ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#object-orbiting-sun> . +ns2:compositeClass_object-orbiting-sun_o ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#object-orbiting-sun> . -ns1:compositeClass_system-hasPart-sun-and-object-etc_s ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-etc> . +ns2:compositeClass_system-hasPart-sun-and-object-etc_s ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-etc> . -ns1:compositeClass_system-hasPart-sun-and-object-orbiting-sun-etc_s ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-orbiting-sun-etc> . +ns2:compositeClass_system-hasPart-sun-and-object-orbiting-sun-etc_s ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-orbiting-sun-etc> . -ns1:compositeClass_system-hasPart-sun-and-object_s ns1:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object> . +ns2:compositeClass_system-hasPart-sun-and-object_s ns2:hasClassURI <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object> . -ns1:compositeProperty_not-direct_d2 ns1:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#not-direct> . +ns2:compositeProperty_not-direct_d2 ns2:hasPropertyURI <https://tenet.tetras-libre.fr/extract-result#not-direct> . -ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-libre.fr/extract-result#solar-system> . +ns2:individual_system_SolarSystem ns2:hasIndividualURI <https://tenet.tetras-libre.fr/extract-result#solar-system> . <https://tenet.tetras-libre.fr/extract-result#bind> a owl:ObjectProperty ; rdfs:label "bind" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#direct> a owl:ObjectProperty ; rdfs:label "direct" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#direct-of> a owl:ObjectProperty ; rdfs:label "direct-of" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system> a owl:Class ; rdfs:label "gravitation-binding-system" ; @@ -70,7 +70,7 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib owl:onProperty <https://tenet.tetras-libre.fr/extract-result#bind-of> ; owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#system> ], <https://tenet.tetras-libre.fr/extract-result#gravitation> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object> a owl:Class ; rdfs:label "gravitation-binding-system-hasPart-sun-and-object" ; @@ -78,7 +78,7 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib owl:onProperty <https://tenet.tetras-libre.fr/extract-result#bind-of> ; owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object> ], <https://tenet.tetras-libre.fr/extract-result#gravitation> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-etc> a owl:Class ; rdfs:label "gravitation-binding-system-hasPart-sun-and-object-etc" ; @@ -86,7 +86,7 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib owl:onProperty <https://tenet.tetras-libre.fr/extract-result#bind-of> ; owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-etc> ], <https://tenet.tetras-libre.fr/extract-result#gravitation> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc> a owl:Class ; rdfs:label "gravitation-binding-system-hasPart-sun-and-object-orbiting-sun-etc" ; @@ -94,7 +94,7 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib owl:onProperty <https://tenet.tetras-libre.fr/extract-result#bind-of> ; owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-orbiting-sun-etc> ], <https://tenet.tetras-libre.fr/extract-result#gravitation> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#object-orbiting-sun> a owl:Class ; rdfs:label "object-orbiting-sun" ; @@ -102,12 +102,12 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit-of> ; owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#sun> ], <https://tenet.tetras-libre.fr/extract-result#object> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ; rdfs:label "orbit" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#solar-system> a owl:individual, <https://tenet.tetras-libre.fr/extract-result#system>, @@ -115,60 +115,60 @@ ns1:individual_system_SolarSystem ns1:hasIndividualURI <https://tenet.tetras-lib <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-etc>, <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-orbiting-sun-etc> ; rdfs:label "Solar System" ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#hasManner> a owl:ObjectProperty ; rdfs:label "hasManner" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ; rdfs:label "hasPart" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ; rdfs:label "object" ; - rdfs:subClassOf ns2:Entity ; - ns2:fromStructure "SSC-01-01" . + rdfs:subClassOf ns1:Entity ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#orbit-of> a owl:ObjectProperty ; rdfs:label "orbit-of" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ; rdfs:label "sun" ; - rdfs:subClassOf ns2:Entity ; - ns2:fromStructure "SSC-01-01" . + rdfs:subClassOf ns1:Entity ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object> a owl:Class ; rdfs:label "system-hasPart-sun-and-object" ; rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-etc> a owl:Class ; rdfs:label "system-hasPart-sun-and-object-etc" ; rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#system-hasPart-sun-and-object-orbiting-sun-etc> a owl:Class ; rdfs:label "system-hasPart-sun-and-object-orbiting-sun-etc" ; rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ; - ns2:fromStructure "SSC-01-01" . + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#bind-of> a owl:ObjectProperty ; rdfs:label "bind-of" ; - rdfs:subPropertyOf ns2:Out_ObjectProperty ; - ns2:fromStructure "SSC-01-01" . + rdfs:subPropertyOf ns1:Out_ObjectProperty ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#gravitation> a owl:Class ; rdfs:label "gravitation" ; - rdfs:subClassOf ns2:Entity ; - ns2:fromStructure "SSC-01-01" . + rdfs:subClassOf ns1:Entity ; + ns1:fromStructure "SSC-01-01" . <https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ; rdfs:label "system" ; - rdfs:subClassOf ns2:Entity ; - ns2:fromStructure "SSC-01-01" . + rdfs:subClassOf ns1:Entity ; + ns1:fromStructure "SSC-01-01" . diff --git a/run_extraction_dev.py b/run_extraction_dev.py index 9b1f2ed1b82e5398a6f4234ccbeae5698af0acf8..819d816210b1974fb14afffed1c7b37dd8b95210 100644 --- a/run_extraction_dev.py +++ b/run_extraction_dev.py @@ -90,8 +90,8 @@ source_corpus = dev_dir + "solar-system-" + uuid_num + '/' # -- Id / Source: Solar System Sample #source_type = 'amr' -uuid_str = 'SolarSystemSample' -source_corpus = solar_system_sample +#uuid_str = 'SolarSystemSample' +#source_corpus = solar_system_sample # -- Id / Source: Eolss corpus (paragraph about fish) # source_type = 'unl' diff --git a/structure/cts/amr_scheme_1.py b/structure/cts/amr_scheme_1.py index bea09f01363a057cd26bc55aa17d96dcbb01f861..c1cf9e68a25eb5018f9346cfa05e7cda805552f6 100644 --- a/structure/cts/amr_scheme_1.py +++ b/structure/cts/amr_scheme_1.py @@ -121,7 +121,8 @@ phenomena_application_sequence = { 'and-conjunction-phenomena-application-2', 'and-conjunction-phenomena-application-3', 'and-conjunction-phenomena-application-4', - 'and-conjunction-phenomena-application-5'] + 'and-conjunction-phenomena-application-5' + ] } @@ -153,7 +154,7 @@ restriction_adding_sequence = { phenomena_checking_sequence = { 'label': 'phenomena-checking-sequence', 'comment': 'creation of phenomena nets', - 'rule_key_list': [# -- 'expand-and-or-conjunction-phenomena-net', + 'rule_key_list': [#'expand-and-or-conjunction-phenomena-net', 'expand-degree-phenomena-net-1', 'expand-degree-phenomena-net-2', 'expand-degree-phenomena-net-3', diff --git a/tenet.log b/tenet.log index 30829d316e6f2118d6f927e5eaae3349d953b97f..52ee45c5a0ec3fcf3b5dd5b3fe523af942b1f56a 100644 --- a/tenet.log +++ b/tenet.log @@ -1,16 +1,16 @@ - INFO - [TENET] Extraction Processing - INFO - === Process Initialization === - INFO - -- Process Setting -- INFO - ----- Corpus source: samples/solar-system/ (amr) -- INFO - ----- Ontology target (id): SolarSystemSample +- INFO - ----- Corpus source: dev/solar-system-1/ (amr) +- INFO - ----- Ontology target (id): SolarSystemDev1 - DEBUG - ----- Current path: /home/lamenji/Workspace/Tetras/tenet - DEBUG - ----- Config file: config.xml - DEBUG - *** Config (Full Parameters) *** -- Base Parameters ----- config file: config.xml - ----- uuid: SolarSystemSample - ----- source corpus: samples/solar-system/ + ----- uuid: SolarSystemDev1 + ----- source corpus: dev/solar-system-1/ ----- target reference: base ----- extraction engine: tenet ----- process level: sentence @@ -23,8 +23,8 @@ ----- CTS directory: ./structure/cts/ ----- target frame directory: ./input/targetFrameStructure/ ----- input document directory: ./input/amrDocuments/ - ----- output directory: ./output/SolarSystemSample-20230111/ - ----- sentence output directory: ./output/SolarSystemSample-20230111/ + ----- output directory: ./output/SolarSystemDev1-20230111/ + ----- sentence output directory: ./output/SolarSystemDev1-20230111/ ----- SHACL binary directory: ./lib/shacl-1.3.2/bin -- Config File Definition ----- schema file: ./structure/amr-rdf-schema.ttl @@ -38,17 +38,17 @@ ----- ontology suffix: -ontology.ttl ----- ontology seed suffix: -ontology-seed.ttl -- Source File Definition - ----- source sentence file: ./input/amrDocuments/samples/solar-system/**/*.ttl + ----- source sentence file: ./input/amrDocuments/dev/solar-system-1/**/*.ttl -- Target File Definition ----- frame ontology file: ./input/targetFrameStructure/base-ontology.ttl ----- frame ontology seed file: ./input/targetFrameStructure/base-ontology-seed.ttl -- Output ----- ontology namespace: https://tenet.tetras-libre.fr/base-ontology/ - ----- output file: ./output/SolarSystemSample-20230111/SolarSystemSample.ttl + ----- output file: ./output/SolarSystemDev1-20230111/SolarSystemDev1.ttl *** - *** -- INFO - -- Creating output target directory: ./output/SolarSystemSample-20230111/ +- INFO - -- Creating output target directory: ./output/SolarSystemDev1-20230111/ - DEBUG - -- Counting number of graph files (sentences) -- DEBUG - ----- Graph count: 10 +- DEBUG - ----- Graph count: 1 - INFO - === Extraction Processing using New TENET Engine === - DEBUG - -- Process level: sentence - INFO - *** sentence 1 *** @@ -62,1853 +62,187 @@ - DEBUG - -------- Base Ontology produced as output (573) - DEBUG - --- Source Data Import - DEBUG - ----- Sentence Loading -- DEBUG - -------- ./input/amrDocuments/samples/solar-system/SSC-06-01.stog.amr.ttl (639) +- DEBUG - -------- ./input/amrDocuments/dev/solar-system-1/SSC-01-01.stog.amr.ttl (621) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: ./output/SolarSystemSample-20230111/SolarSystemSample-1/SolarSystemSample.ttl -- INFO - ----- Sentence (id): SSC-06-01 -- INFO - ----- Sentence (text): The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal. -- DEBUG - --- Ending Structure Preparation -- DEBUG - ----- Total Execution Time = 0:00:00.305611 -- INFO - -- Loading Extraction Scheme (amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_ctr/*) -- DEBUG - ----- Total rule number: 94 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triples (639) -- INFO - --- Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (649) -- INFO - ----- reclassify-concept-2: 4/4 new triples (653) -- INFO - ----- reclassify-concept-3: 4/4 new triples (657) -- INFO - ----- reclassify-concept-4: 28/28 new triples (685) -- INFO - ----- reclassify-concept-5: 4/4 new triples (689) -- INFO - ----- reify-roles-as-concept: 5/5 new triples (694) -- INFO - ----- reclassify-existing-variable: 72/72 new triples (766) -- INFO - ----- add-new-variable-for-reified-concept: 4/4 new triples (770) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 51/51 new triples (821) -- INFO - ----- add-amr-leaf-for-reified-concept: 4/4 new triples (825) -- INFO - ----- add-amr-edge-for-core-relation: 45/45 new triples (870) -- INFO - ----- add-amr-edge-for-reified-concept: 6/6 new triples (876) -- INFO - ----- add-amr-edge-for-name-relation: 20/20 new triples (896) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triples (896) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triples (896) -- INFO - ----- update-amr-edge-role-1: 21/21 new triples (917) -- INFO - ----- add-amr-root: 5/5 new triples (922) -- DEBUG - --- Serializing graph to SolarSystemSample_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-1/SolarSystemSample_preprocessing.ttl -- DEBUG - ----- base: http://SolarSystemSample/preprocessing -- INFO - ----- 283 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 72/72 new triples (994) -- DEBUG - ----- (refinement) refine-cover-node-1: 12 new triples (1006) -- DEBUG - ----- (refinement) refine-cover-node-2: 12 new triples (1018) -- INFO - ----- create-individual-net-1: 28/28 new triples (1046) -- DEBUG - ----- (refinement) refine-cover-node-1: 4 new triples (1050) -- INFO - ----- create-atom-property-net-1: 42/42 new triples (1092) -- DEBUG - ----- (refinement) refine-cover-node-1: 3 new triples (1095) -- INFO - ----- create-value-net: 29/29 new triples (1124) -- INFO - ----- create-phenomena-net-1: 45/45 new triples (1169) -- DEBUG - ----- (refinement) refine-cover-node-1: 3 new triples (1172) -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 2/92 new triples (1174) -- DEBUG - ----- create-individual-net-1: 0/36 new triples (1174) -- DEBUG - ----- create-atom-property-net-1: 0/49 new triples (1174) -- DEBUG - ----- create-value-net: 0/29 new triples (1174) -- INFO - ----- create-phenomena-net-1: 1/46 new triples (1175) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (1175) -- INFO - ----- and-conjunction-phenomena-application-1: 32/38 new triples (1207) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (1208) -- INFO - ----- and-conjunction-phenomena-application-2: 2/2 new triples (1210) -- INFO - ----- and-conjunction-phenomena-application-3: 26/26 new triples (1236) -- INFO - ----- and-conjunction-phenomena-application-4: 16/16 new triples (1252) -- DEBUG - ----- (refinement) refine-cover-node-2: 2 new triples (1254) -- INFO - ----- and-conjunction-phenomena-application-5: 8/10 new triples (1262) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (1262) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (1262) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (1262) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (1262) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (1262) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (1262) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1262) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-property-3: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1262) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1262) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (1262) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/38 new triples (1262) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/2 new triples (1262) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/26 new triples (1262) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/16 new triples (1262) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (1262) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (1262) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (1262) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (1262) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (1262) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (1262) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (1262) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1262) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-property-3: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1262) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1262) -- INFO - --- Sequence: restriction-adding-sequence -- DEBUG - ----- add-restriction-to-class-net-from-property-1: 0/0 new triples (1262) -- INFO - --- Sequence: classification-sequence -- INFO - ----- classify-net-from-core-1: 3/3 new triples (1265) -- DEBUG - ----- classify-net-from-core-2: 0/0 new triples (1265) -- INFO - ----- classify-net-from-core-3: 8/9 new triples (1273) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (1274) -- DEBUG - ----- classify-net-from-part: 0/0 new triples (1274) -- DEBUG - ----- classify-net-from-domain: 0/0 new triples (1274) -- DEBUG - ----- classify-net-from-degree-phenomena-1: 0/0 new triples (1274) -- DEBUG - ----- classify-net-from-degree-phenomena-2: 0/0 new triples (1274) -- DEBUG - ----- classify-net-from-degree-phenomena-3: 0/0 new triples (1274) -- INFO - ----- propagate-individual-1: 5/5 new triples (1279) -- DEBUG - ----- propagate-individual-2: 0/0 new triples (1279) -- INFO - ----- reclassify-deprecated-net: 1/1 new triples (1280) -- DEBUG - --- Serializing graph to SolarSystemSample_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-1/SolarSystemSample_transduction.ttl -- DEBUG - ----- base: http://SolarSystemSample/transduction -- INFO - ----- 358 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 13/13 new triples (1293) -- INFO - ----- compute-uri-for-owl-declaration-2: 5/5 new triples (1298) -- INFO - ----- compute-uri-for-owl-declaration-3: 1/1 new triples (1299) -- INFO - ----- compute-uri-for-owl-declaration-4: 3/3 new triples (1302) -- INFO - ----- compute-uri-for-owl-declaration-5: 3/3 new triples (1305) -- INFO - ----- generate-atom-class: 21/21 new triples (1326) -- INFO - ----- classify-atom-class-1: 1/1 new triples (1327) -- INFO - ----- classify-atom-class-2: 6/6 new triples (1333) -- INFO - ----- generate-individual: 15/15 new triples (1348) -- INFO - ----- classify-individual: 4/4 new triples (1352) -- INFO - ----- generate-atom-property-1: 12/12 new triples (1364) -- INFO - ----- generate-atom-property-12: 4/12 new triples (1368) -- DEBUG - ----- generate-inverse-relation: 0/0 new triples (1368) -- INFO - ----- generate-composite-class: 8/8 new triples (1376) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triples (1376) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triples (1376) -- DEBUG - ----- add-restriction-to-class-3: 0/0 new triples (1376) -- DEBUG - ----- add-restriction-to-class-4: 0/0 new triples (1376) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triples (1376) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triples (1376) -- DEBUG - ----- generate-composite-property: 0/0 new triples (1376) -- DEBUG - --- Serializing graph to SolarSystemSample_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-1/SolarSystemSample_generation.ttl -- DEBUG - ----- base: http://SolarSystemSample/generation -- INFO - ----- 96 triples extracted during generation step -- INFO - -- Result: file containing only the factoids -- DEBUG - --- Making factoid graph with the last step result -- DEBUG - ----- Number of factoids: 104 -- DEBUG - ----- Graph base: http://SolarSystemSample/factoid -- DEBUG - --- Serializing graph to factoid file (./output/SolarSystemSample-20230111/SolarSystemSample-1/SolarSystemSample_factoid.ttl) -- INFO - - *** Execution Time *** ------ Function: apply (lib.tenet_extraction) ------ Total Time: 0:07:27.183168 ------ Process Time: 0:07:25.913120 - *** - *** -- INFO - *** sentence 2 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (302) -- DEBUG - -------- Semantic Net Definition (509) -- DEBUG - -------- Config Parameter Definition (543) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (573) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- ./input/amrDocuments/samples/solar-system/SSC-04-01.stog.amr.ttl (630) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: ./output/SolarSystemSample-20230111/SolarSystemSample-2/SolarSystemSample.ttl -- INFO - ----- Sentence (id): SSC-04-01 -- INFO - ----- Sentence (text): The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud. -- DEBUG - --- Ending Structure Preparation -- DEBUG - ----- Total Execution Time = 0:00:00.121471 -- INFO - -- Loading Extraction Scheme (amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_ctr/*) -- DEBUG - ----- Total rule number: 94 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triples (630) -- INFO - --- Sequence: amr-reification-sequence -- DEBUG - ----- reclassify-concept-1: 0/0 new triples (630) -- INFO - ----- reclassify-concept-2: 4/4 new triples (634) -- INFO - ----- reclassify-concept-3: 12/12 new triples (646) -- INFO - ----- reclassify-concept-4: 36/36 new triples (682) -- DEBUG - ----- reclassify-concept-5: 0/0 new triples (682) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triples (682) -- INFO - ----- reclassify-existing-variable: 53/53 new triples (735) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triples (735) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 39/39 new triples (774) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triples (774) -- INFO - ----- add-amr-edge-for-core-relation: 36/36 new triples (810) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triples (810) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (815) -- INFO - ----- add-value-for-quant-relation: 5/5 new triples (820) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triples (820) -- INFO - ----- update-amr-edge-role-1: 11/11 new triples (831) -- INFO - ----- add-amr-root: 5/5 new triples (836) -- DEBUG - --- Serializing graph to SolarSystemSample_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-2/SolarSystemSample_preprocessing.ttl -- DEBUG - ----- base: http://SolarSystemSample/preprocessing -- INFO - ----- 206 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 54/54 new triples (890) -- DEBUG - ----- (refinement) refine-cover-node-1: 9 new triples (899) -- DEBUG - ----- (refinement) refine-cover-node-2: 9 new triples (908) -- INFO - ----- create-individual-net-1: 7/7 new triples (915) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (916) -- INFO - ----- create-atom-property-net-1: 54/54 new triples (970) -- DEBUG - ----- (refinement) refine-cover-node-1: 4 new triples (974) -- INFO - ----- create-value-net: 15/15 new triples (989) -- DEBUG - ----- create-phenomena-net-1: 0/0 new triples (989) -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 6/65 new triples (995) -- DEBUG - ----- create-individual-net-1: 0/9 new triples (995) -- INFO - ----- create-atom-property-net-1: 4/58 new triples (999) -- DEBUG - ----- create-value-net: 0/15 new triples (999) -- DEBUG - ----- create-phenomena-net-1: 0/0 new triples (999) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (999) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (999) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (999) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (999) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (999) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (999) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (999) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (999) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (999) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (999) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (999) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (999) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (999) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-property-3: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (999) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (999) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (999) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (999) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (999) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (999) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (999) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (999) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (999) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (999) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (999) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (999) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (999) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (999) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (999) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-property-3: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (999) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (999) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (999) -- INFO - --- Sequence: restriction-adding-sequence -- DEBUG - ----- add-restriction-to-class-net-from-property-1: 0/0 new triples (999) -- INFO - --- Sequence: classification-sequence -- DEBUG - ----- classify-net-from-core-1: 0/0 new triples (999) -- INFO - ----- classify-net-from-core-2: 3/3 new triples (1002) -- DEBUG - ----- classify-net-from-core-3: 0/0 new triples (1002) -- DEBUG - ----- classify-net-from-part: 0/0 new triples (1002) -- DEBUG - ----- classify-net-from-domain: 0/0 new triples (1002) -- DEBUG - ----- classify-net-from-degree-phenomena-1: 0/0 new triples (1002) -- DEBUG - ----- classify-net-from-degree-phenomena-2: 0/0 new triples (1002) -- DEBUG - ----- classify-net-from-degree-phenomena-3: 0/0 new triples (1002) -- INFO - ----- propagate-individual-1: 1/1 new triples (1003) -- DEBUG - ----- propagate-individual-2: 0/0 new triples (1003) -- DEBUG - ----- reclassify-deprecated-net: 0/0 new triples (1003) -- DEBUG - --- Serializing graph to SolarSystemSample_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-2/SolarSystemSample_transduction.ttl -- DEBUG - ----- base: http://SolarSystemSample/transduction -- INFO - ----- 167 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 9/9 new triples (1012) -- INFO - ----- compute-uri-for-owl-declaration-2: 1/1 new triples (1013) -- DEBUG - ----- compute-uri-for-owl-declaration-3: 0/0 new triples (1013) -- INFO - ----- compute-uri-for-owl-declaration-4: 4/4 new triples (1017) -- INFO - ----- compute-uri-for-owl-declaration-5: 4/4 new triples (1021) -- INFO - ----- generate-atom-class: 27/27 new triples (1048) -- INFO - ----- classify-atom-class-1: 3/3 new triples (1051) -- INFO - ----- classify-atom-class-2: 6/6 new triples (1057) -- INFO - ----- generate-individual: 3/3 new triples (1060) -- INFO - ----- classify-individual: 1/1 new triples (1061) -- INFO - ----- generate-atom-property-1: 16/16 new triples (1077) -- INFO - ----- generate-atom-property-12: 12/16 new triples (1089) -- DEBUG - ----- generate-inverse-relation: 0/0 new triples (1089) -- DEBUG - ----- generate-composite-class: 0/0 new triples (1089) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triples (1089) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triples (1089) -- DEBUG - ----- add-restriction-to-class-3: 0/0 new triples (1089) -- DEBUG - ----- add-restriction-to-class-4: 0/0 new triples (1089) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triples (1089) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triples (1089) -- DEBUG - ----- generate-composite-property: 0/0 new triples (1089) -- DEBUG - --- Serializing graph to SolarSystemSample_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-2/SolarSystemSample_generation.ttl -- DEBUG - ----- base: http://SolarSystemSample/generation -- INFO - ----- 86 triples extracted during generation step -- INFO - -- Result: file containing only the factoids -- DEBUG - --- Making factoid graph with the last step result -- DEBUG - ----- Number of factoids: 90 -- DEBUG - ----- Graph base: http://SolarSystemSample/factoid -- DEBUG - --- Serializing graph to factoid file (./output/SolarSystemSample-20230111/SolarSystemSample-2/SolarSystemSample_factoid.ttl) -- INFO - - *** Execution Time *** ------ Function: apply (lib.tenet_extraction) ------ Total Time: 0:00:08.434591 ------ Process Time: 0:00:08.393687 - *** - *** -- INFO - *** sentence 3 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (302) -- DEBUG - -------- Semantic Net Definition (509) -- DEBUG - -------- Config Parameter Definition (543) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (573) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- ./input/amrDocuments/samples/solar-system/SSC-05-01.stog.amr.ttl (623) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: ./output/SolarSystemSample-20230111/SolarSystemSample-3/SolarSystemSample.ttl -- INFO - ----- Sentence (id): SSC-05-01 -- INFO - ----- Sentence (text): The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter. -- DEBUG - --- Ending Structure Preparation -- DEBUG - ----- Total Execution Time = 0:00:00.181505 -- INFO - -- Loading Extraction Scheme (amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_ctr/*) -- DEBUG - ----- Total rule number: 94 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triples (623) -- INFO - --- Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (628) -- DEBUG - ----- reclassify-concept-2: 0/0 new triples (628) -- INFO - ----- reclassify-concept-3: 12/12 new triples (640) -- INFO - ----- reclassify-concept-4: 20/20 new triples (660) -- INFO - ----- reclassify-concept-5: 4/4 new triples (664) -- INFO - ----- reify-roles-as-concept: 5/5 new triples (669) -- INFO - ----- reclassify-existing-variable: 49/49 new triples (718) -- INFO - ----- add-new-variable-for-reified-concept: 4/4 new triples (722) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 36/36 new triples (758) -- INFO - ----- add-amr-leaf-for-reified-concept: 4/4 new triples (762) -- INFO - ----- add-amr-edge-for-core-relation: 30/30 new triples (792) -- INFO - ----- add-amr-edge-for-reified-concept: 6/6 new triples (798) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (803) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triples (803) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triples (803) -- INFO - ----- update-amr-edge-role-1: 13/13 new triples (816) -- INFO - ----- add-amr-root: 5/5 new triples (821) -- DEBUG - --- Serializing graph to SolarSystemSample_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-3/SolarSystemSample_preprocessing.ttl -- DEBUG - ----- base: http://SolarSystemSample/preprocessing -- INFO - ----- 198 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 48/48 new triples (869) -- DEBUG - ----- (refinement) refine-cover-node-1: 8 new triples (877) -- DEBUG - ----- (refinement) refine-cover-node-2: 8 new triples (885) -- INFO - ----- create-individual-net-1: 7/7 new triples (892) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (893) -- INFO - ----- create-atom-property-net-1: 62/62 new triples (955) -- DEBUG - ----- (refinement) refine-cover-node-1: 4 new triples (959) -- INFO - ----- create-value-net: 8/8 new triples (967) -- INFO - ----- create-phenomena-net-1: 11/11 new triples (978) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (979) -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 5/63 new triples (984) -- DEBUG - ----- create-individual-net-1: 0/9 new triples (984) -- DEBUG - ----- create-atom-property-net-1: 0/66 new triples (984) -- DEBUG - ----- create-value-net: 0/8 new triples (984) -- DEBUG - ----- create-phenomena-net-1: 0/11 new triples (984) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (984) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (984) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (984) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (984) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (984) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (984) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (984) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (984) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (984) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (984) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (984) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (984) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (984) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (984) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- INFO - ----- create-composite-class-net-from-property-1: 30/30 new triples (1014) -- DEBUG - ----- (refinement) refine-cover-node-1: 6 new triples (1020) -- DEBUG - ----- (refinement) refine-cover-node-2: 2 new triples (1022) -- INFO - ----- create-composite-class-net-from-property-2: 15/15 new triples (1037) -- DEBUG - ----- (refinement) refine-cover-node-1: 3 new triples (1040) -- DEBUG - ----- (refinement) refine-cover-node-2: 1 new triples (1041) -- INFO - ----- create-composite-class-net-from-property-3: 11/14 new triples (1052) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1052) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1052) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1052) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1052) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1052) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (1052) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (1052) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (1052) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (1052) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (1052) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (1052) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (1052) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (1052) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (1052) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (1052) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (1052) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (1052) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1052) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1052) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- INFO - ----- create-composite-class-net-from-property-1: 19/49 new triples (1071) -- DEBUG - ----- (refinement) refine-cover-node-1: 5 new triples (1076) -- DEBUG - ----- (refinement) refine-cover-node-2: 1 new triples (1077) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/15 new triples (1077) -- INFO - ----- create-composite-class-net-from-property-3: 3/4 new triples (1080) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1080) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1080) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1080) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1080) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1080) -- INFO - --- Sequence: restriction-adding-sequence -- DEBUG - ----- add-restriction-to-class-net-from-property-1: 0/0 new triples (1080) -- INFO - --- Sequence: classification-sequence -- INFO - ----- classify-net-from-core-1: 5/5 new triples (1085) -- INFO - ----- classify-net-from-core-2: 3/3 new triples (1088) -- INFO - ----- classify-net-from-core-3: 9/10 new triples (1097) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (1098) -- DEBUG - ----- classify-net-from-part: 0/0 new triples (1098) -- DEBUG - ----- classify-net-from-domain: 0/0 new triples (1098) -- DEBUG - ----- classify-net-from-degree-phenomena-1: 0/0 new triples (1098) -- DEBUG - ----- classify-net-from-degree-phenomena-2: 0/0 new triples (1098) -- DEBUG - ----- classify-net-from-degree-phenomena-3: 0/0 new triples (1098) -- INFO - ----- propagate-individual-1: 3/3 new triples (1101) -- DEBUG - ----- propagate-individual-2: 0/0 new triples (1101) -- INFO - ----- reclassify-deprecated-net: 1/1 new triples (1102) -- DEBUG - --- Serializing graph to SolarSystemSample_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-3/SolarSystemSample_transduction.ttl -- DEBUG - ----- base: http://SolarSystemSample/transduction -- INFO - ----- 281 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 11/11 new triples (1113) -- INFO - ----- compute-uri-for-owl-declaration-2: 2/2 new triples (1115) -- INFO - ----- compute-uri-for-owl-declaration-3: 1/1 new triples (1116) -- INFO - ----- compute-uri-for-owl-declaration-4: 4/4 new triples (1120) -- INFO - ----- compute-uri-for-owl-declaration-5: 4/4 new triples (1124) -- INFO - ----- generate-atom-class: 15/15 new triples (1139) -- INFO - ----- classify-atom-class-1: 3/3 new triples (1142) -- INFO - ----- classify-atom-class-2: 2/2 new triples (1144) -- INFO - ----- generate-individual: 6/6 new triples (1150) -- INFO - ----- classify-individual: 2/2 new triples (1152) -- INFO - ----- generate-atom-property-1: 16/16 new triples (1168) -- INFO - ----- generate-atom-property-12: 12/16 new triples (1180) -- DEBUG - ----- generate-inverse-relation: 0/0 new triples (1180) -- INFO - ----- generate-composite-class: 16/16 new triples (1196) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triples (1196) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triples (1196) -- INFO - ----- add-restriction-to-class-3: 12/15 new triples (1208) -- INFO - ----- add-restriction-to-class-4: 4/5 new triples (1212) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triples (1212) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triples (1212) -- DEBUG - ----- generate-composite-property: 0/0 new triples (1212) -- DEBUG - --- Serializing graph to SolarSystemSample_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-3/SolarSystemSample_generation.ttl -- DEBUG - ----- base: http://SolarSystemSample/generation -- INFO - ----- 110 triples extracted during generation step -- INFO - -- Result: file containing only the factoids -- DEBUG - --- Making factoid graph with the last step result -- DEBUG - ----- Number of factoids: 118 -- DEBUG - ----- Graph base: http://SolarSystemSample/factoid -- DEBUG - --- Serializing graph to factoid file (./output/SolarSystemSample-20230111/SolarSystemSample-3/SolarSystemSample_factoid.ttl) -- INFO - - *** Execution Time *** ------ Function: apply (lib.tenet_extraction) ------ Total Time: 0:00:10.047374 ------ Process Time: 0:00:09.991082 - *** - *** -- INFO - *** sentence 4 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (302) -- DEBUG - -------- Semantic Net Definition (509) -- DEBUG - -------- Config Parameter Definition (543) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (573) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- ./input/amrDocuments/samples/solar-system/SSC-09-01.stog.amr.ttl (621) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: ./output/SolarSystemSample-20230111/SolarSystemSample-4/SolarSystemSample.ttl -- INFO - ----- Sentence (id): SSC-09-01 -- INFO - ----- Sentence (text): All eight planets have almost circular orbits that lie within a nearly flat disc called the ecliptic. -- DEBUG - --- Ending Structure Preparation -- DEBUG - ----- Total Execution Time = 0:00:00.172955 -- INFO - -- Loading Extraction Scheme (amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_ctr/*) -- DEBUG - ----- Total rule number: 94 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triples (621) -- INFO - --- Sequence: amr-reification-sequence -- DEBUG - ----- reclassify-concept-1: 0/0 new triples (621) -- INFO - ----- reclassify-concept-2: 8/8 new triples (629) -- INFO - ----- reclassify-concept-3: 16/16 new triples (645) -- INFO - ----- reclassify-concept-4: 12/12 new triples (657) -- INFO - ----- reclassify-concept-5: 8/8 new triples (665) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triples (665) -- INFO - ----- reclassify-existing-variable: 45/45 new triples (710) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triples (710) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 33/33 new triples (743) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triples (743) -- INFO - ----- add-amr-edge-for-core-relation: 30/30 new triples (773) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triples (773) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (778) -- INFO - ----- add-value-for-quant-relation: 5/5 new triples (783) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triples (783) -- INFO - ----- update-amr-edge-role-1: 11/11 new triples (794) -- INFO - ----- add-amr-root: 5/5 new triples (799) -- DEBUG - --- Serializing graph to SolarSystemSample_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-4/SolarSystemSample_preprocessing.ttl -- DEBUG - ----- base: http://SolarSystemSample/preprocessing -- INFO - ----- 178 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 30/30 new triples (829) -- DEBUG - ----- (refinement) refine-cover-node-1: 5 new triples (834) -- DEBUG - ----- (refinement) refine-cover-node-2: 5 new triples (839) -- INFO - ----- create-individual-net-1: 7/7 new triples (846) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (847) -- INFO - ----- create-atom-property-net-1: 85/85 new triples (932) -- DEBUG - ----- (refinement) refine-cover-node-1: 6 new triples (938) -- INFO - ----- create-value-net: 15/15 new triples (953) -- DEBUG - ----- create-phenomena-net-1: 0/0 new triples (953) -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 1/42 new triples (954) -- DEBUG - ----- create-individual-net-1: 0/9 new triples (954) -- INFO - ----- create-atom-property-net-1: 1/86 new triples (955) -- DEBUG - ----- create-value-net: 0/15 new triples (955) -- DEBUG - ----- create-phenomena-net-1: 0/0 new triples (955) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (955) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (955) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (955) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (955) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (955) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (955) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (955) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (955) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (955) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (955) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (955) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (955) -- INFO - --- Sequence: composite-property-extraction-sequence -- INFO - ----- create-composite-class-net-from-property-1: 10/12 new triples (965) -- DEBUG - ----- (refinement) refine-cover-node-1: 2 new triples (967) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (967) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (967) -- INFO - ----- create-composite-class-net-from-property-2: 15/15 new triples (982) -- DEBUG - ----- (refinement) refine-cover-node-1: 3 new triples (985) -- DEBUG - ----- (refinement) refine-cover-node-2: 1 new triples (986) -- INFO - ----- create-composite-class-net-from-property-3: 6/8 new triples (992) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (992) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (992) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (992) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (992) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (992) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (992) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (992) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (992) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (992) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (992) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (992) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (992) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (992) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (992) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (992) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (992) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (992) -- INFO - --- Sequence: composite-property-extraction-sequence -- INFO - ----- create-composite-class-net-from-property-1: 13/26 new triples (1005) -- DEBUG - ----- (refinement) refine-cover-node-1: 2 new triples (1007) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1007) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1007) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/15 new triples (1007) -- DEBUG - ----- create-composite-class-net-from-property-3: 0/0 new triples (1007) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1007) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1007) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1007) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1007) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1007) -- INFO - --- Sequence: restriction-adding-sequence -- DEBUG - ----- add-restriction-to-class-net-from-property-1: 0/0 new triples (1007) -- INFO - --- Sequence: classification-sequence -- INFO - ----- classify-net-from-core-1: 1/1 new triples (1008) -- INFO - ----- classify-net-from-core-2: 2/2 new triples (1010) -- INFO - ----- classify-net-from-core-3: 33/35 new triples (1043) -- DEBUG - ----- (refinement) refine-cover-node-1: 3 new triples (1046) -- DEBUG - ----- classify-net-from-part: 0/0 new triples (1046) -- DEBUG - ----- classify-net-from-domain: 0/0 new triples (1046) -- DEBUG - ----- classify-net-from-degree-phenomena-1: 0/0 new triples (1046) -- DEBUG - ----- classify-net-from-degree-phenomena-2: 0/0 new triples (1046) -- DEBUG - ----- classify-net-from-degree-phenomena-3: 0/0 new triples (1046) -- INFO - ----- propagate-individual-1: 6/6 new triples (1052) -- DEBUG - ----- propagate-individual-2: 0/0 new triples (1052) -- INFO - ----- reclassify-deprecated-net: 3/3 new triples (1055) -- DEBUG - --- Serializing graph to SolarSystemSample_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-4/SolarSystemSample_transduction.ttl -- DEBUG - ----- base: http://SolarSystemSample/transduction -- INFO - ----- 256 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 3/3 new triples (1058) -- INFO - ----- compute-uri-for-owl-declaration-2: 4/4 new triples (1062) -- INFO - ----- compute-uri-for-owl-declaration-3: 3/3 new triples (1065) -- INFO - ----- compute-uri-for-owl-declaration-4: 8/8 new triples (1073) -- INFO - ----- compute-uri-for-owl-declaration-5: 6/6 new triples (1079) -- INFO - ----- generate-atom-class: 9/9 new triples (1088) -- INFO - ----- classify-atom-class-1: 1/1 new triples (1089) -- INFO - ----- classify-atom-class-2: 2/2 new triples (1091) -- INFO - ----- generate-individual: 12/12 new triples (1103) -- DEBUG - ----- classify-individual: 0/0 new triples (1103) -- INFO - ----- generate-atom-property-1: 24/24 new triples (1127) -- INFO - ----- generate-atom-property-12: 16/24 new triples (1143) -- DEBUG - ----- generate-inverse-relation: 0/0 new triples (1143) -- DEBUG - ----- generate-composite-class: 0/0 new triples (1143) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triples (1143) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triples (1143) -- DEBUG - ----- add-restriction-to-class-3: 0/0 new triples (1143) -- DEBUG - ----- add-restriction-to-class-4: 0/0 new triples (1143) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triples (1143) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triples (1143) -- INFO - ----- generate-composite-property: 8/8 new triples (1151) -- DEBUG - --- Serializing graph to SolarSystemSample_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-4/SolarSystemSample_generation.ttl -- DEBUG - ----- base: http://SolarSystemSample/generation -- INFO - ----- 96 triples extracted during generation step -- INFO - -- Result: file containing only the factoids -- DEBUG - --- Making factoid graph with the last step result -- DEBUG - ----- Number of factoids: 104 -- DEBUG - ----- Graph base: http://SolarSystemSample/factoid -- DEBUG - --- Serializing graph to factoid file (./output/SolarSystemSample-20230111/SolarSystemSample-4/SolarSystemSample_factoid.ttl) -- INFO - - *** Execution Time *** ------ Function: apply (lib.tenet_extraction) ------ Total Time: 0:00:10.226591 ------ Process Time: 0:00:10.145853 - *** - *** -- INFO - *** sentence 5 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (302) -- DEBUG - -------- Semantic Net Definition (509) -- DEBUG - -------- Config Parameter Definition (543) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (573) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- ./input/amrDocuments/samples/solar-system/SSC-08-01.stog.amr.ttl (697) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: ./output/SolarSystemSample-20230111/SolarSystemSample-5/SolarSystemSample.ttl -- INFO - ----- Sentence (id): SSC-08-01 -- INFO - ----- Sentence (text): The two largest planets, Jupiter and Saturn, are gas giants, being composed mainly of hydrogen and helium; the two outermost planets, Uranus and Neptune, are ice giants, being composed mostly of substances with relatively high melting points compared with hydrogen and helium, called volatiles, such as water, ammonia and methane. -- DEBUG - --- Ending Structure Preparation -- DEBUG - ----- Total Execution Time = 0:00:00.185744 -- INFO - -- Loading Extraction Scheme (amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_ctr/*) -- DEBUG - ----- Total rule number: 94 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triples (697) -- INFO - --- Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 15/15 new triples (712) -- INFO - ----- reclassify-concept-2: 8/8 new triples (720) -- INFO - ----- reclassify-concept-3: 20/20 new triples (740) -- INFO - ----- reclassify-concept-4: 52/52 new triples (792) -- INFO - ----- reclassify-concept-5: 4/4 new triples (796) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triples (796) -- INFO - ----- reclassify-existing-variable: 152/152 new triples (948) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triples (948) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 111/111 new triples (1059) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triples (1059) -- INFO - ----- add-amr-edge-for-core-relation: 108/108 new triples (1167) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triples (1167) -- INFO - ----- add-amr-edge-for-name-relation: 20/20 new triples (1187) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triples (1187) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triples (1187) -- INFO - ----- update-amr-edge-role-1: 39/39 new triples (1226) -- INFO - ----- add-amr-root: 5/5 new triples (1231) -- DEBUG - --- Serializing graph to SolarSystemSample_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-5/SolarSystemSample_preprocessing.ttl -- DEBUG - ----- base: http://SolarSystemSample/preprocessing -- INFO - ----- 534 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 120/120 new triples (1351) -- DEBUG - ----- (refinement) refine-cover-node-1: 20 new triples (1371) -- DEBUG - ----- (refinement) refine-cover-node-2: 20 new triples (1391) -- INFO - ----- create-individual-net-1: 28/28 new triples (1419) -- DEBUG - ----- (refinement) refine-cover-node-1: 4 new triples (1423) -- INFO - ----- create-atom-property-net-1: 118/118 new triples (1541) -- DEBUG - ----- (refinement) refine-cover-node-1: 9 new triples (1550) -- INFO - ----- create-value-net: 29/29 new triples (1579) -- INFO - ----- create-phenomena-net-1: 88/90 new triples (1667) -- DEBUG - ----- (refinement) refine-cover-node-1: 8 new triples (1675) -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 2/152 new triples (1677) -- DEBUG - ----- create-individual-net-1: 0/34 new triples (1677) -- INFO - ----- create-atom-property-net-1: 2/127 new triples (1679) -- DEBUG - ----- create-value-net: 0/29 new triples (1679) -- INFO - ----- create-phenomena-net-1: 3/93 new triples (1682) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (1682) -- INFO - ----- and-conjunction-phenomena-application-1: 36/41 new triples (1718) -- DEBUG - ----- (refinement) refine-cover-node-1: 2 new triples (1720) -- INFO - ----- and-conjunction-phenomena-application-2: 2/2 new triples (1722) -- INFO - ----- and-conjunction-phenomena-application-3: 23/23 new triples (1745) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (1745) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (1745) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (1745) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (1745) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (1745) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (1745) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (1745) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (1745) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1745) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-property-3: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1745) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1745) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (1745) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/41 new triples (1745) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/2 new triples (1745) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/23 new triples (1745) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (1745) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (1745) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (1745) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (1745) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (1745) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (1745) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (1745) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (1745) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1745) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-property-3: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1745) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1745) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1745) -- INFO - --- Sequence: restriction-adding-sequence -- DEBUG - ----- add-restriction-to-class-net-from-property-1: 0/0 new triples (1745) -- INFO - --- Sequence: classification-sequence -- DEBUG - ----- classify-net-from-core-1: 0/0 new triples (1745) -- INFO - ----- classify-net-from-core-2: 3/3 new triples (1748) -- INFO - ----- classify-net-from-core-3: 36/40 new triples (1784) -- DEBUG - ----- (refinement) refine-cover-node-1: 4 new triples (1788) -- DEBUG - ----- classify-net-from-part: 0/0 new triples (1788) -- DEBUG - ----- classify-net-from-domain: 0/0 new triples (1788) -- DEBUG - ----- classify-net-from-degree-phenomena-1: 0/0 new triples (1788) -- DEBUG - ----- classify-net-from-degree-phenomena-2: 0/0 new triples (1788) -- DEBUG - ----- classify-net-from-degree-phenomena-3: 0/0 new triples (1788) -- INFO - ----- propagate-individual-1: 8/8 new triples (1796) -- DEBUG - ----- propagate-individual-2: 0/0 new triples (1796) -- INFO - ----- reclassify-deprecated-net: 4/4 new triples (1800) -- DEBUG - --- Serializing graph to SolarSystemSample_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-5/SolarSystemSample_transduction.ttl -- DEBUG - ----- base: http://SolarSystemSample/transduction -- INFO - ----- 569 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 16/16 new triples (1816) -- INFO - ----- compute-uri-for-owl-declaration-2: 8/8 new triples (1824) -- INFO - ----- compute-uri-for-owl-declaration-3: 4/4 new triples (1828) -- INFO - ----- compute-uri-for-owl-declaration-4: 9/9 new triples (1837) -- INFO - ----- compute-uri-for-owl-declaration-5: 9/9 new triples (1846) -- INFO - ----- generate-atom-class: 33/33 new triples (1879) -- INFO - ----- classify-atom-class-1: 2/2 new triples (1881) -- INFO - ----- classify-atom-class-2: 9/9 new triples (1890) -- INFO - ----- generate-individual: 22/24 new triples (1912) -- INFO - ----- classify-individual: 4/4 new triples (1916) -- INFO - ----- generate-atom-property-1: 28/28 new triples (1944) -- INFO - ----- generate-atom-property-12: 20/28 new triples (1964) -- DEBUG - ----- generate-inverse-relation: 0/0 new triples (1964) -- DEBUG - ----- generate-composite-class: 0/0 new triples (1964) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triples (1964) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triples (1964) -- DEBUG - ----- add-restriction-to-class-3: 0/0 new triples (1964) -- DEBUG - ----- add-restriction-to-class-4: 0/0 new triples (1964) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triples (1964) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triples (1964) -- DEBUG - ----- generate-composite-property: 0/0 new triples (1964) -- DEBUG - --- Serializing graph to SolarSystemSample_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-5/SolarSystemSample_generation.ttl -- DEBUG - ----- base: http://SolarSystemSample/generation -- INFO - ----- 164 triples extracted during generation step -- INFO - -- Result: file containing only the factoids -- DEBUG - --- Making factoid graph with the last step result -- DEBUG - ----- Number of factoids: 174 -- DEBUG - ----- Graph base: http://SolarSystemSample/factoid -- DEBUG - --- Serializing graph to factoid file (./output/SolarSystemSample-20230111/SolarSystemSample-5/SolarSystemSample_factoid.ttl) -- INFO - - *** Execution Time *** ------ Function: apply (lib.tenet_extraction) ------ Total Time: 0:00:41.059277 ------ Process Time: 0:00:40.956944 - *** - *** -- INFO - *** sentence 6 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (302) -- DEBUG - -------- Semantic Net Definition (509) -- DEBUG - -------- Config Parameter Definition (543) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (573) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- ./input/amrDocuments/samples/solar-system/SSC-07-01.stog.amr.ttl (615) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: ./output/SolarSystemSample-20230111/SolarSystemSample-6/SolarSystemSample.ttl -- INFO - ----- Sentence (id): SSC-07-01 -- INFO - ----- Sentence (text): The four outer system planets are giant planets, being substantially more massive than the terrestrials. -- DEBUG - --- Ending Structure Preparation -- DEBUG - ----- Total Execution Time = 0:00:00.162107 -- INFO - -- Loading Extraction Scheme (amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_ctr/*) -- DEBUG - ----- Total rule number: 94 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triples (615) -- INFO - --- Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (620) -- INFO - ----- reclassify-concept-2: 4/4 new triples (624) -- DEBUG - ----- reclassify-concept-3: 0/0 new triples (624) -- INFO - ----- reclassify-concept-4: 24/24 new triples (648) -- INFO - ----- reclassify-concept-5: 4/4 new triples (652) -- INFO - ----- reify-roles-as-concept: 5/5 new triples (657) -- INFO - ----- reclassify-existing-variable: 40/40 new triples (697) -- INFO - ----- add-new-variable-for-reified-concept: 4/4 new triples (701) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 30/30 new triples (731) -- INFO - ----- add-amr-leaf-for-reified-concept: 4/4 new triples (735) -- INFO - ----- add-amr-edge-for-core-relation: 24/24 new triples (759) -- INFO - ----- add-amr-edge-for-reified-concept: 6/6 new triples (765) -- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triples (765) -- INFO - ----- add-value-for-quant-relation: 5/5 new triples (770) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triples (770) -- INFO - ----- update-amr-edge-role-1: 10/10 new triples (780) -- INFO - ----- add-amr-root: 5/5 new triples (785) -- DEBUG - --- Serializing graph to SolarSystemSample_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-6/SolarSystemSample_preprocessing.ttl -- DEBUG - ----- base: http://SolarSystemSample/preprocessing -- INFO - ----- 170 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 48/48 new triples (833) -- DEBUG - ----- (refinement) refine-cover-node-1: 8 new triples (841) -- DEBUG - ----- (refinement) refine-cover-node-2: 8 new triples (849) -- DEBUG - ----- create-individual-net-1: 0/0 new triples (849) -- INFO - ----- create-atom-property-net-1: 28/28 new triples (877) -- DEBUG - ----- (refinement) refine-cover-node-1: 2 new triples (879) -- INFO - ----- create-value-net: 7/7 new triples (886) -- INFO - ----- create-phenomena-net-1: 14/15 new triples (900) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (901) -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 5/62 new triples (906) -- DEBUG - ----- create-individual-net-1: 0/0 new triples (906) -- DEBUG - ----- create-atom-property-net-1: 0/30 new triples (906) -- DEBUG - ----- create-value-net: 0/7 new triples (906) -- DEBUG - ----- create-phenomena-net-1: 0/15 new triples (906) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (906) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (906) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (906) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (906) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (906) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (906) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (906) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (906) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (906) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (906) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (906) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (906) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (906) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (906) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- INFO - ----- create-composite-class-net-from-property-1: 15/15 new triples (921) -- DEBUG - ----- (refinement) refine-cover-node-1: 3 new triples (924) -- DEBUG - ----- (refinement) refine-cover-node-2: 1 new triples (925) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (925) -- INFO - ----- create-composite-class-net-from-property-3: 4/6 new triples (929) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (929) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (929) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (929) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (929) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (929) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (929) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (929) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (929) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (929) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (929) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (929) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (929) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (929) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (929) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (929) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (929) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (929) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (929) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (929) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- DEBUG - ----- create-composite-class-net-from-property-1: 0/15 new triples (929) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (929) -- DEBUG - ----- create-composite-class-net-from-property-3: 0/0 new triples (929) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (929) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (929) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (929) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (929) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (929) -- INFO - --- Sequence: restriction-adding-sequence -- DEBUG - ----- add-restriction-to-class-net-from-property-1: 0/0 new triples (929) -- INFO - --- Sequence: classification-sequence -- INFO - ----- classify-net-from-core-1: 2/2 new triples (931) -- INFO - ----- classify-net-from-core-2: 2/2 new triples (933) -- INFO - ----- classify-net-from-core-3: 8/9 new triples (941) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (942) -- DEBUG - ----- classify-net-from-part: 0/0 new triples (942) -- INFO - ----- classify-net-from-domain: 1/1 new triples (943) -- DEBUG - ----- classify-net-from-degree-phenomena-1: 0/0 new triples (943) -- DEBUG - ----- classify-net-from-degree-phenomena-2: 0/0 new triples (943) -- DEBUG - ----- classify-net-from-degree-phenomena-3: 0/0 new triples (943) -- INFO - ----- propagate-individual-1: 1/1 new triples (944) -- DEBUG - ----- propagate-individual-2: 0/0 new triples (944) -- INFO - ----- reclassify-deprecated-net: 1/1 new triples (945) -- DEBUG - --- Serializing graph to SolarSystemSample_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-6/SolarSystemSample_transduction.ttl -- DEBUG - ----- base: http://SolarSystemSample/transduction -- INFO - ----- 160 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 8/8 new triples (953) -- INFO - ----- compute-uri-for-owl-declaration-2: 1/1 new triples (954) -- INFO - ----- compute-uri-for-owl-declaration-3: 1/1 new triples (955) -- INFO - ----- compute-uri-for-owl-declaration-4: 2/2 new triples (957) -- INFO - ----- compute-uri-for-owl-declaration-5: 2/2 new triples (959) -- INFO - ----- generate-atom-class: 18/18 new triples (977) -- INFO - ----- classify-atom-class-1: 2/2 new triples (979) -- INFO - ----- classify-atom-class-2: 4/4 new triples (983) -- INFO - ----- generate-individual: 3/3 new triples (986) -- DEBUG - ----- classify-individual: 0/0 new triples (986) -- INFO - ----- generate-atom-property-1: 8/8 new triples (994) -- DEBUG - ----- generate-atom-property-12: 0/8 new triples (994) -- DEBUG - ----- generate-inverse-relation: 0/0 new triples (994) -- INFO - ----- generate-composite-class: 4/4 new triples (998) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triples (998) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triples (998) -- INFO - ----- add-restriction-to-class-3: 4/5 new triples (1002) -- DEBUG - ----- add-restriction-to-class-4: 0/0 new triples (1002) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triples (1002) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triples (1002) -- DEBUG - ----- generate-composite-property: 0/0 new triples (1002) -- DEBUG - --- Serializing graph to SolarSystemSample_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-6/SolarSystemSample_generation.ttl -- DEBUG - ----- base: http://SolarSystemSample/generation -- INFO - ----- 57 triples extracted during generation step -- INFO - -- Result: file containing only the factoids -- DEBUG - --- Making factoid graph with the last step result -- DEBUG - ----- Number of factoids: 66 -- DEBUG - ----- Graph base: http://SolarSystemSample/factoid -- DEBUG - --- Serializing graph to factoid file (./output/SolarSystemSample-20230111/SolarSystemSample-6/SolarSystemSample_factoid.ttl) -- INFO - - *** Execution Time *** ------ Function: apply (lib.tenet_extraction) ------ Total Time: 0:00:08.346226 ------ Process Time: 0:00:08.320049 - *** - *** -- INFO - *** sentence 7 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (302) -- DEBUG - -------- Semantic Net Definition (509) -- DEBUG - -------- Config Parameter Definition (543) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (573) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- ./input/amrDocuments/samples/solar-system/SSC-01-01.stog.amr.ttl (621) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: ./output/SolarSystemSample-20230111/SolarSystemSample-7/SolarSystemSample.ttl +- DEBUG - ----- Work graph file: ./output/SolarSystemDev1-20230111/SolarSystemDev1-1/SolarSystemDev1.ttl - INFO - ----- Sentence (id): SSC-01-01 - INFO - ----- Sentence (text): The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly. - DEBUG - --- Ending Structure Preparation -- DEBUG - ----- Total Execution Time = 0:00:00.165905 +- DEBUG - ----- Total Execution Time = 0:00:00.317683 - INFO - -- Loading Extraction Scheme (amr_scheme_1) - DEBUG - ----- Step number: 3 - INFO - -- Loading Extraction Rules (amr_ctr/*) - DEBUG - ----- Total rule number: 94 - INFO - -- Applying extraction step: preprocessing - INFO - --- Sequence: amrld-correcting-sequence -- INFO - ----- fix-amr-bug-about-system-solar-planet: 5/5 new triples (626) +- INFO - ----- fix-amr-bug-about-system-solar-planet: 5/5 new triples (626, 0:00:00.028359) - INFO - --- Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (636) -- DEBUG - ----- reclassify-concept-2: 0/0 new triples (636) -- INFO - ----- reclassify-concept-3: 12/12 new triples (648) -- INFO - ----- reclassify-concept-4: 16/16 new triples (664) -- INFO - ----- reclassify-concept-5: 2/4 new triples (666) -- INFO - ----- reify-roles-as-concept: 10/10 new triples (676) -- INFO - ----- reclassify-existing-variable: 45/45 new triples (721) -- INFO - ----- add-new-variable-for-reified-concept: 8/8 new triples (729) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 33/33 new triples (762) -- INFO - ----- add-amr-leaf-for-reified-concept: 8/8 new triples (770) -- INFO - ----- add-amr-edge-for-core-relation: 27/27 new triples (797) -- INFO - ----- add-amr-edge-for-reified-concept: 12/12 new triples (809) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (814) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triples (814) -- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (819) -- INFO - ----- update-amr-edge-role-1: 15/15 new triples (834) -- INFO - ----- add-amr-root: 5/5 new triples (839) -- DEBUG - --- Serializing graph to SolarSystemSample_preprocessing +- INFO - ----- reclassify-concept-1: 10/10 new triples (636, 0:00:00.133213) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (636, 0:00:00.069102) +- INFO - ----- reclassify-concept-3: 12/12 new triples (648, 0:00:00.044994) +- INFO - ----- reclassify-concept-4: 16/16 new triples (664, 0:00:00.060930) +- INFO - ----- reclassify-concept-5: 2/4 new triples (666, 0:00:00.052436) +- INFO - ----- reify-roles-as-concept: 10/10 new triples (676, 0:00:00.050924) +- INFO - ----- reclassify-existing-variable: 45/45 new triples (721, 0:00:00.039795) +- INFO - ----- add-new-variable-for-reified-concept: 8/8 new triples (729, 0:00:00.056719) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 33/33 new triples (762, 0:00:00.052751) +- INFO - ----- add-amr-leaf-for-reified-concept: 8/8 new triples (770, 0:00:00.032323) +- INFO - ----- add-amr-edge-for-core-relation: 27/27 new triples (797, 0:00:00.146441) +- INFO - ----- add-amr-edge-for-reified-concept: 12/12 new triples (809, 0:00:00.125951) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (814, 0:00:00.066882) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (814, 0:00:00.074030) +- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (819, 0:00:00.116360) +- INFO - ----- update-amr-edge-role-1: 15/15 new triples (834, 0:00:00.083778) +- INFO - ----- add-amr-root: 5/5 new triples (839, 0:00:00.024325) +- DEBUG - --- Serializing graph to SolarSystemDev1_preprocessing - DEBUG - ----- step: preprocessing -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-7/SolarSystemSample_preprocessing.ttl -- DEBUG - ----- base: http://SolarSystemSample/preprocessing +- DEBUG - ----- id: SolarSystemDev1 +- DEBUG - ----- work_file: ./output/SolarSystemDev1-20230111/SolarSystemDev1-1/SolarSystemDev1_preprocessing.ttl +- DEBUG - ----- base: http://SolarSystemDev1/preprocessing - INFO - ----- 218 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 30/30 new triples (869) +- INFO - ----- create-atom-class-net: 30/30 new triples (869, 0:00:00.076215) - DEBUG - ----- (refinement) refine-cover-node-1: 5 new triples (874) - DEBUG - ----- (refinement) refine-cover-node-2: 5 new triples (879) -- INFO - ----- create-individual-net-1: 9/9 new triples (888) +- INFO - ----- create-individual-net-1: 9/9 new triples (888, 0:00:00.084532) - DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (889) -- INFO - ----- create-atom-property-net-1: 82/82 new triples (971) +- INFO - ----- create-atom-property-net-1: 82/82 new triples (971, 0:00:00.123913) - DEBUG - ----- (refinement) refine-cover-node-1: 6 new triples (977) -- INFO - ----- create-value-net: 15/15 new triples (992) -- INFO - ----- create-phenomena-net-1: 22/23 new triples (1014) +- INFO - ----- create-value-net: 15/15 new triples (992, 0:00:00.047007) +- INFO - ----- create-phenomena-net-1: 22/23 new triples (1014, 0:00:00.064723) - DEBUG - ----- (refinement) refine-cover-node-1: 2 new triples (1016) - INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 1/44 new triples (1017) -- DEBUG - ----- create-individual-net-1: 0/9 new triples (1017) -- INFO - ----- create-atom-property-net-1: 1/89 new triples (1018) -- DEBUG - ----- create-value-net: 0/15 new triples (1018) -- DEBUG - ----- create-phenomena-net-1: 0/23 new triples (1018) +- INFO - ----- create-atom-class-net: 1/44 new triple (1017, 0:00:00.076462) +- DEBUG - ----- create-individual-net-1: 0/9 new triple (1017, 0:00:00.071245) +- INFO - ----- create-atom-property-net-1: 1/89 new triple (1018, 0:00:00.195796) +- DEBUG - ----- create-value-net: 0/15 new triple (1018, 0:00:00.068753) +- DEBUG - ----- create-phenomena-net-1: 0/23 new triple (1018, 0:00:00.099186) - INFO - --- Sequence: phenomena-application-sequence -- INFO - ----- polarity-phenomena-application: 8/9 new triples (1026) +- INFO - ----- polarity-phenomena-application: 8/9 new triples (1026, 0:00:00.144091) - DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (1027) -- INFO - ----- and-conjunction-phenomena-application-1: 14/17 new triples (1041) +- INFO - ----- and-conjunction-phenomena-application-1: 14/17 new triples (1041, 0:00:00.805090) - DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (1042) -- INFO - ----- and-conjunction-phenomena-application-2: 1/1 new triples (1043) -- INFO - ----- and-conjunction-phenomena-application-3: 14/14 new triples (1057) -- INFO - ----- and-conjunction-phenomena-application-4: 8/8 new triples (1065) +- INFO - ----- and-conjunction-phenomena-application-2: 1/1 new triple (1043, 0:00:00.126681) +- INFO - ----- and-conjunction-phenomena-application-3: 14/14 new triples (1057, 0:00:00.152078) +- INFO - ----- and-conjunction-phenomena-application-4: 8/8 new triples (1065, 0:00:00.199830) - DEBUG - ----- (refinement) refine-cover-node-2: 1 new triples (1066) -- INFO - ----- and-conjunction-phenomena-application-5: 6/9 new triples (1072) +- INFO - ----- and-conjunction-phenomena-application-5: 6/9 new triples (1072, 0:00:00.095145) - INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (1072) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (1072) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (1072) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (1072) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (1072) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (1072) +- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triple (1072, 0:00:00.011640) +- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triple (1072, 0:00:00.009731) +- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triple (1072, 0:00:00.012412) +- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triple (1072, 0:00:00.010908) +- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triple (1072, 0:00:00.013031) +- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triple (1072, 0:00:00.008853) - INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1072) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1072) +- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triple (1072, 0:00:00.107248) +- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triple (1072, 0:00:00.285688) - INFO - --- Sequence: composite-class-extraction-sequence-1 -- INFO - ----- create-composite-class-net-from-property-1: 49/49 new triples (1121) +- INFO - ----- create-composite-class-net-from-property-1: 49/49 new triples (1121, 0:00:00.387626) - DEBUG - ----- (refinement) refine-cover-node-1: 11 new triples (1132) - DEBUG - ----- (refinement) refine-cover-node-2: 3 new triples (1135) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1135) -- INFO - ----- create-composite-class-net-from-property-3: 11/13 new triples (1146) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1146) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1146) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1146) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1146) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1146) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (1146) -- INFO - ----- and-conjunction-phenomena-application-1: 3/21 new triples (1149) -- INFO - ----- and-conjunction-phenomena-application-2: 2/2 new triples (1151) -- INFO - ----- and-conjunction-phenomena-application-3: 9/23 new triples (1160) -- INFO - ----- and-conjunction-phenomena-application-4: 16/24 new triples (1176) +- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triple (1135, 0:00:00.167286) +- INFO - ----- create-composite-class-net-from-property-3: 11/13 new triples (1146, 0:00:00.219925) +- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triple (1146, 0:00:00.097505) +- INFO - --- Sequence: composite-class-extraction-sequence-2 +- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triple (1146, 0:00:00.069164) +- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triple (1146, 0:00:00.047989) +- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triple (1146, 0:00:00.043820) +- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triple (1146, 0:00:00.059301) +- INFO - --- Sequence: phenomena-application-sequence +- DEBUG - ----- polarity-phenomena-application: 0/0 new triple (1146, 0:00:00.135969) +- INFO - ----- and-conjunction-phenomena-application-1: 3/21 new triples (1149, 0:00:02.355440) +- INFO - ----- and-conjunction-phenomena-application-2: 2/2 new triples (1151, 0:00:00.191161) +- INFO - ----- and-conjunction-phenomena-application-3: 9/23 new triples (1160, 0:00:01.032627) +- INFO - ----- and-conjunction-phenomena-application-4: 16/24 new triples (1176, 0:00:02.383159) - DEBUG - ----- (refinement) refine-cover-node-2: 2 new triples (1178) -- INFO - ----- and-conjunction-phenomena-application-5: 12/15 new triples (1190) +- INFO - ----- and-conjunction-phenomena-application-5: 12/15 new triples (1190, 0:00:00.242371) - INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (1190) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (1190) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (1190) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (1190) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (1190) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (1190) +- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triple (1190, 0:00:00.008929) +- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triple (1190, 0:00:00.009109) +- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triple (1190, 0:00:00.008695) +- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triple (1190, 0:00:00.008020) +- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triple (1190, 0:00:00.007940) +- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triple (1190, 0:00:00.007650) - INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (1190) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1190) +- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triple (1190, 0:00:00.115275) +- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triple (1190, 0:00:00.206458) - INFO - --- Sequence: composite-class-extraction-sequence-1 -- INFO - ----- create-composite-class-net-from-property-1: 38/87 new triples (1228) +- INFO - ----- create-composite-class-net-from-property-1: 38/87 new triples (1228, 0:00:01.873232) - DEBUG - ----- (refinement) refine-cover-node-1: 10 new triples (1238) - DEBUG - ----- (refinement) refine-cover-node-2: 2 new triples (1240) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1240) -- INFO - ----- create-composite-class-net-from-property-3: 6/7 new triples (1246) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1246) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1246) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1246) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1246) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1246) +- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triple (1240, 0:00:00.129604) +- INFO - ----- create-composite-class-net-from-property-3: 6/7 new triples (1246, 0:00:00.329425) +- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triple (1246, 0:00:00.099722) +- INFO - --- Sequence: composite-class-extraction-sequence-2 +- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triple (1246, 0:00:00.038982) +- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triple (1246, 0:00:00.043328) +- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triple (1246, 0:00:00.036648) +- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triple (1246, 0:00:00.047647) - INFO - --- Sequence: restriction-adding-sequence -- DEBUG - ----- add-restriction-to-class-net-from-property-1: 0/0 new triples (1246) +- DEBUG - ----- add-restriction-to-class-net-from-property-1: 0/0 new triple (1246, 0:00:00.041234) - INFO - --- Sequence: classification-sequence -- INFO - ----- classify-net-from-core-1: 11/11 new triples (1257) -- INFO - ----- classify-net-from-core-2: 1/5 new triples (1258) -- DEBUG - ----- classify-net-from-core-3: 0/0 new triples (1258) -- DEBUG - ----- classify-net-from-part: 0/0 new triples (1258) -- INFO - ----- classify-net-from-domain: 4/4 new triples (1262) -- DEBUG - ----- classify-net-from-degree-phenomena-1: 0/0 new triples (1262) -- DEBUG - ----- classify-net-from-degree-phenomena-2: 0/0 new triples (1262) -- DEBUG - ----- classify-net-from-degree-phenomena-3: 0/0 new triples (1262) -- INFO - ----- propagate-individual-1: 1/1 new triples (1263) -- INFO - ----- propagate-individual-2: 4/4 new triples (1267) -- DEBUG - ----- reclassify-deprecated-net: 0/0 new triples (1267) -- DEBUG - --- Serializing graph to SolarSystemSample_transduction +- INFO - ----- classify-net-from-core-1: 11/11 new triples (1257, 0:00:00.008558) +- INFO - ----- classify-net-from-core-2: 1/5 new triple (1258, 0:00:00.007503) +- DEBUG - ----- classify-net-from-core-3: 0/0 new triple (1258, 0:00:00.035184) +- DEBUG - ----- classify-net-from-part: 0/0 new triple (1258, 0:00:00.008168) +- INFO - ----- classify-net-from-domain: 4/4 new triples (1262, 0:00:00.007890) +- DEBUG - ----- classify-net-from-degree-phenomena-1: 0/0 new triple (1262, 0:00:00.036877) +- DEBUG - ----- classify-net-from-degree-phenomena-2: 0/0 new triple (1262, 0:00:00.034993) +- DEBUG - ----- classify-net-from-degree-phenomena-3: 0/0 new triple (1262, 0:00:00.006984) +- INFO - ----- propagate-individual-1: 1/1 new triple (1263, 0:00:00.008232) +- INFO - ----- propagate-individual-2: 4/4 new triples (1267, 0:00:00.007505) +- DEBUG - ----- reclassify-deprecated-net: 0/0 new triple (1267, 0:00:00.005337) +- DEBUG - --- Serializing graph to SolarSystemDev1_transduction - DEBUG - ----- step: transduction -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-7/SolarSystemSample_transduction.ttl -- DEBUG - ----- base: http://SolarSystemSample/transduction +- DEBUG - ----- id: SolarSystemDev1 +- DEBUG - ----- work_file: ./output/SolarSystemDev1-20230111/SolarSystemDev1-1/SolarSystemDev1_transduction.ttl +- DEBUG - ----- base: http://SolarSystemDev1/transduction - INFO - ----- 428 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 13/13 new triples (1280) -- INFO - ----- compute-uri-for-owl-declaration-2: 1/1 new triples (1281) -- DEBUG - ----- compute-uri-for-owl-declaration-3: 0/0 new triples (1281) -- INFO - ----- compute-uri-for-owl-declaration-4: 6/6 new triples (1287) -- INFO - ----- compute-uri-for-owl-declaration-5: 5/5 new triples (1292) -- INFO - ----- generate-atom-class: 12/12 new triples (1304) -- INFO - ----- classify-atom-class-1: 4/4 new triples (1308) -- DEBUG - ----- classify-atom-class-2: 0/0 new triples (1308) -- INFO - ----- generate-individual: 3/3 new triples (1311) -- INFO - ----- classify-individual: 4/4 new triples (1315) -- INFO - ----- generate-atom-property-1: 20/20 new triples (1335) -- INFO - ----- generate-atom-property-12: 12/20 new triples (1347) -- DEBUG - ----- generate-inverse-relation: 0/0 new triples (1347) -- INFO - ----- generate-composite-class: 32/32 new triples (1379) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triples (1379) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triples (1379) -- INFO - ----- add-restriction-to-class-3: 20/25 new triples (1399) -- DEBUG - ----- add-restriction-to-class-4: 0/0 new triples (1399) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triples (1399) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triples (1399) -- DEBUG - ----- generate-composite-property: 0/0 new triples (1399) -- DEBUG - --- Serializing graph to SolarSystemSample_generation +- INFO - ----- compute-uri-for-owl-declaration-1: 13/13 new triples (1280, 0:00:00.030653) +- INFO - ----- compute-uri-for-owl-declaration-2: 1/1 new triple (1281, 0:00:00.034940) +- DEBUG - ----- compute-uri-for-owl-declaration-3: 0/0 new triple (1281, 0:00:00.027746) +- INFO - ----- compute-uri-for-owl-declaration-4: 6/6 new triples (1287, 0:00:00.034885) +- INFO - ----- compute-uri-for-owl-declaration-5: 5/5 new triples (1292, 0:00:00.027653) +- INFO - ----- generate-atom-class: 12/12 new triples (1304, 0:00:00.011244) +- INFO - ----- classify-atom-class-1: 4/4 new triples (1308, 0:00:00.008555) +- DEBUG - ----- classify-atom-class-2: 0/0 new triple (1308, 0:00:00.013100) +- INFO - ----- generate-individual: 3/3 new triples (1311, 0:00:00.008385) +- INFO - ----- classify-individual: 4/4 new triples (1315, 0:00:00.013626) +- INFO - ----- generate-atom-property-1: 20/20 new triples (1335, 0:00:00.009445) +- INFO - ----- generate-atom-property-12: 12/20 new triples (1347, 0:00:00.009471) +- DEBUG - ----- generate-inverse-relation: 0/0 new triple (1347, 0:00:00.007112) +- INFO - ----- generate-composite-class: 32/32 new triples (1379, 0:00:00.010449) +- DEBUG - ----- add-restriction-to-class-1: 0/0 new triple (1379, 0:00:00.022638) +- DEBUG - ----- add-restriction-to-class-2: 0/0 new triple (1379, 0:00:00.012717) +- INFO - ----- add-restriction-to-class-3: 20/25 new triples (1399, 0:00:00.018101) +- DEBUG - ----- add-restriction-to-class-4: 0/0 new triple (1399, 0:00:00.013617) +- DEBUG - ----- add-restriction-to-class-5: 0/0 new triple (1399, 0:00:00.012813) +- DEBUG - ----- add-restriction-to-class-6: 0/0 new triple (1399, 0:00:00.011990) +- DEBUG - ----- generate-composite-property: 0/0 new triple (1399, 0:00:00.008425) +- DEBUG - --- Serializing graph to SolarSystemDev1_generation - DEBUG - ----- step: generation -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-7/SolarSystemSample_generation.ttl -- DEBUG - ----- base: http://SolarSystemSample/generation +- DEBUG - ----- id: SolarSystemDev1 +- DEBUG - ----- work_file: ./output/SolarSystemDev1-20230111/SolarSystemDev1-1/SolarSystemDev1_generation.ttl +- DEBUG - ----- base: http://SolarSystemDev1/generation - INFO - ----- 132 triples extracted during generation step - INFO - -- Result: file containing only the factoids - DEBUG - --- Making factoid graph with the last step result - DEBUG - ----- Number of factoids: 145 -- DEBUG - ----- Graph base: http://SolarSystemSample/factoid -- DEBUG - --- Serializing graph to factoid file (./output/SolarSystemSample-20230111/SolarSystemSample-7/SolarSystemSample_factoid.ttl) -- INFO - - *** Execution Time *** ------ Function: apply (lib.tenet_extraction) ------ Total Time: 0:00:18.732053 ------ Process Time: 0:00:18.651641 - *** - *** -- INFO - *** sentence 8 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (302) -- DEBUG - -------- Semantic Net Definition (509) -- DEBUG - -------- Config Parameter Definition (543) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (573) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- ./input/amrDocuments/samples/solar-system/SSC-10-01.stog.amr.ttl (606) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: ./output/SolarSystemSample-20230111/SolarSystemSample-8/SolarSystemSample.ttl -- INFO - ----- Sentence (id): SSC-10-01 -- INFO - ----- Sentence (text): The Solar System also contains smaller objects. -- DEBUG - --- Ending Structure Preparation -- DEBUG - ----- Total Execution Time = 0:00:00.120025 -- INFO - -- Loading Extraction Scheme (amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_ctr/*) -- DEBUG - ----- Total rule number: 94 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triples (606) -- INFO - --- Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (611) -- INFO - ----- reclassify-concept-2: 4/4 new triples (615) -- INFO - ----- reclassify-concept-3: 4/4 new triples (619) -- INFO - ----- reclassify-concept-4: 16/16 new triples (635) -- DEBUG - ----- reclassify-concept-5: 0/0 new triples (635) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triples (635) -- INFO - ----- reclassify-existing-variable: 29/29 new triples (664) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triples (664) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 21/21 new triples (685) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triples (685) -- INFO - ----- add-amr-edge-for-core-relation: 18/18 new triples (703) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triples (703) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (708) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triples (708) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triples (708) -- INFO - ----- update-amr-edge-role-1: 7/7 new triples (715) -- INFO - ----- add-amr-root: 5/5 new triples (720) -- DEBUG - --- Serializing graph to SolarSystemSample_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-8/SolarSystemSample_preprocessing.ttl -- DEBUG - ----- base: http://SolarSystemSample/preprocessing -- INFO - ----- 114 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 24/24 new triples (744) -- DEBUG - ----- (refinement) refine-cover-node-1: 4 new triples (748) -- DEBUG - ----- (refinement) refine-cover-node-2: 4 new triples (752) -- INFO - ----- create-individual-net-1: 7/7 new triples (759) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (760) -- INFO - ----- create-atom-property-net-1: 32/32 new triples (792) -- DEBUG - ----- (refinement) refine-cover-node-1: 2 new triples (794) -- INFO - ----- create-value-net: 8/8 new triples (802) -- INFO - ----- create-phenomena-net-1: 12/13 new triples (814) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (815) -- INFO - --- Sequence: atomic-extraction-sequence -- DEBUG - ----- create-atom-class-net: 0/33 new triples (815) -- DEBUG - ----- create-individual-net-1: 0/9 new triples (815) -- DEBUG - ----- create-atom-property-net-1: 0/34 new triples (815) -- DEBUG - ----- create-value-net: 0/8 new triples (815) -- DEBUG - ----- create-phenomena-net-1: 0/13 new triples (815) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (815) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (815) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (815) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (815) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (815) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (815) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (815) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (815) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (815) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (815) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (815) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (815) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (815) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (815) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- INFO - ----- create-composite-class-net-from-property-1: 15/15 new triples (830) -- DEBUG - ----- (refinement) refine-cover-node-1: 3 new triples (833) -- DEBUG - ----- (refinement) refine-cover-node-2: 1 new triples (834) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (834) -- INFO - ----- create-composite-class-net-from-property-3: 3/4 new triples (837) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (837) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (837) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (837) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (837) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (837) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (837) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (837) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (837) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (837) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (837) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (837) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (837) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (837) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (837) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (837) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (837) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (837) -- INFO - --- Sequence: composite-property-extraction-sequence -- DEBUG - ----- create-composite-class-net-from-property-1: 0/0 new triples (837) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (837) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- DEBUG - ----- create-composite-class-net-from-property-1: 0/15 new triples (837) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (837) -- DEBUG - ----- create-composite-class-net-from-property-3: 0/0 new triples (837) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (837) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (837) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (837) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (837) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (837) -- INFO - --- Sequence: restriction-adding-sequence -- DEBUG - ----- add-restriction-to-class-net-from-property-1: 0/0 new triples (837) -- INFO - --- Sequence: classification-sequence -- INFO - ----- classify-net-from-core-1: 2/2 new triples (839) -- INFO - ----- classify-net-from-core-2: 1/1 new triples (840) -- INFO - ----- classify-net-from-core-3: 8/9 new triples (848) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (849) -- DEBUG - ----- classify-net-from-part: 0/0 new triples (849) -- DEBUG - ----- classify-net-from-domain: 0/0 new triples (849) -- DEBUG - ----- classify-net-from-degree-phenomena-1: 0/0 new triples (849) -- DEBUG - ----- classify-net-from-degree-phenomena-2: 0/0 new triples (849) -- DEBUG - ----- classify-net-from-degree-phenomena-3: 0/0 new triples (849) -- INFO - ----- propagate-individual-1: 3/3 new triples (852) -- DEBUG - ----- propagate-individual-2: 0/0 new triples (852) -- INFO - ----- reclassify-deprecated-net: 1/1 new triples (853) -- DEBUG - --- Serializing graph to SolarSystemSample_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-8/SolarSystemSample_transduction.ttl -- DEBUG - ----- base: http://SolarSystemSample/transduction -- INFO - ----- 133 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 4/4 new triples (857) -- INFO - ----- compute-uri-for-owl-declaration-2: 2/2 new triples (859) -- INFO - ----- compute-uri-for-owl-declaration-3: 1/1 new triples (860) -- INFO - ----- compute-uri-for-owl-declaration-4: 2/2 new triples (862) -- INFO - ----- compute-uri-for-owl-declaration-5: 2/2 new triples (864) -- INFO - ----- generate-atom-class: 9/9 new triples (873) -- INFO - ----- classify-atom-class-1: 2/2 new triples (875) -- INFO - ----- classify-atom-class-2: 1/1 new triples (876) -- INFO - ----- generate-individual: 6/6 new triples (882) -- INFO - ----- classify-individual: 2/2 new triples (884) -- INFO - ----- generate-atom-property-1: 8/8 new triples (892) -- INFO - ----- generate-atom-property-12: 4/8 new triples (896) -- DEBUG - ----- generate-inverse-relation: 0/0 new triples (896) -- INFO - ----- generate-composite-class: 4/4 new triples (900) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triples (900) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triples (900) -- INFO - ----- add-restriction-to-class-3: 4/5 new triples (904) -- DEBUG - ----- add-restriction-to-class-4: 0/0 new triples (904) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triples (904) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triples (904) -- DEBUG - ----- generate-composite-property: 0/0 new triples (904) -- DEBUG - --- Serializing graph to SolarSystemSample_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-8/SolarSystemSample_generation.ttl -- DEBUG - ----- base: http://SolarSystemSample/generation -- INFO - ----- 51 triples extracted during generation step -- INFO - -- Result: file containing only the factoids -- DEBUG - --- Making factoid graph with the last step result -- DEBUG - ----- Number of factoids: 56 -- DEBUG - ----- Graph base: http://SolarSystemSample/factoid -- DEBUG - --- Serializing graph to factoid file (./output/SolarSystemSample-20230111/SolarSystemSample-8/SolarSystemSample_factoid.ttl) -- INFO - - *** Execution Time *** ------ Function: apply (lib.tenet_extraction) ------ Total Time: 0:00:08.361794 ------ Process Time: 0:00:08.323059 - *** - *** -- INFO - *** sentence 9 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (302) -- DEBUG - -------- Semantic Net Definition (509) -- DEBUG - -------- Config Parameter Definition (543) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (573) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- ./input/amrDocuments/samples/solar-system/SSC-03-01.stog.amr.ttl (660) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: ./output/SolarSystemSample-20230111/SolarSystemSample-9/SolarSystemSample.ttl -- INFO - ----- Sentence (id): SSC-03-01 -- INFO - ----- Sentence (text): Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size. -- DEBUG - --- Ending Structure Preparation -- DEBUG - ----- Total Execution Time = 0:00:00.137061 -- INFO - -- Loading Extraction Scheme (amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_ctr/*) -- DEBUG - ----- Total rule number: 94 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triples (660) -- INFO - --- Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (670) -- INFO - ----- reclassify-concept-2: 8/8 new triples (678) -- INFO - ----- reclassify-concept-3: 24/24 new triples (702) -- INFO - ----- reclassify-concept-4: 28/28 new triples (730) -- INFO - ----- reclassify-concept-5: 4/4 new triples (734) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triples (734) -- INFO - ----- reclassify-existing-variable: 85/85 new triples (819) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triples (819) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 63/63 new triples (882) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triples (882) -- INFO - ----- add-amr-edge-for-core-relation: 63/63 new triples (945) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triples (945) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (950) -- INFO - ----- add-value-for-quant-relation: 5/5 new triples (955) -- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (960) -- INFO - ----- update-amr-edge-role-1: 24/24 new triples (984) -- INFO - ----- add-amr-root: 5/5 new triples (989) -- DEBUG - --- Serializing graph to SolarSystemSample_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-9/SolarSystemSample_preprocessing.ttl -- DEBUG - ----- base: http://SolarSystemSample/preprocessing -- INFO - ----- 329 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 54/54 new triples (1043) -- DEBUG - ----- (refinement) refine-cover-node-1: 9 new triples (1052) -- DEBUG - ----- (refinement) refine-cover-node-2: 9 new triples (1061) -- INFO - ----- create-individual-net-1: 7/7 new triples (1068) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (1069) -- INFO - ----- create-atom-property-net-1: 128/128 new triples (1197) -- DEBUG - ----- (refinement) refine-cover-node-1: 9 new triples (1206) -- INFO - ----- create-value-net: 21/22 new triples (1227) -- INFO - ----- create-phenomena-net-1: 33/36 new triples (1260) -- DEBUG - ----- (refinement) refine-cover-node-1: 3 new triples (1263) -- INFO - --- Sequence: atomic-extraction-sequence -- DEBUG - ----- create-atom-class-net: 0/75 new triples (1263) -- DEBUG - ----- create-individual-net-1: 0/13 new triples (1263) -- INFO - ----- create-atom-property-net-1: 2/134 new triples (1265) -- DEBUG - ----- create-value-net: 0/22 new triples (1265) -- INFO - ----- create-phenomena-net-1: 2/38 new triples (1267) -- INFO - --- Sequence: phenomena-application-sequence -- INFO - ----- polarity-phenomena-application: 8/9 new triples (1275) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (1276) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (1276) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (1276) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (1276) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (1276) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (1276) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (1276) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (1276) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (1276) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (1276) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (1276) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (1276) -- INFO - --- Sequence: composite-property-extraction-sequence -- INFO - ----- create-composite-class-net-from-property-1: 22/26 new triples (1298) -- DEBUG - ----- (refinement) refine-cover-node-1: 4 new triples (1302) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1302) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- INFO - ----- create-composite-class-net-from-property-1: 15/15 new triples (1317) -- DEBUG - ----- (refinement) refine-cover-node-1: 3 new triples (1320) -- DEBUG - ----- (refinement) refine-cover-node-2: 1 new triples (1321) -- INFO - ----- create-composite-class-net-from-property-2: 30/30 new triples (1351) -- DEBUG - ----- (refinement) refine-cover-node-1: 6 new triples (1357) -- DEBUG - ----- (refinement) refine-cover-node-2: 2 new triples (1359) -- INFO - ----- create-composite-class-net-from-property-3: 14/17 new triples (1373) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1373) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1373) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1373) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1373) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1373) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (1373) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/0 new triples (1373) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/0 new triples (1373) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/0 new triples (1373) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (1373) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (1373) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (1373) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (1373) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (1373) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (1373) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (1373) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (1373) -- INFO - --- Sequence: composite-property-extraction-sequence -- INFO - ----- create-composite-class-net-from-property-1: 22/48 new triples (1395) -- DEBUG - ----- (refinement) refine-cover-node-1: 4 new triples (1399) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1399) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- INFO - ----- create-composite-class-net-from-property-1: 11/26 new triples (1410) -- DEBUG - ----- (refinement) refine-cover-node-2: 1 new triples (1411) -- INFO - ----- create-composite-class-net-from-property-2: 49/79 new triples (1460) -- DEBUG - ----- (refinement) refine-cover-node-1: 10 new triples (1470) -- DEBUG - ----- (refinement) refine-cover-node-2: 3 new triples (1473) -- INFO - ----- create-composite-class-net-from-property-3: 18/21 new triples (1491) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1491) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1491) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1491) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1491) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1491) -- INFO - --- Sequence: restriction-adding-sequence -- DEBUG - ----- add-restriction-to-class-net-from-property-1: 0/0 new triples (1491) -- INFO - --- Sequence: classification-sequence -- INFO - ----- classify-net-from-core-1: 5/5 new triples (1496) -- INFO - ----- classify-net-from-core-2: 7/12 new triples (1503) -- INFO - ----- classify-net-from-core-3: 91/95 new triples (1594) -- DEBUG - ----- (refinement) refine-cover-node-1: 9 new triples (1603) -- DEBUG - ----- classify-net-from-part: 0/0 new triples (1603) -- DEBUG - ----- classify-net-from-domain: 0/0 new triples (1603) -- DEBUG - ----- classify-net-from-degree-phenomena-1: 0/0 new triples (1603) -- DEBUG - ----- classify-net-from-degree-phenomena-2: 0/0 new triples (1603) -- DEBUG - ----- classify-net-from-degree-phenomena-3: 0/0 new triples (1603) -- INFO - ----- propagate-individual-1: 30/30 new triples (1633) -- DEBUG - ----- propagate-individual-2: 0/0 new triples (1633) -- INFO - ----- reclassify-deprecated-net: 9/9 new triples (1642) -- DEBUG - --- Serializing graph to SolarSystemSample_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-9/SolarSystemSample_transduction.ttl -- DEBUG - ----- base: http://SolarSystemSample/transduction -- INFO - ----- 653 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 7/7 new triples (1649) -- INFO - ----- compute-uri-for-owl-declaration-2: 10/10 new triples (1659) -- INFO - ----- compute-uri-for-owl-declaration-3: 9/9 new triples (1668) -- INFO - ----- compute-uri-for-owl-declaration-4: 13/13 new triples (1681) -- INFO - ----- compute-uri-for-owl-declaration-5: 8/8 new triples (1689) -- INFO - ----- generate-atom-class: 12/12 new triples (1701) -- INFO - ----- classify-atom-class-1: 2/2 new triples (1703) -- INFO - ----- classify-atom-class-2: 2/2 new triples (1705) -- INFO - ----- generate-individual: 28/30 new triples (1733) -- DEBUG - ----- classify-individual: 0/0 new triples (1733) -- INFO - ----- generate-atom-property-1: 28/28 new triples (1761) -- INFO - ----- generate-atom-property-12: 20/28 new triples (1781) -- DEBUG - ----- generate-inverse-relation: 0/0 new triples (1781) -- INFO - ----- generate-composite-class: 12/12 new triples (1793) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triples (1793) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triples (1793) -- DEBUG - ----- add-restriction-to-class-3: 0/0 new triples (1793) -- INFO - ----- add-restriction-to-class-4: 12/15 new triples (1805) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triples (1805) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triples (1805) -- INFO - ----- generate-composite-property: 16/16 new triples (1821) -- DEBUG - --- Serializing graph to SolarSystemSample_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-9/SolarSystemSample_generation.ttl -- DEBUG - ----- base: http://SolarSystemSample/generation -- INFO - ----- 179 triples extracted during generation step -- INFO - -- Result: file containing only the factoids -- DEBUG - --- Making factoid graph with the last step result -- DEBUG - ----- Number of factoids: 192 -- DEBUG - ----- Graph base: http://SolarSystemSample/factoid -- DEBUG - --- Serializing graph to factoid file (./output/SolarSystemSample-20230111/SolarSystemSample-9/SolarSystemSample_factoid.ttl) -- INFO - - *** Execution Time *** ------ Function: apply (lib.tenet_extraction) ------ Total Time: 0:00:16.497004 ------ Process Time: 0:00:16.379174 - *** - *** -- INFO - *** sentence 10 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (302) -- DEBUG - -------- Semantic Net Definition (509) -- DEBUG - -------- Config Parameter Definition (543) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (573) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- ./input/amrDocuments/samples/solar-system/SSC-02-01.stog.amr.ttl (648) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: ./output/SolarSystemSample-20230111/SolarSystemSample-10/SolarSystemSample.ttl -- INFO - ----- Sentence (id): SSC-02-01 -- INFO - ----- Sentence (text): Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies. -- DEBUG - --- Ending Structure Preparation -- DEBUG - ----- Total Execution Time = 0:00:00.174758 -- INFO - -- Loading Extraction Scheme (amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_ctr/*) -- DEBUG - ----- Total rule number: 94 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triples (648) -- INFO - --- Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (658) -- INFO - ----- reclassify-concept-2: 8/8 new triples (666) -- INFO - ----- reclassify-concept-3: 12/12 new triples (678) -- INFO - ----- reclassify-concept-4: 28/28 new triples (706) -- INFO - ----- reclassify-concept-5: 4/4 new triples (710) -- INFO - ----- reify-roles-as-concept: 5/5 new triples (715) -- INFO - ----- reclassify-existing-variable: 81/81 new triples (796) -- INFO - ----- add-new-variable-for-reified-concept: 4/4 new triples (800) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 60/60 new triples (860) -- INFO - ----- add-amr-leaf-for-reified-concept: 4/4 new triples (864) -- INFO - ----- add-amr-edge-for-core-relation: 54/54 new triples (918) -- INFO - ----- add-amr-edge-for-reified-concept: 6/6 new triples (924) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (929) -- INFO - ----- add-value-for-quant-relation: 5/5 new triples (934) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triples (934) -- INFO - ----- update-amr-edge-role-1: 22/22 new triples (956) -- INFO - ----- add-amr-root: 5/5 new triples (961) -- DEBUG - --- Serializing graph to SolarSystemSample_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-10/SolarSystemSample_preprocessing.ttl -- DEBUG - ----- base: http://SolarSystemSample/preprocessing -- INFO - ----- 313 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 66/66 new triples (1027) -- DEBUG - ----- (refinement) refine-cover-node-1: 11 new triples (1038) -- DEBUG - ----- (refinement) refine-cover-node-2: 11 new triples (1049) -- INFO - ----- create-individual-net-1: 7/7 new triples (1056) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (1057) -- INFO - ----- create-atom-property-net-1: 79/79 new triples (1136) -- DEBUG - ----- (refinement) refine-cover-node-1: 6 new triples (1142) -- INFO - ----- create-value-net: 15/15 new triples (1157) -- INFO - ----- create-phenomena-net-1: 46/47 new triples (1203) -- DEBUG - ----- (refinement) refine-cover-node-1: 4 new triples (1207) -- INFO - --- Sequence: atomic-extraction-sequence -- INFO - ----- create-atom-class-net: 3/88 new triples (1210) -- DEBUG - ----- create-individual-net-1: 0/9 new triples (1210) -- INFO - ----- create-atom-property-net-1: 1/86 new triples (1211) -- DEBUG - ----- create-value-net: 0/15 new triples (1211) -- INFO - ----- create-phenomena-net-1: 1/48 new triples (1212) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (1212) -- INFO - ----- and-conjunction-phenomena-application-1: 16/20 new triples (1228) -- DEBUG - ----- (refinement) refine-cover-node-1: 1 new triples (1229) -- INFO - ----- and-conjunction-phenomena-application-2: 1/1 new triples (1230) -- INFO - ----- and-conjunction-phenomena-application-3: 21/21 new triples (1251) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (1251) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (1251) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (1251) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (1251) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (1251) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (1251) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (1251) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (1251) -- INFO - --- Sequence: composite-property-extraction-sequence -- INFO - ----- create-composite-class-net-from-property-1: 9/10 new triples (1260) -- DEBUG - ----- (refinement) refine-cover-node-1: 2 new triples (1262) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1262) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- INFO - ----- create-composite-class-net-from-property-1: 30/30 new triples (1292) -- DEBUG - ----- (refinement) refine-cover-node-1: 6 new triples (1298) -- DEBUG - ----- (refinement) refine-cover-node-2: 2 new triples (1300) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1300) -- INFO - ----- create-composite-class-net-from-property-3: 7/9 new triples (1307) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1307) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1307) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1307) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1307) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1307) -- INFO - --- Sequence: phenomena-application-sequence -- DEBUG - ----- polarity-phenomena-application: 0/0 new triples (1307) -- DEBUG - ----- and-conjunction-phenomena-application-1: 0/20 new triples (1307) -- DEBUG - ----- and-conjunction-phenomena-application-2: 0/1 new triples (1307) -- DEBUG - ----- and-conjunction-phenomena-application-3: 0/21 new triples (1307) -- DEBUG - ----- and-conjunction-phenomena-application-4: 0/0 new triples (1307) -- DEBUG - ----- and-conjunction-phenomena-application-5: 0/0 new triples (1307) -- INFO - --- Sequence: phenomena-checking-sequence -- DEBUG - ----- expand-degree-phenomena-net-1: 0/0 new triples (1307) -- DEBUG - ----- expand-degree-phenomena-net-2: 0/0 new triples (1307) -- DEBUG - ----- expand-degree-phenomena-net-3: 0/0 new triples (1307) -- DEBUG - ----- expand-degree-phenomena-net-4: 0/0 new triples (1307) -- DEBUG - ----- expand-degree-phenomena-net-5: 0/0 new triples (1307) -- DEBUG - ----- expand-degree-phenomena-net-6: 0/0 new triples (1307) -- INFO - --- Sequence: composite-property-extraction-sequence -- INFO - ----- create-composite-class-net-from-property-1: 9/19 new triples (1316) -- DEBUG - ----- (refinement) refine-cover-node-1: 2 new triples (1318) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1318) -- INFO - --- Sequence: composite-class-extraction-sequence-1 -- DEBUG - ----- create-composite-class-net-from-property-1: 0/30 new triples (1318) -- DEBUG - ----- create-composite-class-net-from-property-2: 0/0 new triples (1318) -- DEBUG - ----- create-composite-class-net-from-property-3: 0/0 new triples (1318) -- DEBUG - ----- create-composite-class-net-from-property-4: 0/0 new triples (1318) -- INFO - --- Sequence: composite-class-extraction-sequence-2 -- DEBUG - ----- create-composite-class-net-from-phenomena-1: 0/0 new triples (1318) -- DEBUG - ----- create-composite-class-net-from-phenomena-2: 0/0 new triples (1318) -- DEBUG - ----- create-composite-class-net-from-phenomena-3: 0/0 new triples (1318) -- DEBUG - ----- create-composite-class-net-from-phenomena-4: 0/0 new triples (1318) -- INFO - --- Sequence: restriction-adding-sequence -- DEBUG - ----- add-restriction-to-class-net-from-property-1: 0/0 new triples (1318) -- INFO - --- Sequence: classification-sequence -- INFO - ----- classify-net-from-core-1: 4/4 new triples (1322) -- INFO - ----- classify-net-from-core-2: 4/4 new triples (1326) -- INFO - ----- classify-net-from-core-3: 16/17 new triples (1342) -- DEBUG - ----- (refinement) refine-cover-node-1: 2 new triples (1344) -- DEBUG - ----- classify-net-from-part: 0/0 new triples (1344) -- DEBUG - ----- classify-net-from-domain: 0/0 new triples (1344) -- DEBUG - ----- classify-net-from-degree-phenomena-1: 0/0 new triples (1344) -- DEBUG - ----- classify-net-from-degree-phenomena-2: 0/0 new triples (1344) -- DEBUG - ----- classify-net-from-degree-phenomena-3: 0/0 new triples (1344) -- INFO - ----- propagate-individual-1: 4/4 new triples (1348) -- DEBUG - ----- propagate-individual-2: 0/0 new triples (1348) -- INFO - ----- reclassify-deprecated-net: 2/2 new triples (1350) -- DEBUG - --- Serializing graph to SolarSystemSample_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-10/SolarSystemSample_transduction.ttl -- DEBUG - ----- base: http://SolarSystemSample/transduction -- INFO - ----- 389 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 11/11 new triples (1361) -- INFO - ----- compute-uri-for-owl-declaration-2: 3/3 new triples (1364) -- INFO - ----- compute-uri-for-owl-declaration-3: 2/2 new triples (1366) -- INFO - ----- compute-uri-for-owl-declaration-4: 8/8 new triples (1374) -- INFO - ----- compute-uri-for-owl-declaration-5: 6/6 new triples (1380) -- INFO - ----- generate-atom-class: 21/21 new triples (1401) -- INFO - ----- classify-atom-class-1: 5/5 new triples (1406) -- INFO - ----- classify-atom-class-2: 2/2 new triples (1408) -- INFO - ----- generate-individual: 7/9 new triples (1415) -- INFO - ----- classify-individual: 2/2 new triples (1417) -- INFO - ----- generate-atom-property-1: 24/24 new triples (1441) -- INFO - ----- generate-atom-property-12: 12/24 new triples (1453) -- DEBUG - ----- generate-inverse-relation: 0/0 new triples (1453) -- INFO - ----- generate-composite-class: 8/8 new triples (1461) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triples (1461) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triples (1461) -- INFO - ----- add-restriction-to-class-3: 8/10 new triples (1469) -- DEBUG - ----- add-restriction-to-class-4: 0/0 new triples (1469) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triples (1469) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triples (1469) -- INFO - ----- generate-composite-property: 8/8 new triples (1477) -- DEBUG - --- Serializing graph to SolarSystemSample_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: SolarSystemSample -- DEBUG - ----- work_file: ./output/SolarSystemSample-20230111/SolarSystemSample-10/SolarSystemSample_generation.ttl -- DEBUG - ----- base: http://SolarSystemSample/generation -- INFO - ----- 127 triples extracted during generation step -- INFO - -- Result: file containing only the factoids -- DEBUG - --- Making factoid graph with the last step result -- DEBUG - ----- Number of factoids: 143 -- DEBUG - ----- Graph base: http://SolarSystemSample/factoid -- DEBUG - --- Serializing graph to factoid file (./output/SolarSystemSample-20230111/SolarSystemSample-10/SolarSystemSample_factoid.ttl) +- DEBUG - ----- Graph base: http://SolarSystemDev1/factoid +- DEBUG - --- Serializing graph to factoid file (./output/SolarSystemDev1-20230111/SolarSystemDev1-1/SolarSystemDev1_factoid.ttl) - INFO - *** Execution Time *** ----- Function: apply (lib.tenet_extraction) ------ Total Time: 0:00:12.330116 ------ Process Time: 0:00:12.265735 +----- Total Time: 0:00:17.364125 +----- Process Time: 0:00:17.174652 *** - *** - INFO - === Final Ontology Generation === - INFO - -- Making complete factoid graph by merging sentence factoid graphs -- INFO - ----- Total factoid number: 143 -- INFO - ----- Graph base: http://SolarSystemSample/factoid -- INFO - -- Serializing graph to factoid file (./output/SolarSystemSample-20230111/SolarSystemSample_factoid.ttl) +- INFO - ----- Total factoid number: 145 +- INFO - ----- Graph base: http://SolarSystemDev1/factoid +- INFO - -- Serializing graph to factoid file (./output/SolarSystemDev1-20230111/SolarSystemDev1_factoid.ttl) - INFO - === Done ===