diff --git a/tenet/extraction/config.py b/tenet/extraction/config.py index 9b602d030237900cf0b9b94ba18dbcd2720af9ba..90978cbe7fad28dcba50e0c53d89c67fbda2f59b 100644 --- a/tenet/extraction/config.py +++ b/tenet/extraction/config.py @@ -24,18 +24,6 @@ import os BASE_ONTOLOGY_REF = ['base', 'base-ontology'] -#============================================================================== -# Utilities -#============================================================================== - -# def get_according_source_type(source_type, c_xpath, amr_ref, unl_ref): -# get_result = 'None' -# if source_type == 'amr': -# get_result = c_xpath.get(amr_ref) -# else: # else source_type == 'unl' -# get_result = c_xpath.get(unl_ref) -# return get_result - #============================================================================== # Class @@ -66,10 +54,11 @@ class Config: self.source_corpus = source_corpus self.target_ref = target_ref self._process_level = c_base.get("process_level") - self._source_type = c_base.get("source_type") + self.source_type = c_base.get("source_type") + self.extraction_scheme = c_base.get("extraction_scheme") - # -- CTS Reference - self.cts_ref = "" + # # -- CTS Reference + # self.cts_ref = "" # -- Directories c_dir = self.config_tree.xpath("directory")[0] @@ -98,7 +87,8 @@ class Config: self.config_param_file += c_file.get("config_param") + ".ttl" self.base_ontology_file = self.structure_dir self.base_ontology_file += 'base-ontology.ttl' - self.cts_file = "" + self.cts_file = f"{self.cts_dir}{self.extraction_scheme}.py" + # self.cts_file = "" # -- Ontology References c_ref = self.config_tree.xpath("reference")[0] @@ -153,41 +143,7 @@ class Config: self._process_level = new_level process_level = property(_get_process_level, _set_process_level) - - - # -- Property: source_type - - def _get_source_type(self): - return self._source_type - - def _set_source_type(self, source_type): - self._source_type = source_type - self.cts_ref = "" - self.input_doc_dir = "" - self.schema_file = "" - self.cts_file = "" - self.source_sentence_file = '**/*' - source_type = property(_get_source_type, _set_source_type) - - - # -- Property: cts_ref - - def _get_cts_ref(self): - return self._cts_ref - - def _set_cts_ref(self, new_cts_ref): - c_cts = self.config_tree.xpath("cts")[0] - self._cts_ref = "" - if self.source_type == 'amr': - self._cts_ref += c_cts.get("amr_cts_ref") - if self.source_type == 'unl': - self._cts_ref += c_cts.get("unl_cts_ref") - if new_cts_ref != "": - self._cts_ref = new_cts_ref - - cts_ref = property(_get_cts_ref, _set_cts_ref) - # -- Property: target_dir @@ -257,14 +213,6 @@ class Config: def _set_input_doc_dir(self, output_dir_complement): self._input_doc_dir = output_dir_complement - # -- old --- - # c_dir = self.config_tree.xpath("directory")[0] - # self._input_doc_dir = self.base_dir - # if self.source_type == 'amr': - # self._input_doc_dir += c_dir.get("amr_input_documents") - # if self.source_type == 'unl': - # self._input_doc_dir += c_dir.get("unl_input_documents") - # self._input_doc_dir += output_dir_complement input_doc_dir = property(_get_input_doc_dir, _set_input_doc_dir) @@ -284,20 +232,7 @@ class Config: self._schema_file += schema_file_cmpl + ".ttl" schema_file = property(_get_schema_file, _set_schema_file) - - - # -- Property: cts_file - - def _get_cts_file(self): - return self._cts_file - - def _set_cts_file(self, cts_file_cmpl): - self._cts_file = self.cts_dir - self._cts_file += self.cts_ref - self._cts_file += cts_file_cmpl + '.py' - - cts_file = property(_get_cts_file, _set_cts_file) - + # -- Property: source_sentence_files @@ -336,8 +271,9 @@ class Config: config_str += '\n ----- source corpus: ' + self.source_corpus config_str += '\n ----- target reference: ' + self.target_ref config_str += '\n ----- process level: ' + self.process_level - config_str += '\n ----- source type: ' + self.source_type - config_str += '\n ----- CTS reference: ' + self.cts_ref + config_str += f'\n ----- source type: {self.source_type}' + config_str += f'\n ----- extraction scheme: {self.extraction_scheme}' + # config_str += '\n ----- CTS reference (old): ' + self.cts_ref config_str += '\n ----- output file: ' + self.output_file config_str += f'\n ----- technical dir path: {self.technical_dir_path}' @@ -358,10 +294,11 @@ class Config: config_str += '\n ----- source corpus: ' + self.source_corpus config_str += '\n ----- target reference: ' + self.target_ref config_str += '\n ----- process level: ' + self.process_level - config_str += '\n ----- source type: ' + self.source_type + config_str += f'\n ----- source type: {self.source_type}' + config_str += f'\n ----- extraction scheme: {self.extraction_scheme}' - config_str += '\n' + ' -- Compositional Transduction Scheme (CTS)' - config_str += '\n ----- CTS reference: ' + self.cts_ref + # config_str += '\n' + ' -- Compositional Transduction Scheme (CTS)' + # config_str += '\n ----- CTS reference (old): ' + self.cts_ref config_str += '\n' + ' -- Directories' config_str += '\n ----- base directory: ' + self.base_dir diff --git a/tenet/extraction/process.py b/tenet/extraction/process.py index 20b18adde16a6a4e4b5b8d60a5da2954898a5e6a..82e8b9de311721ef9a08011039e6ef13f4d33bcd 100644 --- a/tenet/extraction/process.py +++ b/tenet/extraction/process.py @@ -31,10 +31,10 @@ logger = logging.getLogger(__name__) #============================================================================== def load_cts(config): - """ Load extraction scheme (CTS) from <cts_ref> file """ + """ Load extraction scheme (CTS) from <extraction_scheme> file """ try: - cts_module = SourceFileLoader(config.cts_ref, + cts_module = SourceFileLoader(config.extraction_scheme, config.cts_file).load_module() return cts_module.rule_dir, cts_module.prefix_list, cts_module.scheme @@ -47,7 +47,7 @@ def load_cts(config): except Exception: logger.error(' *** Error while loading scheme (load_cts) ***') logger.debug(f' ----- current work directory: {os.getcwd()}') - logger.debug(f' ----- cts_ref: {config.cts_ref}') + logger.debug(f' ----- extraction_scheme: {config.extraction_scheme}') logger.debug(f' ----- cts_file: {config.cts_file}') @@ -396,7 +396,7 @@ def apply(config, graph): try: # -- Loading Extraction Scheme - logger.info("-- Loading Extraction Scheme ({0})".format(config.cts_ref)) + logger.info(f"-- Loading Extraction Scheme ({config.extraction_scheme})") rule_dir, prefix_list, scheme = load_cts(config) logger.debug("----- Step number: {0}".format(len(scheme))) @@ -430,7 +430,7 @@ def apply(config, graph): except: logger.error(' *** Error while processing extraction (apply) ***') - logger.debug(f' ----- config.cts_ref = {config.cts_ref}') + logger.debug(f' ----- config.extraction_scheme = {config.extraction_scheme}') logger.debug(f' ----- rule_dir = {rule_dir}') logger.debug(f' ----- scheme = {scheme}') logger.debug(f' ----- step = {step_name}, {step_sequence_def}') \ No newline at end of file diff --git a/tenet/odrl_amr_config.xml b/tenet/odrl_amr_config.xml index 2d313e1bf61b5054ea1dddfbdb538c9d59eb9950..3b13a4d32461608a1ca40fa56073a3473e44084b 100644 --- a/tenet/odrl_amr_config.xml +++ b/tenet/odrl_amr_config.xml @@ -4,11 +4,7 @@ <base process_level = "sentence" source_type = "amr" - /> - - <cts - amr_cts_ref = "odrl_amr_scheme_1" - unl_cts_ref = "None" + extraction_scheme = "odrl_amr_scheme_1" /> <directory diff --git a/tenet/owl_amr_config.xml b/tenet/owl_amr_config.xml index a0adef2705738a3e237d772a09eeeb04a31a926e..d2849c774c750acaa39b98a1f260314377bfe63b 100644 --- a/tenet/owl_amr_config.xml +++ b/tenet/owl_amr_config.xml @@ -4,11 +4,7 @@ <base process_level = "sentence" source_type = "amr" - /> - - <cts - amr_cts_ref = "owl_amr_scheme_1" - unl_cts_ref = "owl_unl_scheme_1" + extraction_scheme = "owl_amr_scheme_1" /> <directory diff --git a/tenet/tenet.log b/tenet/tenet.log index d82638bc2a43c5769f3bbf8ca586a0713c3eebdd..c7b1484953c0857c23f2a2ab466235c35d213750 100644 --- a/tenet/tenet.log +++ b/tenet/tenet.log @@ -18,8 +18,7 @@ ----- target reference: base ----- process level: sentence ----- source type: amr - -- Compositional Transduction Scheme (CTS) - ----- CTS reference: owl_amr_scheme_1 + ----- extraction scheme: owl_amr_scheme_1 -- Directories ----- base directory: ./ ----- structure directory: ./structure/ @@ -72,25 +71,25 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (609, 0:00:00.030094) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (609, 0:00:00.047351) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (619, 0:00:00.260658) -- INFO - ----- reclassify-concept-2: 8/8 new triples (627, 0:00:00.096879) -- INFO - ----- reclassify-concept-3: 12/12 new triples (639, 0:00:00.071626) -- INFO - ----- reclassify-concept-4: 28/28 new triples (667, 0:00:00.160871) -- INFO - ----- reclassify-concept-5: 4/4 new triples (671, 0:00:00.066717) -- INFO - ----- reify-roles-as-concept: 5/5 new triples (676, 0:00:00.080590) -- INFO - ----- reclassify-existing-variable: 81/81 new triples (757, 0:00:00.058710) -- INFO - ----- add-new-variable-for-reified-concept: 4/4 new triples (761, 0:00:00.091473) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 60/60 new triples (821, 0:00:00.104331) -- INFO - ----- add-amr-leaf-for-reified-concept: 4/4 new triples (825, 0:00:00.036521) -- INFO - ----- add-amr-edge-for-core-relation: 54/54 new triples (879, 0:00:00.191464) -- INFO - ----- add-amr-edge-for-reified-concept: 6/6 new triples (885, 0:00:00.228741) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (890, 0:00:00.162892) -- INFO - ----- add-value-for-quant-relation: 5/5 new triples (895, 0:00:00.137591) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (895, 0:00:00.102384) -- INFO - ----- update-amr-edge-role-1: 22/22 new triples (917, 0:00:00.242589) -- INFO - ----- add-amr-root: 5/5 new triples (922, 0:00:00.124663) +- INFO - ----- reclassify-concept-1: 10/10 new triples (619, 0:00:00.359740) +- INFO - ----- reclassify-concept-2: 8/8 new triples (627, 0:00:00.123862) +- INFO - ----- reclassify-concept-3: 12/12 new triples (639, 0:00:00.092732) +- INFO - ----- reclassify-concept-4: 28/28 new triples (667, 0:00:00.123992) +- INFO - ----- reclassify-concept-5: 4/4 new triples (671, 0:00:00.078677) +- INFO - ----- reify-roles-as-concept: 5/5 new triples (676, 0:00:00.067388) +- INFO - ----- reclassify-existing-variable: 81/81 new triples (757, 0:00:00.054334) +- INFO - ----- add-new-variable-for-reified-concept: 4/4 new triples (761, 0:00:00.060932) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 60/60 new triples (821, 0:00:00.094267) +- INFO - ----- add-amr-leaf-for-reified-concept: 4/4 new triples (825, 0:00:00.049641) +- INFO - ----- add-amr-edge-for-core-relation: 54/54 new triples (879, 0:00:00.270623) +- INFO - ----- add-amr-edge-for-reified-concept: 6/6 new triples (885, 0:00:00.319377) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (890, 0:00:00.132348) +- INFO - ----- add-value-for-quant-relation: 5/5 new triples (895, 0:00:00.137003) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (895, 0:00:00.251639) +- INFO - ----- update-amr-edge-role-1: 22/22 new triples (917, 0:00:00.176901) +- INFO - ----- add-amr-root: 5/5 new triples (922, 0:00:00.025857) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_02_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/02/ @@ -99,22 +98,22 @@ - INFO - ----- 313 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 66/66 new triples (988, 0:00:00.387095) -- INFO - ----- extract atom individuals: 8/8 new triples (996, 0:00:00.064073) -- INFO - ----- extract atomic properties: 72/72 new triples (1068, 0:00:00.216101) -- INFO - ----- extract atom values: 10/10 new triples (1078, 0:00:00.077800) -- INFO - ----- extract atom phenomena: 28/28 new triples (1106, 0:00:00.170248) -- INFO - ----- propagate atom relations: 35/96 new triples (1141, 0:00:01.912325) +- INFO - ----- extract atom classes: 66/66 new triples (988, 0:00:00.360752) +- INFO - ----- extract atom individuals: 8/8 new triples (996, 0:00:00.064481) +- INFO - ----- extract atomic properties: 72/72 new triples (1068, 0:00:00.231688) +- INFO - ----- extract atom values: 10/10 new triples (1078, 0:00:00.100064) +- INFO - ----- extract atom phenomena: 28/28 new triples (1106, 0:00:00.136477) +- INFO - ----- propagate atom relations: 35/96 new triples (1141, 0:00:02.318755) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (1141, 0:00:00.009896) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (1141, 0:00:00.014897) -- INFO - ----- analyze modifier phenomena (mod): 43/48 new triples (1184, 0:00:00.248048) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (1141, 0:00:00.010429) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (1141, 0:00:00.016351) +- INFO - ----- analyze modifier phenomena (mod): 43/48 new triples (1184, 0:00:00.282281) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (1184, 0:00:00.013948) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (1184, 0:00:00.010635) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (1184, 0:00:00.020310) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (1184, 0:00:00.017322) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- INFO - ----- extract composite classes (1): 22/22 new triples (1206, 0:00:00.146110) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (1206, 0:00:00.033055) +- INFO - ----- extract composite classes (1): 22/22 new triples (1206, 0:00:00.194440) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (1206, 0:00:00.040490) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_02_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/02/ @@ -123,31 +122,31 @@ - INFO - ----- 284 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** November Transduction *** Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 7/7 new triples (1213, 0:00:00.040731) -- INFO - ----- compute-uri-for-owl-declaration-2: 2/2 new triples (1215, 0:00:00.027724) -- INFO - ----- compute-uri-for-owl-declaration-3: 3/3 new triples (1218, 0:00:00.038545) -- INFO - ----- compute-uri-for-owl-declaration-4: 2/2 new triples (1220, 0:00:00.035953) -- INFO - ----- compute-uri-for-owl-declaration-5: 6/6 new triples (1226, 0:00:00.033857) -- INFO - ----- compute-uri-for-owl-declaration-6: 6/6 new triples (1232, 0:00:00.037454) -- DEBUG - ----- compute-uri-for-owl-declaration-7: 0/0 new triple (1232, 0:00:00.031533) -- INFO - ----- generate-atom-class: 21/21 new triples (1253, 0:00:00.014603) -- DEBUG - ----- classify-atom-class-1: 0/0 new triple (1253, 0:00:00.010740) -- INFO - ----- classify-atom-class-2: 7/7 new triples (1260, 0:00:00.022516) -- INFO - ----- generate-individual: 5/9 new triples (1265, 0:00:00.016648) -- INFO - ----- classify-individual-1: 2/2 new triples (1267, 0:00:00.012314) -- INFO - ----- classify-individual-2: 2/2 new triples (1269, 0:00:00.017013) -- INFO - ----- generate-atom-property-1: 24/24 new triples (1293, 0:00:00.011747) -- INFO - ----- generate-atom-property-12: 24/24 new triples (1317, 0:00:00.015573) -- DEBUG - ----- generate-inverse-relation: 0/0 new triple (1317, 0:00:00.009930) -- DEBUG - ----- generate-composite-class: 0/0 new triple (1317, 0:00:00.013857) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triple (1317, 0:00:00.026084) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triple (1317, 0:00:00.021405) -- DEBUG - ----- add-restriction-to-class-3: 0/0 new triple (1317, 0:00:00.020389) -- DEBUG - ----- add-restriction-to-class-4: 0/0 new triple (1317, 0:00:00.018125) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triple (1317, 0:00:00.018549) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triple (1317, 0:00:00.019188) +- INFO - ----- compute-uri-for-owl-declaration-1: 7/7 new triples (1213, 0:00:00.040686) +- INFO - ----- compute-uri-for-owl-declaration-2: 2/2 new triples (1215, 0:00:00.036628) +- INFO - ----- compute-uri-for-owl-declaration-3: 3/3 new triples (1218, 0:00:00.034954) +- INFO - ----- compute-uri-for-owl-declaration-4: 2/2 new triples (1220, 0:00:00.039646) +- INFO - ----- compute-uri-for-owl-declaration-5: 6/6 new triples (1226, 0:00:00.040182) +- INFO - ----- compute-uri-for-owl-declaration-6: 6/6 new triples (1232, 0:00:00.033810) +- DEBUG - ----- compute-uri-for-owl-declaration-7: 0/0 new triple (1232, 0:00:00.022804) +- INFO - ----- generate-atom-class: 21/21 new triples (1253, 0:00:00.021682) +- DEBUG - ----- classify-atom-class-1: 0/0 new triple (1253, 0:00:00.010570) +- INFO - ----- classify-atom-class-2: 7/7 new triples (1260, 0:00:00.015263) +- INFO - ----- generate-individual: 5/9 new triples (1265, 0:00:00.013201) +- INFO - ----- classify-individual-1: 2/2 new triples (1267, 0:00:00.008017) +- INFO - ----- classify-individual-2: 2/2 new triples (1269, 0:00:00.012386) +- INFO - ----- generate-atom-property-1: 24/24 new triples (1293, 0:00:00.017202) +- INFO - ----- generate-atom-property-12: 24/24 new triples (1317, 0:00:00.016678) +- DEBUG - ----- generate-inverse-relation: 0/0 new triple (1317, 0:00:00.010977) +- DEBUG - ----- generate-composite-class: 0/0 new triple (1317, 0:00:00.011662) +- DEBUG - ----- add-restriction-to-class-1: 0/0 new triple (1317, 0:00:00.016097) +- DEBUG - ----- add-restriction-to-class-2: 0/0 new triple (1317, 0:00:00.013274) +- DEBUG - ----- add-restriction-to-class-3: 0/0 new triple (1317, 0:00:00.013776) +- DEBUG - ----- add-restriction-to-class-4: 0/0 new triple (1317, 0:00:00.022642) +- DEBUG - ----- add-restriction-to-class-5: 0/0 new triple (1317, 0:00:00.018045) +- DEBUG - ----- add-restriction-to-class-6: 0/0 new triple (1317, 0:00:00.014766) - INFO - --- *** February Transduction *** Sequence: property_generation_sequence -- INFO - ----- generate OWL property: 2/26 new triples (1319, 0:00:00.260687) +- INFO - ----- generate OWL property: 2/26 new triples (1319, 0:00:00.309219) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_02_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/02/ @@ -170,6 +169,1104 @@ - INFO - *** Execution Time *** ----- Function: create_ontology_from_amrld_file (tenet.main) ------ Total Time: 0:00:07.114531 ------ Process Time: 0:00:06.871051 +----- Total Time: 0:00:07.756084 +----- Process Time: 0:00:07.328505 + *** - *** +�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-6/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 1 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 7 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s10.stog.amr.ttl (569) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): asail_odrl_sentences-10 +- INFO - ----- Sentence (text): John is obligated to reproduce and distribute the Work. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (569, 0:00:00.052911) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 10/10 new triples (579, 0:00:00.220961) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (579, 0:00:00.205107) +- INFO - ----- reclassify-concept-3: 12/12 new triples (591, 0:00:00.089976) +- DEBUG - ----- reclassify-concept-4: 0/0 new triple (591, 0:00:00.112662) +- INFO - ----- reclassify-concept-5: 4/4 new triples (595, 0:00:00.062801) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (595, 0:00:00.060294) +- INFO - ----- reclassify-existing-variable: 25/25 new triples (620, 0:00:00.059602) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (620, 0:00:00.091698) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (638, 0:00:00.063490) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (638, 0:00:00.061369) +- INFO - ----- add-amr-edge-for-core-relation: 24/24 new triples (662, 0:00:00.164900) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (662, 0:00:00.111145) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (667, 0:00:00.070232) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (667, 0:00:00.110697) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (667, 0:00:00.134904) +- INFO - ----- update-amr-edge-role-1: 9/9 new triples (676, 0:00:00.074693) +- INFO - ----- add-amr-root: 5/5 new triples (681, 0:00:00.023377) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 112 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 6/6 new triples (687, 0:00:00.059785) +- INFO - ----- extract atom individuals: 8/8 new triples (695, 0:00:00.053930) +- INFO - ----- extract atomic properties: 37/37 new triples (732, 0:00:00.131698) +- INFO - ----- extract atom values: 5/5 new triples (737, 0:00:00.037860) +- INFO - ----- extract atom phenomena: 14/14 new triples (751, 0:00:00.073301) +- INFO - ----- propagate atom relations: 19/62 new triples (770, 0:00:00.651498) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/7 new triple (771, 0:00:00.056291) +- INFO - ----- reclassify argument property to class: 10/24 new triples (781, 0:00:00.175260) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (781, 0:00:00.011610) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (781, 0:00:00.022083) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (781, 0:00:00.021947) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (781, 0:00:00.049804) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (781, 0:00:00.052400) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (781, 0:00:00.034828) +- DEBUG - ----- classify modality phenomena: 0/14 new triple (781, 0:00:00.092789) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (781, 0:00:00.017854) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (781, 0:00:00.016841) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (781, 0:00:00.017688) +- INFO - ----- analyze "and" phenomena (2): 2/36 new triples (783, 0:00:00.427580) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 42/54 new triples (825, 0:00:00.432785) +- DEBUG - ----- extract action properties (2): 0/0 new triple (825, 0:00:00.154222) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- DEBUG - ----- extract composite classes (1): 0/0 new triple (825, 0:00:00.046664) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (825, 0:00:00.038764) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 30/34 new triples (855, 0:00:00.335047) +- INFO - ----- extract ODRL rules: 15/48 new triples (870, 0:00:00.384498) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 189 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 2/2 new triples (872, 0:00:00.129714) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 2 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 2 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 8 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s06.stog.amr.ttl (556) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): asail_odrl_sentences-06 +- INFO - ----- Sentence (text): John is not allowed to play the movie. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (556, 0:00:00.032254) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 5/5 new triples (561, 0:00:00.117564) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (561, 0:00:00.068669) +- INFO - ----- reclassify-concept-3: 4/4 new triples (565, 0:00:00.065483) +- INFO - ----- reclassify-concept-4: 4/4 new triples (569, 0:00:00.065030) +- INFO - ----- reclassify-concept-5: 4/4 new triples (573, 0:00:00.056456) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (573, 0:00:00.050287) +- INFO - ----- reclassify-existing-variable: 17/17 new triples (590, 0:00:00.044680) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (590, 0:00:00.071238) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (602, 0:00:00.033524) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (602, 0:00:00.068183) +- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (611, 0:00:00.121845) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (611, 0:00:00.125342) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (616, 0:00:00.137584) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (616, 0:00:00.129637) +- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (621, 0:00:00.132502) +- INFO - ----- update-amr-edge-role-1: 5/5 new triples (626, 0:00:00.060618) +- INFO - ----- add-amr-root: 5/5 new triples (631, 0:00:00.052143) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 75 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 12/12 new triples (643, 0:00:00.208224) +- INFO - ----- extract atom individuals: 8/8 new triples (651, 0:00:00.072742) +- INFO - ----- extract atomic properties: 13/13 new triples (664, 0:00:00.073578) +- INFO - ----- extract atom values: 10/10 new triples (674, 0:00:00.090931) +- INFO - ----- extract atom phenomena: 7/7 new triples (681, 0:00:00.066821) +- INFO - ----- propagate atom relations: 11/28 new triples (692, 0:00:00.516397) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/5 new triple (693, 0:00:00.052351) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (693, 0:00:00.033847) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (693, 0:00:00.010563) +- INFO - ----- analyze "polarity" phenomena (2): 13/30 new triples (706, 0:00:00.126774) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (706, 0:00:00.013951) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (706, 0:00:00.031805) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (706, 0:00:00.037012) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (706, 0:00:00.008572) +- INFO - ----- classify modality phenomena: 1/17 new triple (707, 0:00:00.078294) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (707, 0:00:00.017230) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (707, 0:00:00.015134) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (707, 0:00:00.013471) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (707, 0:00:00.014134) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 20/25 new triples (727, 0:00:00.143266) +- DEBUG - ----- extract action properties (2): 0/0 new triple (727, 0:00:00.132916) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- DEBUG - ----- extract composite classes (1): 0/0 new triple (727, 0:00:00.039463) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (727, 0:00:00.035127) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 15/17 new triples (742, 0:00:00.171956) +- INFO - ----- extract ODRL rules: 12/24 new triples (754, 0:00:00.221223) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 123 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 1/1 new triple (755, 0:00:00.081699) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 1 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 9 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s04.stog.amr.ttl (560) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): asail_odrl_sentences-04 +- INFO - ----- Sentence (text): Movie9899 can be displayed only in Germany. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (560, 0:00:00.031062) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 5/5 new triples (565, 0:00:00.124143) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (565, 0:00:00.065537) +- INFO - ----- reclassify-concept-3: 4/4 new triples (569, 0:00:00.054078) +- INFO - ----- reclassify-concept-4: 8/8 new triples (577, 0:00:00.065844) +- INFO - ----- reclassify-concept-5: 4/4 new triples (581, 0:00:00.056027) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (581, 0:00:00.051311) +- INFO - ----- reclassify-existing-variable: 22/22 new triples (603, 0:00:00.034142) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (603, 0:00:00.059658) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 15/15 new triples (618, 0:00:00.037887) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (618, 0:00:00.049040) +- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (630, 0:00:00.221969) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (630, 0:00:00.106610) +- INFO - ----- add-amr-edge-for-name-relation: 10/10 new triples (640, 0:00:00.085317) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (640, 0:00:00.081645) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (640, 0:00:00.082456) +- INFO - ----- update-amr-edge-role-1: 6/6 new triples (646, 0:00:00.052059) +- INFO - ----- add-amr-root: 5/5 new triples (651, 0:00:00.029806) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 91 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 18/18 new triples (669, 0:00:00.107792) +- INFO - ----- extract atom individuals: 16/16 new triples (685, 0:00:00.081326) +- INFO - ----- extract atomic properties: 13/13 new triples (698, 0:00:00.039601) +- INFO - ----- extract atom values: 10/10 new triples (708, 0:00:00.066263) +- INFO - ----- extract atom phenomena: 7/7 new triples (715, 0:00:00.048086) +- INFO - ----- propagate atom relations: 15/52 new triples (730, 0:00:00.795277) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/3 new triple (731, 0:00:00.037194) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (731, 0:00:00.027115) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (731, 0:00:00.010507) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (731, 0:00:00.012601) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (731, 0:00:00.012261) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (731, 0:00:00.044323) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (731, 0:00:00.029417) +- INFO - ----- analyze modifier phenomena (mod): 21/25 new triples (752, 0:00:00.093410) +- DEBUG - ----- classify modality phenomena: 0/6 new triple (752, 0:00:00.052332) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (752, 0:00:00.012753) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (752, 0:00:00.010547) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (752, 0:00:00.009605) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (752, 0:00:00.010843) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 21/27 new triples (773, 0:00:00.101105) +- DEBUG - ----- extract action properties (2): 0/0 new triple (773, 0:00:00.098739) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- DEBUG - ----- extract composite classes (1): 0/0 new triple (773, 0:00:00.024886) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (773, 0:00:00.028170) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 11/12 new triples (784, 0:00:00.133633) +- INFO - ----- extract ODRL rules: 11/22 new triples (795, 0:00:00.221301) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 144 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 1/1 new triple (796, 0:00:00.092308) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 1 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 10 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s01.stog.amr.ttl (551) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): asail_odrl_sentences-01 +- INFO - ----- Sentence (text): Movie9898 can be used. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (551, 0:00:00.121220) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 5/5 new triples (556, 0:00:00.149905) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (556, 0:00:00.093141) +- INFO - ----- reclassify-concept-3: 4/4 new triples (560, 0:00:00.071678) +- INFO - ----- reclassify-concept-4: 4/4 new triples (564, 0:00:00.091931) +- DEBUG - ----- reclassify-concept-5: 0/0 new triple (564, 0:00:00.068338) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (564, 0:00:00.070434) +- INFO - ----- reclassify-existing-variable: 13/13 new triples (577, 0:00:00.045789) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (577, 0:00:00.081733) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 9/9 new triples (586, 0:00:00.052120) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (586, 0:00:00.046479) +- INFO - ----- add-amr-edge-for-core-relation: 6/6 new triples (592, 0:00:00.129800) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (592, 0:00:00.109495) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (597, 0:00:00.104196) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (597, 0:00:00.078680) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (597, 0:00:00.086523) +- INFO - ----- update-amr-edge-role-1: 3/3 new triples (600, 0:00:00.033046) +- INFO - ----- add-amr-root: 5/5 new triples (605, 0:00:00.027163) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 54 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 6/6 new triples (611, 0:00:00.037338) +- INFO - ----- extract atom individuals: 8/8 new triples (619, 0:00:00.044352) +- INFO - ----- extract atomic properties: 12/12 new triples (631, 0:00:00.044326) +- INFO - ----- extract atom values: 5/5 new triples (636, 0:00:00.030005) +- INFO - ----- extract atom phenomena: 7/7 new triples (643, 0:00:00.038169) +- INFO - ----- propagate atom relations: 7/22 new triples (650, 0:00:00.328809) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/3 new triple (651, 0:00:00.047170) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (651, 0:00:00.030940) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (651, 0:00:00.010806) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (651, 0:00:00.019964) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (651, 0:00:00.019598) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (651, 0:00:00.043533) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (651, 0:00:00.045512) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (651, 0:00:00.011665) +- DEBUG - ----- classify modality phenomena: 0/6 new triple (651, 0:00:00.077697) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (651, 0:00:00.015145) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (651, 0:00:00.013342) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (651, 0:00:00.010399) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (651, 0:00:00.010638) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 17/20 new triples (668, 0:00:00.111274) +- DEBUG - ----- extract action properties (2): 0/0 new triple (668, 0:00:00.095395) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- DEBUG - ----- extract composite classes (1): 0/0 new triple (668, 0:00:00.024676) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (668, 0:00:00.023553) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 11/12 new triples (679, 0:00:00.172629) +- INFO - ----- extract ODRL rules: 11/22 new triples (690, 0:00:00.221189) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 85 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 1/1 new triple (691, 0:00:00.090224) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 1 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 11 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s08.stog.amr.ttl (557) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): asail_odrl_sentences-08 +- INFO - ----- Sentence (text): John is not allowed not to reproduce the Work. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (557, 0:00:00.127037) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 5/5 new triples (562, 0:00:00.158757) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (562, 0:00:00.095905) +- INFO - ----- reclassify-concept-3: 8/8 new triples (570, 0:00:00.071717) +- DEBUG - ----- reclassify-concept-4: 0/0 new triple (570, 0:00:00.089418) +- INFO - ----- reclassify-concept-5: 4/4 new triples (574, 0:00:00.068915) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (574, 0:00:00.070113) +- INFO - ----- reclassify-existing-variable: 17/17 new triples (591, 0:00:00.046562) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (591, 0:00:00.077652) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (603, 0:00:00.049402) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (603, 0:00:00.046309) +- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (612, 0:00:00.137813) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (612, 0:00:00.100839) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (617, 0:00:00.102410) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (617, 0:00:00.066936) +- INFO - ----- add-amr-edge-for-polarity-relation: 8/8 new triples (625, 0:00:00.107142) +- INFO - ----- update-amr-edge-role-1: 6/6 new triples (631, 0:00:00.052109) +- INFO - ----- add-amr-root: 5/5 new triples (636, 0:00:00.030573) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 79 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 6/6 new triples (642, 0:00:00.042266) +- INFO - ----- extract atom individuals: 8/8 new triples (650, 0:00:00.044864) +- INFO - ----- extract atomic properties: 25/25 new triples (675, 0:00:00.071456) +- INFO - ----- extract atom values: 10/10 new triples (685, 0:00:00.055338) +- INFO - ----- extract atom phenomena: 7/7 new triples (692, 0:00:00.035825) +- INFO - ----- propagate atom relations: 12/30 new triples (704, 0:00:00.411353) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/5 new triple (705, 0:00:00.050821) +- INFO - ----- reclassify argument property to class: 9/10 new triples (714, 0:00:00.071812) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- INFO - ----- analyze "polarity" phenomena (1): 36/44 new triples (750, 0:00:00.121602) +- INFO - ----- analyze "polarity" phenomena (2): 14/34 new triples (764, 0:00:00.179426) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (764, 0:00:00.057351) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (764, 0:00:00.067646) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (764, 0:00:00.043320) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (764, 0:00:00.012341) +- INFO - ----- classify modality phenomena: 1/23 new triple (765, 0:00:00.098171) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (765, 0:00:00.014020) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (765, 0:00:00.014096) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (765, 0:00:00.011758) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (765, 0:00:00.013761) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 22/30 new triples (787, 0:00:00.168400) +- DEBUG - ----- extract action properties (2): 0/0 new triple (787, 0:00:00.093213) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- DEBUG - ----- extract composite classes (1): 0/0 new triple (787, 0:00:00.032444) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (787, 0:00:00.023011) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 15/17 new triples (802, 0:00:00.131461) +- INFO - ----- extract ODRL rules: 12/24 new triples (814, 0:00:00.166813) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 178 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 1/1 new triple (815, 0:00:00.095986) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 1 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 12 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s13.stog.amr.ttl (554) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): policy_asail_odrl_sentences-13 +- INFO - ----- Sentence (text): You may use the Work. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (554, 0:00:00.039603) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 5/5 new triples (559, 0:00:00.156694) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (559, 0:00:00.087060) +- INFO - ----- reclassify-concept-3: 8/8 new triples (567, 0:00:00.067393) +- INFO - ----- reclassify-concept-4: 4/4 new triples (571, 0:00:00.082399) +- DEBUG - ----- reclassify-concept-5: 0/0 new triple (571, 0:00:00.055835) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (571, 0:00:00.045937) +- INFO - ----- reclassify-existing-variable: 16/16 new triples (587, 0:00:00.034589) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (587, 0:00:00.056955) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (599, 0:00:00.034625) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (599, 0:00:00.049032) +- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (608, 0:00:00.128483) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (608, 0:00:00.104772) +- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (608, 0:00:00.102832) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (608, 0:00:00.099805) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (608, 0:00:00.108690) +- INFO - ----- update-amr-edge-role-1: 3/3 new triples (611, 0:00:00.040420) +- INFO - ----- add-amr-root: 5/5 new triples (616, 0:00:00.036635) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 62 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 6/6 new triples (622, 0:00:00.052713) +- DEBUG - ----- extract atom individuals: 0/0 new triple (622, 0:00:00.021117) +- INFO - ----- extract atomic properties: 24/24 new triples (646, 0:00:00.163454) +- DEBUG - ----- extract atom values: 0/0 new triple (646, 0:00:00.008715) +- INFO - ----- extract atom phenomena: 7/7 new triples (653, 0:00:00.054215) +- INFO - ----- propagate atom relations: 5/12 new triples (658, 0:00:00.261123) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/3 new triple (659, 0:00:00.053212) +- INFO - ----- reclassify argument property to class: 9/10 new triples (668, 0:00:00.091473) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (668, 0:00:00.010138) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (668, 0:00:00.020108) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (668, 0:00:00.018809) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (668, 0:00:00.045724) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (668, 0:00:00.044091) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (668, 0:00:00.011540) +- DEBUG - ----- classify modality phenomena: 0/6 new triple (668, 0:00:00.075101) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (668, 0:00:00.015640) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (668, 0:00:00.015564) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (668, 0:00:00.014283) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (668, 0:00:00.015380) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 19/23 new triples (687, 0:00:00.126863) +- DEBUG - ----- extract action properties (2): 0/0 new triple (687, 0:00:00.097924) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- DEBUG - ----- extract composite classes (1): 0/0 new triple (687, 0:00:00.030775) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (687, 0:00:00.034414) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 14/15 new triples (701, 0:00:00.173660) +- INFO - ----- extract ODRL rules: 12/24 new triples (713, 0:00:00.219572) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 97 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 1/1 new triple (714, 0:00:00.084881) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 1 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 13 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s17.stog.amr.ttl (559) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): asail_odrl_sentences-17 +- INFO - ----- Sentence (text): You must keep the license intact. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (559, 0:00:00.040346) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 5/5 new triples (564, 0:00:00.172014) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (564, 0:00:00.083664) +- INFO - ----- reclassify-concept-3: 4/4 new triples (568, 0:00:00.070342) +- INFO - ----- reclassify-concept-4: 12/12 new triples (580, 0:00:00.089960) +- DEBUG - ----- reclassify-concept-5: 0/0 new triple (580, 0:00:00.071144) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (580, 0:00:00.066193) +- INFO - ----- reclassify-existing-variable: 20/20 new triples (600, 0:00:00.045931) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (600, 0:00:00.077701) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 15/15 new triples (615, 0:00:00.050398) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (615, 0:00:00.046961) +- INFO - ----- add-amr-edge-for-core-relation: 15/15 new triples (630, 0:00:00.140314) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (630, 0:00:00.112652) +- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (630, 0:00:00.102172) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (630, 0:00:00.184226) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (630, 0:00:00.111890) +- INFO - ----- update-amr-edge-role-1: 5/5 new triples (635, 0:00:00.053717) +- INFO - ----- add-amr-root: 5/5 new triples (640, 0:00:00.036661) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 81 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 18/18 new triples (658, 0:00:00.098877) +- DEBUG - ----- extract atom individuals: 0/0 new triple (658, 0:00:00.014792) +- INFO - ----- extract atomic properties: 13/13 new triples (671, 0:00:00.043258) +- DEBUG - ----- extract atom values: 0/0 new triple (671, 0:00:00.006637) +- INFO - ----- extract atom phenomena: 7/7 new triples (678, 0:00:00.055834) +- INFO - ----- propagate atom relations: 9/20 new triples (687, 0:00:00.354113) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/5 new triple (688, 0:00:00.040114) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (688, 0:00:00.027549) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (688, 0:00:00.011590) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (688, 0:00:00.012689) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (688, 0:00:00.015498) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (688, 0:00:00.038870) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (688, 0:00:00.045977) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (688, 0:00:00.012291) +- DEBUG - ----- classify modality phenomena: 0/10 new triple (688, 0:00:00.060394) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (688, 0:00:00.010565) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (688, 0:00:00.010241) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (688, 0:00:00.010402) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (688, 0:00:00.018154) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 18/21 new triples (706, 0:00:00.117462) +- INFO - ----- extract action properties (2): 22/26 new triples (728, 0:00:00.193620) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- DEBUG - ----- extract composite classes (1): 0/0 new triple (728, 0:00:00.038217) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (728, 0:00:00.033057) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 13/15 new triples (741, 0:00:00.153904) +- INFO - ----- extract ODRL rules: 12/24 new triples (753, 0:00:00.156845) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 113 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 1/1 new triple (754, 0:00:00.055252) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 1 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 14 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s16.stog.amr.ttl (592) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): asail_odrl_sentences-16 +- INFO - ----- Sentence (text): You must keep intact all copyright notices for the Work and give the Original Author credit. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (592, 0:00:00.024589) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 10/10 new triples (602, 0:00:00.171861) +- INFO - ----- reclassify-concept-2: 4/4 new triples (606, 0:00:00.070944) +- INFO - ----- reclassify-concept-3: 24/24 new triples (630, 0:00:00.075919) +- INFO - ----- reclassify-concept-4: 12/12 new triples (642, 0:00:00.100797) +- INFO - ----- reclassify-concept-5: 4/4 new triples (646, 0:00:00.068407) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (646, 0:00:00.072422) +- INFO - ----- reclassify-existing-variable: 52/52 new triples (698, 0:00:00.051483) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (698, 0:00:00.147419) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 39/39 new triples (737, 0:00:00.054176) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (737, 0:00:00.046730) +- INFO - ----- add-amr-edge-for-core-relation: 42/42 new triples (779, 0:00:00.197069) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (779, 0:00:00.124301) +- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (779, 0:00:00.108201) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (779, 0:00:00.115010) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (779, 0:00:00.118008) +- INFO - ----- update-amr-edge-role-1: 14/14 new triples (793, 0:00:00.117624) +- INFO - ----- add-amr-root: 5/5 new triples (798, 0:00:00.039748) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 206 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 24/24 new triples (822, 0:00:00.170886) +- DEBUG - ----- extract atom individuals: 0/0 new triple (822, 0:00:00.025853) +- INFO - ----- extract atomic properties: 86/86 new triples (908, 0:00:00.347248) +- DEBUG - ----- extract atom values: 0/0 new triple (908, 0:00:00.007961) +- INFO - ----- extract atom phenomena: 14/14 new triples (922, 0:00:00.097434) +- INFO - ----- propagate atom relations: 20/56 new triples (942, 0:00:00.906606) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/5 new triple (943, 0:00:00.037154) +- INFO - ----- reclassify argument property to class: 31/38 new triples (974, 0:00:00.223557) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (974, 0:00:00.007810) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (974, 0:00:00.013824) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (974, 0:00:00.013813) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (974, 0:00:00.030848) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (974, 0:00:00.032234) +- INFO - ----- analyze modifier phenomena (mod): 45/52 new triples (1019, 0:00:00.193862) +- DEBUG - ----- classify modality phenomena: 0/10 new triple (1019, 0:00:00.057073) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (1019, 0:00:00.014239) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (1019, 0:00:00.011529) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (1019, 0:00:00.012914) +- INFO - ----- analyze "and" phenomena (2): 2/28 new triples (1021, 0:00:00.281654) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 41/52 new triples (1062, 0:00:00.252279) +- INFO - ----- extract action properties (2): 28/37 new triples (1090, 0:00:00.249275) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- DEBUG - ----- extract composite classes (1): 0/0 new triple (1090, 0:00:00.048456) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (1090, 0:00:00.038155) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 31/36 new triples (1121, 0:00:00.339111) +- INFO - ----- extract ODRL rules: 18/52 new triples (1139, 0:00:00.313413) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 341 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 2/2 new triples (1141, 0:00:00.103689) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 2 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 2 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 15 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s02.stog.amr.ttl (555) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): asail_odrl_sentences-02 +- INFO - ----- Sentence (text): John must play the movie. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (555, 0:00:00.049231) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 5/5 new triples (560, 0:00:00.158560) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (560, 0:00:00.082555) +- INFO - ----- reclassify-concept-3: 4/4 new triples (564, 0:00:00.068037) +- INFO - ----- reclassify-concept-4: 4/4 new triples (568, 0:00:00.083769) +- INFO - ----- reclassify-concept-5: 4/4 new triples (572, 0:00:00.069820) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (572, 0:00:00.073447) +- INFO - ----- reclassify-existing-variable: 17/17 new triples (589, 0:00:00.044403) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (589, 0:00:00.071589) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (601, 0:00:00.046965) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (601, 0:00:00.044521) +- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (610, 0:00:00.125027) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (610, 0:00:00.104722) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (615, 0:00:00.097579) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (615, 0:00:00.101176) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (615, 0:00:00.105697) +- INFO - ----- update-amr-edge-role-1: 4/4 new triples (619, 0:00:00.047658) +- INFO - ----- add-amr-root: 5/5 new triples (624, 0:00:00.036342) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 69 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 12/12 new triples (636, 0:00:00.114731) +- INFO - ----- extract atom individuals: 8/8 new triples (644, 0:00:00.240614) +- INFO - ----- extract atomic properties: 13/13 new triples (657, 0:00:00.052969) +- INFO - ----- extract atom values: 5/5 new triples (662, 0:00:00.025913) +- INFO - ----- extract atom phenomena: 7/7 new triples (669, 0:00:00.033820) +- INFO - ----- propagate atom relations: 10/26 new triples (679, 0:00:00.349579) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/3 new triple (680, 0:00:00.041590) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (680, 0:00:00.024348) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (680, 0:00:00.009373) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (680, 0:00:00.016221) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (680, 0:00:00.013365) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (680, 0:00:00.028565) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (680, 0:00:00.030221) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (680, 0:00:00.014368) +- DEBUG - ----- classify modality phenomena: 0/6 new triple (680, 0:00:00.082458) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (680, 0:00:00.020064) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (680, 0:00:00.012867) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (680, 0:00:00.014879) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (680, 0:00:00.013394) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 19/23 new triples (699, 0:00:00.133578) +- DEBUG - ----- extract action properties (2): 0/0 new triple (699, 0:00:00.102622) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- DEBUG - ----- extract composite classes (1): 0/0 new triple (699, 0:00:00.031312) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (699, 0:00:00.022576) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 14/15 new triples (713, 0:00:00.133835) +- INFO - ----- extract ODRL rules: 12/24 new triples (725, 0:00:00.199771) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 101 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 1/1 new triple (726, 0:00:00.070219) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 1 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 16 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s12.stog.amr.ttl (556) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): policy_asail_odrl_sentences-12 +- INFO - ----- Sentence (text): You may use the movie. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (556, 0:00:00.026205) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 5/5 new triples (561, 0:00:00.115884) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (561, 0:00:00.059237) +- INFO - ----- reclassify-concept-3: 4/4 new triples (565, 0:00:00.045427) +- INFO - ----- reclassify-concept-4: 8/8 new triples (573, 0:00:00.064633) +- DEBUG - ----- reclassify-concept-5: 0/0 new triple (573, 0:00:00.050019) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (573, 0:00:00.045971) +- INFO - ----- reclassify-existing-variable: 16/16 new triples (589, 0:00:00.030676) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (589, 0:00:00.053312) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (601, 0:00:00.031856) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (601, 0:00:00.049716) +- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (613, 0:00:00.124864) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (613, 0:00:00.199421) +- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (613, 0:00:00.110792) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (613, 0:00:00.099534) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (613, 0:00:00.109808) +- INFO - ----- update-amr-edge-role-1: 4/4 new triples (617, 0:00:00.046087) +- INFO - ----- add-amr-root: 5/5 new triples (622, 0:00:00.037606) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 66 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 12/12 new triples (634, 0:00:00.071799) +- DEBUG - ----- extract atom individuals: 0/0 new triple (634, 0:00:00.016248) +- INFO - ----- extract atomic properties: 13/13 new triples (647, 0:00:00.040273) +- DEBUG - ----- extract atom values: 0/0 new triple (647, 0:00:00.005482) +- INFO - ----- extract atom phenomena: 7/7 new triples (654, 0:00:00.037192) +- INFO - ----- propagate atom relations: 7/16 new triples (661, 0:00:00.234886) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/5 new triple (662, 0:00:00.035501) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (662, 0:00:00.028024) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (662, 0:00:00.009868) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (662, 0:00:00.012522) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (662, 0:00:00.014789) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (662, 0:00:00.041441) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (662, 0:00:00.049201) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (662, 0:00:00.014505) +- DEBUG - ----- classify modality phenomena: 0/10 new triple (662, 0:00:00.062016) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (662, 0:00:00.014171) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (662, 0:00:00.011381) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (662, 0:00:00.011158) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (662, 0:00:00.011713) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 18/21 new triples (680, 0:00:00.147592) +- DEBUG - ----- extract action properties (2): 0/0 new triple (680, 0:00:00.092141) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- DEBUG - ----- extract composite classes (1): 0/0 new triple (680, 0:00:00.026635) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (680, 0:00:00.024096) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 14/15 new triples (694, 0:00:00.125930) +- INFO - ----- extract ODRL rules: 12/24 new triples (706, 0:00:00.154607) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 84 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 1/1 new triple (707, 0:00:00.057492) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 1 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 17 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s15.stog.amr.ttl (593) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): asail_odrl_sentences-15 +- INFO - ----- Sentence (text): You must keep intact any copyright or Database Right notices and notices that refer to this License. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (593, 0:00:00.040756) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 15/15 new triples (608, 0:00:00.261744) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (608, 0:00:00.082160) +- INFO - ----- reclassify-concept-3: 24/24 new triples (632, 0:00:00.049018) +- INFO - ----- reclassify-concept-4: 20/20 new triples (652, 0:00:00.071911) +- DEBUG - ----- reclassify-concept-5: 0/0 new triple (652, 0:00:00.046361) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (652, 0:00:00.045471) +- INFO - ----- reclassify-existing-variable: 60/60 new triples (712, 0:00:00.037164) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (712, 0:00:00.056733) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 45/45 new triples (757, 0:00:00.058804) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (757, 0:00:00.031783) +- INFO - ----- add-amr-edge-for-core-relation: 42/42 new triples (799, 0:00:00.263991) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (799, 0:00:00.107093) +- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (799, 0:00:00.105599) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (799, 0:00:00.108536) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (799, 0:00:00.105929) +- INFO - ----- update-amr-edge-role-1: 14/14 new triples (813, 0:00:00.117939) +- INFO - ----- add-amr-root: 5/5 new triples (818, 0:00:00.043439) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 225 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 30/30 new triples (848, 0:00:00.176102) +- DEBUG - ----- extract atom individuals: 0/0 new triple (848, 0:00:00.018854) +- INFO - ----- extract atomic properties: 85/85 new triples (933, 0:00:00.273485) +- DEBUG - ----- extract atom values: 0/0 new triple (933, 0:00:00.008756) +- INFO - ----- extract atom phenomena: 21/21 new triples (954, 0:00:00.102002) +- INFO - ----- propagate atom relations: 21/56 new triples (975, 0:00:01.512385) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/3 new triple (976, 0:00:00.052190) +- INFO - ----- reclassify argument property to class: 20/24 new triples (996, 0:00:00.157859) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (996, 0:00:00.010565) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (996, 0:00:00.019382) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (996, 0:00:00.026831) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (996, 0:00:00.046621) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (996, 0:00:00.047648) +- INFO - ----- analyze modifier phenomena (mod): 21/23 new triples (1017, 0:00:00.163154) +- DEBUG - ----- classify modality phenomena: 0/6 new triple (1017, 0:00:00.100972) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (1017, 0:00:00.025666) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (1017, 0:00:00.016649) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (1017, 0:00:00.017928) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (1017, 0:00:00.016606) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 18/21 new triples (1035, 0:00:00.135832) +- INFO - ----- extract action properties (2): 22/26 new triples (1057, 0:00:00.245680) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- INFO - ----- extract composite classes (1): 25/25 new triples (1082, 0:00:00.136548) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (1082, 0:00:00.029524) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 13/15 new triples (1095, 0:00:00.130207) +- INFO - ----- extract ODRL rules: 12/24 new triples (1107, 0:00:00.164405) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 289 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 1/1 new triple (1108, 0:00:00.061968) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 1 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - + === Final Ontology Generation === +- INFO - -- Making complete factoid graph by merging the result factoids +- INFO - ----- Total factoid number: 19 +- INFO - -- Serializing graph to factoid string +- INFO - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - -- Serializing graph to factoid file +- INFO - ----- Ontology Turtle File: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/aos00_factoid.ttl +- INFO - + === Done === +- INFO - + *** Execution Time *** +----- Function: generate_odrl_from_amrld_dir (tenet.main) +----- Total Time: 0:01:09.674953 +----- Process Time: 0:01:07.721492 *** - *** diff --git a/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.log b/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.log index 679d9dac95940c834eea11b268509a0590c843f6..1df5c8ee27cc37afa755d4a96d0d05e52ed3ecd5 100644 --- a/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.log +++ b/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.log @@ -2,58 +2,54 @@ - INFO - === Process Initialization === - INFO - -- Process Setting -- INFO - ----- Corpus source: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/ (amr) -- INFO - ----- Base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/aos00_factoid.ttl -- INFO - ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/ -- INFO - ----- Ontology target (id): https://tenet.tetras-libre.fr/demo/clara/00/ +- INFO - ----- Corpus source: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-02/SSC-02-01.stog.amr.ttl (amr) +- INFO - ----- Base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/SolarSystemDev02_factoid.ttl +- INFO - ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/ +- INFO - ----- Ontology target (id): https://tenet.tetras-libre.fr/demo/02/ - INFO - ----- Current path: /home/lamenji/Workspace/Tetras/tenet/tenet -- DEBUG - ----- Config file: /home/lamenji/Workspace/Tetras/tenet/tenet/odrl_amr_config.xml +- DEBUG - ----- Config file: /home/lamenji/Workspace/Tetras/tenet/tenet/owl_amr_config.xml - DEBUG - *** Config (Full Parameters) *** -- Base Parameters - ----- config file: /home/lamenji/Workspace/Tetras/tenet/tenet/odrl_amr_config.xml - ----- uuid: https://tenet.tetras-libre.fr/demo/clara/00/ - ----- technical base name: tenet.tetras-libre.fr_demo_clara_00 - ----- source corpus: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/ + ----- config file: /home/lamenji/Workspace/Tetras/tenet/tenet/owl_amr_config.xml + ----- uuid: https://tenet.tetras-libre.fr/demo/02/ + ----- technical base name: tenet.tetras-libre.fr_demo_02 + ----- source corpus: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-02/SSC-02-01.stog.amr.ttl ----- target reference: base ----- process level: sentence ----- source type: amr - -- Compositional Transduction Scheme (CTS) - ----- CTS reference: odrl_amr_scheme_1 + ----- extraction scheme: owl_amr_scheme_1 -- Directories ----- base directory: ./ ----- structure directory: ./structure/ ----- CTS directory: ./scheme/ ----- target frame directory: ./../input/targetFrameStructure/ ----- input document directory: - ----- base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/aos00_factoid.ttl - ----- output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/aos00_factoid.ttltenet.tetras-libre.fr_demo_clara_00-20230511/ - ----- sentence output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/ - ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/ + ----- base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/SolarSystemDev02_factoid.ttl + ----- output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/SolarSystemDev02_factoid.ttltenet.tetras-libre.fr_demo_02-20230511/ + ----- sentence output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/ + ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/ -- Config File Definition ----- schema file: ./structure/amr-rdf-schema.ttl ----- semantic net file: ./structure/odrl-snet-schema.ttl ----- config param file: ./structure/config-parameters.ttl ----- base ontology file: ./structure/base-ontology.ttl - ----- CTS file: ./scheme/odrl_amr_scheme_1.py + ----- CTS file: ./scheme/owl_amr_scheme_1.py -- Useful References for Ontology ----- base URI: https://tenet.tetras-libre.fr/working ----- ontology suffix: -ontology.ttl ----- ontology seed suffix: -ontology-seed.ttl -- Source File Definition - ----- source sentence file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/**/*.ttl + ----- source sentence file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-02/SSC-02-01.stog.amr.ttl**/*.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: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00.ttl + ----- output file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/tenet.tetras-libre.fr_demo_02.ttl *** - *** -- DEBUG - -- Counting number of graph files (sentences) -- INFO - ----- Number of Graphs: 17 - INFO - === Extraction Processing === -- INFO - *** sentence 1 *** - INFO - -- Work Structure Preparation - DEBUG - --- Graph Initialization - DEBUG - ----- Configuration Loading @@ -64,581 +60,120 @@ - DEBUG - -------- Base Ontology produced as output (534) - DEBUG - --- Source Data Import - DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s11.stog.amr.ttl (565) +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-02/SSC-02-01.stog.amr.ttl (609) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-1/tenet.tetras-libre.fr_demo_clara_00.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-11 -- INFO - ----- Sentence (text): John is obligated to reproduce the movie and the picture. -- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_clara_rule/*) -- DEBUG - ----- Total rule number: 87 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (565, 0:00:00.031643) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (575, 0:00:00.123678) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (575, 0:00:00.080102) -- INFO - ----- reclassify-concept-3: 4/4 new triples (579, 0:00:00.058675) -- INFO - ----- reclassify-concept-4: 4/4 new triples (583, 0:00:00.110767) -- INFO - ----- reclassify-concept-5: 8/8 new triples (591, 0:00:00.047901) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (591, 0:00:00.058063) -- INFO - ----- reclassify-existing-variable: 25/25 new triples (616, 0:00:00.031984) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (616, 0:00:00.063302) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (634, 0:00:00.036913) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (634, 0:00:00.036064) -- INFO - ----- add-amr-edge-for-core-relation: 18/18 new triples (652, 0:00:00.116671) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (652, 0:00:00.076329) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (657, 0:00:00.076259) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (657, 0:00:00.079864) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (657, 0:00:00.076549) -- INFO - ----- update-amr-edge-role-1: 7/7 new triples (664, 0:00:00.048258) -- INFO - ----- add-amr-root: 5/5 new triples (669, 0:00:00.029565) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-1/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing -- INFO - ----- 104 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 18/18 new triples (687, 0:00:00.102027) -- INFO - ----- extract atom individuals: 8/8 new triples (695, 0:00:00.046188) -- INFO - ----- extract atomic properties: 13/13 new triples (708, 0:00:00.047155) -- INFO - ----- extract atom values: 5/5 new triples (713, 0:00:00.028031) -- INFO - ----- extract atom phenomena: 14/14 new triples (727, 0:00:00.076894) -- INFO - ----- propagate atom relations: 16/46 new triples (743, 0:00:00.547668) -- INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/7 new triple (744, 0:00:00.039598) -- DEBUG - ----- reclassify argument property to class: 0/0 new triple (744, 0:00:00.028366) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (744, 0:00:00.008149) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (744, 0:00:00.012308) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (744, 0:00:00.016169) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (744, 0:00:00.038944) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (744, 0:00:00.033031) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (744, 0:00:00.008540) -- DEBUG - ----- classify modality phenomena: 0/14 new triple (744, 0:00:00.057206) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (744, 0:00:00.016048) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (744, 0:00:00.011407) -- INFO - ----- analyze "and" phenomena (1): 2/22 new triples (746, 0:00:00.151496) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (746, 0:00:00.010837) -- INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 21/27 new triples (767, 0:00:00.104446) -- DEBUG - ----- extract action properties (2): 0/0 new triple (767, 0:00:00.097669) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (767, 0:00:00.025527) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (767, 0:00:00.026102) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 17/18 new triples (784, 0:00:00.183766) -- INFO - ----- extract ODRL rules: 13/26 new triples (797, 0:00:00.183473) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-1/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction -- INFO - ----- 128 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (798, 0:00:00.134677) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-1/tenet.tetras-libre.fr_demo_clara_00_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-1/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid -- INFO - *** sentence 2 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (470) -- DEBUG - -------- Config Parameter Definition (504) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (534) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s05.stog.amr.ttl (564) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-2/tenet.tetras-libre.fr_demo_clara_00.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-05 -- INFO - ----- Sentence (text): Movie9899 can be displayed only after 2019. -- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_clara_rule/*) -- DEBUG - ----- Total rule number: 87 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (564, 0:00:00.032590) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (569, 0:00:00.131124) -- INFO - ----- reclassify-concept-2: 8/8 new triples (577, 0:00:00.064542) -- INFO - ----- reclassify-concept-3: 4/4 new triples (581, 0:00:00.046102) -- INFO - ----- reclassify-concept-4: 8/8 new triples (589, 0:00:00.068853) -- DEBUG - ----- reclassify-concept-5: 0/0 new triple (589, 0:00:00.059155) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (589, 0:00:00.055646) -- INFO - ----- reclassify-existing-variable: 25/25 new triples (614, 0:00:00.037313) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (614, 0:00:00.052689) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (632, 0:00:00.040397) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (632, 0:00:00.034042) -- INFO - ----- add-amr-edge-for-core-relation: 15/15 new triples (647, 0:00:00.108936) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (647, 0:00:00.082223) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (652, 0:00:00.077811) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (652, 0:00:00.078026) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (652, 0:00:00.087357) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (657, 0:00:00.046015) -- INFO - ----- add-amr-root: 5/5 new triples (662, 0:00:00.036280) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-2/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing -- INFO - ----- 98 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 12/12 new triples (674, 0:00:00.089958) -- INFO - ----- extract atom individuals: 8/8 new triples (682, 0:00:00.047651) -- INFO - ----- extract atomic properties: 36/36 new triples (718, 0:00:00.155378) -- INFO - ----- extract atom values: 5/5 new triples (723, 0:00:00.040069) -- INFO - ----- extract atom phenomena: 7/7 new triples (730, 0:00:00.167172) -- INFO - ----- propagate atom relations: 11/30 new triples (741, 0:00:00.607577) -- INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/3 new triple (742, 0:00:00.048590) -- DEBUG - ----- reclassify argument property to class: 0/0 new triple (742, 0:00:00.028727) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (742, 0:00:00.007049) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (742, 0:00:00.011996) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (742, 0:00:00.015048) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (742, 0:00:00.047241) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (742, 0:00:00.048540) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (742, 0:00:00.011864) -- DEBUG - ----- classify modality phenomena: 0/6 new triple (742, 0:00:00.055510) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (742, 0:00:00.013685) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (742, 0:00:00.010008) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (742, 0:00:00.009514) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (742, 0:00:00.010132) -- INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 17/20 new triples (759, 0:00:00.116719) -- DEBUG - ----- extract action properties (2): 0/0 new triple (759, 0:00:00.166853) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (759, 0:00:00.038727) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (759, 0:00:00.047734) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 11/12 new triples (770, 0:00:00.205600) -- INFO - ----- extract ODRL rules: 11/22 new triples (781, 0:00:00.182412) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-2/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction -- INFO - ----- 119 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (782, 0:00:00.075196) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-2/tenet.tetras-libre.fr_demo_clara_00_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-2/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid -- INFO - *** sentence 3 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (470) -- DEBUG - -------- Config Parameter Definition (504) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (534) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s03.stog.amr.ttl (556) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-3/tenet.tetras-libre.fr_demo_clara_00.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-03 -- INFO - ----- Sentence (text): John is not allowed to play the movie. -- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_clara_rule/*) -- DEBUG - ----- Total rule number: 87 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (556, 0:00:00.029744) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (561, 0:00:00.143587) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (561, 0:00:00.066667) -- INFO - ----- reclassify-concept-3: 4/4 new triples (565, 0:00:00.071017) -- INFO - ----- reclassify-concept-4: 4/4 new triples (569, 0:00:00.079671) -- INFO - ----- reclassify-concept-5: 4/4 new triples (573, 0:00:00.046427) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (573, 0:00:00.066197) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (590, 0:00:00.038401) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (590, 0:00:00.059268) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (602, 0:00:00.035953) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (602, 0:00:00.040736) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (611, 0:00:00.099626) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (611, 0:00:00.093884) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (616, 0:00:00.080229) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (616, 0:00:00.071274) -- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (621, 0:00:00.093389) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (626, 0:00:00.044730) -- INFO - ----- add-amr-root: 5/5 new triples (631, 0:00:00.108877) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-3/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing -- INFO - ----- 75 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 12/12 new triples (643, 0:00:00.071594) -- INFO - ----- extract atom individuals: 8/8 new triples (651, 0:00:00.041188) -- INFO - ----- extract atomic properties: 13/13 new triples (664, 0:00:00.048454) -- INFO - ----- extract atom values: 10/10 new triples (674, 0:00:00.054739) -- INFO - ----- extract atom phenomena: 7/7 new triples (681, 0:00:00.042090) -- INFO - ----- propagate atom relations: 11/28 new triples (692, 0:00:00.371845) -- INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/5 new triple (693, 0:00:00.040936) -- DEBUG - ----- reclassify argument property to class: 0/0 new triple (693, 0:00:00.034996) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (693, 0:00:00.011283) -- INFO - ----- analyze "polarity" phenomena (2): 13/30 new triples (706, 0:00:00.138841) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (706, 0:00:00.018642) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (706, 0:00:00.033942) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (706, 0:00:00.039781) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (706, 0:00:00.011646) -- INFO - ----- classify modality phenomena: 1/17 new triple (707, 0:00:00.077553) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (707, 0:00:00.012401) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (707, 0:00:00.010317) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (707, 0:00:00.009292) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (707, 0:00:00.012989) -- INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 20/25 new triples (727, 0:00:00.111420) -- DEBUG - ----- extract action properties (2): 0/0 new triple (727, 0:00:00.135196) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (727, 0:00:00.048404) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (727, 0:00:00.038180) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 15/17 new triples (742, 0:00:00.164808) -- INFO - ----- extract ODRL rules: 12/24 new triples (754, 0:00:00.215078) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-3/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction -- INFO - ----- 123 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (755, 0:00:00.080018) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-3/tenet.tetras-libre.fr_demo_clara_00_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-3/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid -- INFO - *** sentence 4 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (470) -- DEBUG - -------- Config Parameter Definition (504) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (534) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s07.stog.amr.ttl (557) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-4/tenet.tetras-libre.fr_demo_clara_00.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-07 -- INFO - ----- Sentence (text): John is prohibited not to reproduce the Work. -- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/tenet.tetras-libre.fr_demo_02-0/tenet.tetras-libre.fr_demo_02.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. +- INFO - -- Loading Extraction Scheme (owl_amr_scheme_1) - DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- INFO - -- Loading Extraction Rules (amr_master_rule/*) - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (557, 0:00:00.024259) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (609, 0:00:00.047351) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (562, 0:00:00.095347) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (562, 0:00:00.052537) -- INFO - ----- reclassify-concept-3: 8/8 new triples (570, 0:00:00.041671) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (570, 0:00:00.079676) -- INFO - ----- reclassify-concept-5: 4/4 new triples (574, 0:00:00.042497) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (574, 0:00:00.043180) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (591, 0:00:00.027984) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (591, 0:00:00.119298) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (603, 0:00:00.031873) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (603, 0:00:00.034291) -- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (615, 0:00:00.087297) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (615, 0:00:00.059100) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (620, 0:00:00.073990) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (620, 0:00:00.063666) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (620, 0:00:00.070983) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (625, 0:00:00.034275) -- INFO - ----- add-amr-root: 5/5 new triples (630, 0:00:00.025322) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- INFO - ----- reclassify-concept-1: 10/10 new triples (619, 0:00:00.359740) +- INFO - ----- reclassify-concept-2: 8/8 new triples (627, 0:00:00.123862) +- INFO - ----- reclassify-concept-3: 12/12 new triples (639, 0:00:00.092732) +- INFO - ----- reclassify-concept-4: 28/28 new triples (667, 0:00:00.123992) +- INFO - ----- reclassify-concept-5: 4/4 new triples (671, 0:00:00.078677) +- INFO - ----- reify-roles-as-concept: 5/5 new triples (676, 0:00:00.067388) +- INFO - ----- reclassify-existing-variable: 81/81 new triples (757, 0:00:00.054334) +- INFO - ----- add-new-variable-for-reified-concept: 4/4 new triples (761, 0:00:00.060932) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 60/60 new triples (821, 0:00:00.094267) +- INFO - ----- add-amr-leaf-for-reified-concept: 4/4 new triples (825, 0:00:00.049641) +- INFO - ----- add-amr-edge-for-core-relation: 54/54 new triples (879, 0:00:00.270623) +- INFO - ----- add-amr-edge-for-reified-concept: 6/6 new triples (885, 0:00:00.319377) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (890, 0:00:00.132348) +- INFO - ----- add-value-for-quant-relation: 5/5 new triples (895, 0:00:00.137003) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (895, 0:00:00.251639) +- INFO - ----- update-amr-edge-role-1: 22/22 new triples (917, 0:00:00.176901) +- INFO - ----- add-amr-root: 5/5 new triples (922, 0:00:00.025857) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_02_preprocessing - DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-4/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing -- INFO - ----- 73 triples extracted during preprocessing step +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/02/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/tenet.tetras-libre.fr_demo_02-0/tenet.tetras-libre.fr_demo_02_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/02//preprocessing +- INFO - ----- 313 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 6/6 new triples (636, 0:00:00.037231) -- INFO - ----- extract atom individuals: 8/8 new triples (644, 0:00:00.033564) -- INFO - ----- extract atomic properties: 24/24 new triples (668, 0:00:00.073378) -- INFO - ----- extract atom values: 5/5 new triples (673, 0:00:00.030730) -- INFO - ----- extract atom phenomena: 7/7 new triples (680, 0:00:00.029748) -- INFO - ----- propagate atom relations: 12/38 new triples (692, 0:00:00.328024) -- INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/7 new triple (693, 0:00:00.032747) -- INFO - ----- reclassify argument property to class: 9/10 new triples (702, 0:00:00.062036) +- INFO - ----- extract atom classes: 66/66 new triples (988, 0:00:00.360752) +- INFO - ----- extract atom individuals: 8/8 new triples (996, 0:00:00.064481) +- INFO - ----- extract atomic properties: 72/72 new triples (1068, 0:00:00.231688) +- INFO - ----- extract atom values: 10/10 new triples (1078, 0:00:00.100064) +- INFO - ----- extract atom phenomena: 28/28 new triples (1106, 0:00:00.136477) +- INFO - ----- propagate atom relations: 35/96 new triples (1141, 0:00:02.318755) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (702, 0:00:00.011230) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (702, 0:00:00.014629) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (702, 0:00:00.013071) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (702, 0:00:00.028730) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (702, 0:00:00.032187) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (702, 0:00:00.009157) -- DEBUG - ----- classify modality phenomena: 0/14 new triple (702, 0:00:00.046197) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (1141, 0:00:00.010429) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (1141, 0:00:00.016351) +- INFO - ----- analyze modifier phenomena (mod): 43/48 new triples (1184, 0:00:00.282281) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (702, 0:00:00.008390) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (702, 0:00:00.009197) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (702, 0:00:00.008299) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (702, 0:00:00.008836) -- INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 20/25 new triples (722, 0:00:00.079467) -- DEBUG - ----- extract action properties (2): 0/0 new triple (722, 0:00:00.089152) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (1184, 0:00:00.020310) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (1184, 0:00:00.017322) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (722, 0:00:00.024055) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (722, 0:00:00.019916) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 14/15 new triples (736, 0:00:00.113904) -- INFO - ----- extract ODRL rules: 12/24 new triples (748, 0:00:00.137181) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- INFO - ----- extract composite classes (1): 22/22 new triples (1206, 0:00:00.194440) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (1206, 0:00:00.040490) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_02_transduction - DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-4/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction -- INFO - ----- 118 triples extracted during transduction step +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/02/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/tenet.tetras-libre.fr_demo_02-0/tenet.tetras-libre.fr_demo_02_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/02//transduction +- INFO - ----- 284 triples extracted during transduction step - INFO - -- Applying extraction step: generation -- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (749, 0:00:00.078564) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- INFO - --- *** November Transduction *** Sequence: main-generation-sequence +- INFO - ----- compute-uri-for-owl-declaration-1: 7/7 new triples (1213, 0:00:00.040686) +- INFO - ----- compute-uri-for-owl-declaration-2: 2/2 new triples (1215, 0:00:00.036628) +- INFO - ----- compute-uri-for-owl-declaration-3: 3/3 new triples (1218, 0:00:00.034954) +- INFO - ----- compute-uri-for-owl-declaration-4: 2/2 new triples (1220, 0:00:00.039646) +- INFO - ----- compute-uri-for-owl-declaration-5: 6/6 new triples (1226, 0:00:00.040182) +- INFO - ----- compute-uri-for-owl-declaration-6: 6/6 new triples (1232, 0:00:00.033810) +- DEBUG - ----- compute-uri-for-owl-declaration-7: 0/0 new triple (1232, 0:00:00.022804) +- INFO - ----- generate-atom-class: 21/21 new triples (1253, 0:00:00.021682) +- DEBUG - ----- classify-atom-class-1: 0/0 new triple (1253, 0:00:00.010570) +- INFO - ----- classify-atom-class-2: 7/7 new triples (1260, 0:00:00.015263) +- INFO - ----- generate-individual: 5/9 new triples (1265, 0:00:00.013201) +- INFO - ----- classify-individual-1: 2/2 new triples (1267, 0:00:00.008017) +- INFO - ----- classify-individual-2: 2/2 new triples (1269, 0:00:00.012386) +- INFO - ----- generate-atom-property-1: 24/24 new triples (1293, 0:00:00.017202) +- INFO - ----- generate-atom-property-12: 24/24 new triples (1317, 0:00:00.016678) +- DEBUG - ----- generate-inverse-relation: 0/0 new triple (1317, 0:00:00.010977) +- DEBUG - ----- generate-composite-class: 0/0 new triple (1317, 0:00:00.011662) +- DEBUG - ----- add-restriction-to-class-1: 0/0 new triple (1317, 0:00:00.016097) +- DEBUG - ----- add-restriction-to-class-2: 0/0 new triple (1317, 0:00:00.013274) +- DEBUG - ----- add-restriction-to-class-3: 0/0 new triple (1317, 0:00:00.013776) +- DEBUG - ----- add-restriction-to-class-4: 0/0 new triple (1317, 0:00:00.022642) +- DEBUG - ----- add-restriction-to-class-5: 0/0 new triple (1317, 0:00:00.018045) +- DEBUG - ----- add-restriction-to-class-6: 0/0 new triple (1317, 0:00:00.014766) +- INFO - --- *** February Transduction *** Sequence: property_generation_sequence +- INFO - ----- generate OWL property: 2/26 new triples (1319, 0:00:00.309219) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_02_generation - DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-4/tenet.tetras-libre.fr_demo_clara_00_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-4/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid -- INFO - *** sentence 5 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (470) -- DEBUG - -------- Config Parameter Definition (504) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (534) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s09.stog.amr.ttl (558) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-5/tenet.tetras-libre.fr_demo_clara_00.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-09 -- INFO - ----- Sentence (text): John is obligated not to reproduce the Work. -- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_clara_rule/*) -- DEBUG - ----- Total rule number: 87 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (558, 0:00:00.046580) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (563, 0:00:00.145272) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (563, 0:00:00.047063) -- INFO - ----- reclassify-concept-3: 8/8 new triples (571, 0:00:00.125765) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (571, 0:00:00.064623) -- INFO - ----- reclassify-concept-5: 4/4 new triples (575, 0:00:00.052089) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (575, 0:00:00.039312) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (592, 0:00:00.023647) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (592, 0:00:00.051397) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (604, 0:00:00.031574) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (604, 0:00:00.030331) -- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (616, 0:00:00.078628) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (616, 0:00:00.079978) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (621, 0:00:00.072225) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (621, 0:00:00.071454) -- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (626, 0:00:00.066674) -- INFO - ----- update-amr-edge-role-1: 6/6 new triples (632, 0:00:00.056722) -- INFO - ----- add-amr-root: 5/5 new triples (637, 0:00:00.025730) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-5/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing -- INFO - ----- 79 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 6/6 new triples (643, 0:00:00.048534) -- INFO - ----- extract atom individuals: 8/8 new triples (651, 0:00:00.039672) -- INFO - ----- extract atomic properties: 25/25 new triples (676, 0:00:00.076014) -- INFO - ----- extract atom values: 10/10 new triples (686, 0:00:00.039451) -- INFO - ----- extract atom phenomena: 7/7 new triples (693, 0:00:00.030653) -- INFO - ----- propagate atom relations: 14/40 new triples (707, 0:00:00.299857) -- INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/7 new triple (708, 0:00:00.042889) -- INFO - ----- reclassify argument property to class: 9/10 new triples (717, 0:00:00.070704) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- INFO - ----- analyze "polarity" phenomena (1): 36/44 new triples (753, 0:00:00.129100) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (753, 0:00:00.024500) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (753, 0:00:00.022360) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (753, 0:00:00.031543) -- INFO - ----- analyze "polarity" phenomena (5): 15/38 new triples (768, 0:00:00.102058) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (768, 0:00:00.006856) -- INFO - ----- classify modality phenomena: 1/29 new triple (769, 0:00:00.055491) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (769, 0:00:00.009284) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (769, 0:00:00.009201) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (769, 0:00:00.007703) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (769, 0:00:00.008823) -- INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 22/30 new triples (791, 0:00:00.098721) -- DEBUG - ----- extract action properties (2): 0/0 new triple (791, 0:00:00.083123) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (791, 0:00:00.028100) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (791, 0:00:00.029945) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 15/17 new triples (806, 0:00:00.106636) -- INFO - ----- extract ODRL rules: 12/24 new triples (818, 0:00:00.252057) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-5/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction -- INFO - ----- 181 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (819, 0:00:00.072928) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-5/tenet.tetras-libre.fr_demo_clara_00_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-5/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid -- INFO - *** sentence 6 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (470) -- DEBUG - -------- Config Parameter Definition (504) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (534) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s14.stog.amr.ttl (554) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-6/tenet.tetras-libre.fr_demo_clara_00.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-14 -- INFO - ----- Sentence (text): You may distribute the Work. -- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) -- DEBUG - ----- Step number: 3 -- INFO - -- Loading Extraction Rules (amr_clara_rule/*) -- DEBUG - ----- Total rule number: 87 -- INFO - -- Applying extraction step: preprocessing -- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (554, 0:00:00.037468) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (559, 0:00:00.098943) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (559, 0:00:00.056833) -- INFO - ----- reclassify-concept-3: 8/8 new triples (567, 0:00:00.043530) -- INFO - ----- reclassify-concept-4: 4/4 new triples (571, 0:00:00.061919) -- DEBUG - ----- reclassify-concept-5: 0/0 new triple (571, 0:00:00.045548) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (571, 0:00:00.044765) -- INFO - ----- reclassify-existing-variable: 16/16 new triples (587, 0:00:00.024620) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (587, 0:00:00.045493) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (599, 0:00:00.039622) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (599, 0:00:00.032048) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (608, 0:00:00.082827) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (608, 0:00:00.068663) -- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (608, 0:00:00.061000) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (608, 0:00:00.056425) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (608, 0:00:00.056888) -- INFO - ----- update-amr-edge-role-1: 3/3 new triples (611, 0:00:00.022361) -- INFO - ----- add-amr-root: 5/5 new triples (616, 0:00:00.021124) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-6/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing -- INFO - ----- 62 triples extracted during preprocessing step -- INFO - -- Applying extraction step: transduction -- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 6/6 new triples (622, 0:00:00.031457) -- DEBUG - ----- extract atom individuals: 0/0 new triple (622, 0:00:00.012056) -- INFO - ----- extract atomic properties: 24/24 new triples (646, 0:00:00.063207) -- DEBUG - ----- extract atom values: 0/0 new triple (646, 0:00:00.007690) -- INFO - ----- extract atom phenomena: 7/7 new triples (653, 0:00:00.036002) -- INFO - ----- propagate atom relations: 5/12 new triples (658, 0:00:00.278999) -- INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/3 new triple (659, 0:00:00.037760) -- INFO - ----- reclassify argument property to class: 9/10 new triples (668, 0:00:00.058180) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (668, 0:00:00.009191) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (668, 0:00:00.012916) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (668, 0:00:00.011074) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (668, 0:00:00.024786) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (668, 0:00:00.026080) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (668, 0:00:00.007785) -- DEBUG - ----- classify modality phenomena: 0/6 new triple (668, 0:00:00.048144) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (668, 0:00:00.012511) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (668, 0:00:00.011471) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (668, 0:00:00.008044) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (668, 0:00:00.010338) -- INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 19/23 new triples (687, 0:00:00.087214) -- DEBUG - ----- extract action properties (2): 0/0 new triple (687, 0:00:00.079576) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (687, 0:00:00.019611) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (687, 0:00:00.027327) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 14/15 new triples (701, 0:00:00.103591) -- INFO - ----- extract ODRL rules: 12/24 new triples (713, 0:00:00.139270) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-6/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction -- INFO - ----- 97 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (714, 0:00:00.059176) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-6/tenet.tetras-libre.fr_demo_clara_00_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-6/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/02/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/tenet.tetras-libre.fr_demo_02-0/tenet.tetras-libre.fr_demo_02_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/02//generation +- INFO - ----- 113 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/tenet.tetras-libre.fr_demo_02-0/tenet.tetras-libre.fr_demo_02_factoid.ttl) +- DEBUG - ----- Number of factoids: 141 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/02//factoid +- INFO - + === Final Ontology Generation === +- INFO - -- Making complete factoid graph by merging the result factoids +- INFO - ----- Total factoid number: 141 +- INFO - -- Serializing graph to factoid string +- INFO - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/02//factoid +- INFO - -- Serializing graph to factoid file +- INFO - ----- Ontology Turtle File: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/SolarSystemDev02_factoid.ttl +- INFO - + === Done === +- INFO - + *** Execution Time *** +----- Function: create_ontology_from_amrld_file (tenet.main) +----- Total Time: 0:00:07.756084 +----- Process Time: 0:00:07.328505 + *** - *** +�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-6/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 1 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - *** sentence 7 *** @@ -654,7 +189,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s10.stog.amr.ttl (569) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00.ttl +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00.ttl - INFO - ----- Sentence (id): asail_odrl_sentences-10 - INFO - ----- Sentence (text): John is obligated to reproduce and distribute the Work. - INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) @@ -663,80 +198,80 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (569, 0:00:00.027034) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (569, 0:00:00.052911) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (579, 0:00:00.113279) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (579, 0:00:00.050360) -- INFO - ----- reclassify-concept-3: 12/12 new triples (591, 0:00:00.047827) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (591, 0:00:00.055974) -- INFO - ----- reclassify-concept-5: 4/4 new triples (595, 0:00:00.045367) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (595, 0:00:00.037592) -- INFO - ----- reclassify-existing-variable: 25/25 new triples (620, 0:00:00.025319) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (620, 0:00:00.048121) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (638, 0:00:00.030175) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (638, 0:00:00.030621) -- INFO - ----- add-amr-edge-for-core-relation: 24/24 new triples (662, 0:00:00.085941) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (662, 0:00:00.057348) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (667, 0:00:00.058045) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (667, 0:00:00.145084) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (667, 0:00:00.062316) -- INFO - ----- update-amr-edge-role-1: 9/9 new triples (676, 0:00:00.051793) -- INFO - ----- add-amr-root: 5/5 new triples (681, 0:00:00.021880) +- INFO - ----- reclassify-concept-1: 10/10 new triples (579, 0:00:00.220961) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (579, 0:00:00.205107) +- INFO - ----- reclassify-concept-3: 12/12 new triples (591, 0:00:00.089976) +- DEBUG - ----- reclassify-concept-4: 0/0 new triple (591, 0:00:00.112662) +- INFO - ----- reclassify-concept-5: 4/4 new triples (595, 0:00:00.062801) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (595, 0:00:00.060294) +- INFO - ----- reclassify-existing-variable: 25/25 new triples (620, 0:00:00.059602) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (620, 0:00:00.091698) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (638, 0:00:00.063490) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (638, 0:00:00.061369) +- INFO - ----- add-amr-edge-for-core-relation: 24/24 new triples (662, 0:00:00.164900) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (662, 0:00:00.111145) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (667, 0:00:00.070232) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (667, 0:00:00.110697) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (667, 0:00:00.134904) +- INFO - ----- update-amr-edge-role-1: 9/9 new triples (676, 0:00:00.074693) +- INFO - ----- add-amr-root: 5/5 new triples (681, 0:00:00.023377) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing - INFO - ----- 112 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 6/6 new triples (687, 0:00:00.033496) -- INFO - ----- extract atom individuals: 8/8 new triples (695, 0:00:00.039493) -- INFO - ----- extract atomic properties: 37/37 new triples (732, 0:00:00.098637) -- INFO - ----- extract atom values: 5/5 new triples (737, 0:00:00.025452) -- INFO - ----- extract atom phenomena: 14/14 new triples (751, 0:00:00.060689) -- INFO - ----- propagate atom relations: 19/62 new triples (770, 0:00:00.398613) +- INFO - ----- extract atom classes: 6/6 new triples (687, 0:00:00.059785) +- INFO - ----- extract atom individuals: 8/8 new triples (695, 0:00:00.053930) +- INFO - ----- extract atomic properties: 37/37 new triples (732, 0:00:00.131698) +- INFO - ----- extract atom values: 5/5 new triples (737, 0:00:00.037860) +- INFO - ----- extract atom phenomena: 14/14 new triples (751, 0:00:00.073301) +- INFO - ----- propagate atom relations: 19/62 new triples (770, 0:00:00.651498) - INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/7 new triple (771, 0:00:00.029577) -- INFO - ----- reclassify argument property to class: 10/24 new triples (781, 0:00:00.093223) +- INFO - ----- classify modality phenomena: 1/7 new triple (771, 0:00:00.056291) +- INFO - ----- reclassify argument property to class: 10/24 new triples (781, 0:00:00.175260) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (781, 0:00:00.007419) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (781, 0:00:00.011688) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (781, 0:00:00.013727) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (781, 0:00:00.026386) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (781, 0:00:00.031045) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (781, 0:00:00.007765) -- DEBUG - ----- classify modality phenomena: 0/14 new triple (781, 0:00:00.044855) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (781, 0:00:00.011610) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (781, 0:00:00.022083) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (781, 0:00:00.021947) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (781, 0:00:00.049804) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (781, 0:00:00.052400) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (781, 0:00:00.034828) +- DEBUG - ----- classify modality phenomena: 0/14 new triple (781, 0:00:00.092789) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (781, 0:00:00.008954) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (781, 0:00:00.009404) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (781, 0:00:00.009810) -- INFO - ----- analyze "and" phenomena (2): 2/36 new triples (783, 0:00:00.234169) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (781, 0:00:00.017854) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (781, 0:00:00.016841) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (781, 0:00:00.017688) +- INFO - ----- analyze "and" phenomena (2): 2/36 new triples (783, 0:00:00.427580) - INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 42/54 new triples (825, 0:00:00.155696) -- DEBUG - ----- extract action properties (2): 0/0 new triple (825, 0:00:00.077460) +- INFO - ----- extract action properties (1): 42/54 new triples (825, 0:00:00.432785) +- DEBUG - ----- extract action properties (2): 0/0 new triple (825, 0:00:00.154222) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (825, 0:00:00.029205) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (825, 0:00:00.029454) +- DEBUG - ----- extract composite classes (1): 0/0 new triple (825, 0:00:00.046664) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (825, 0:00:00.038764) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 30/34 new triples (855, 0:00:00.201572) -- INFO - ----- extract ODRL rules: 15/48 new triples (870, 0:00:00.218450) +- INFO - ----- extract ODRL actions: 30/34 new triples (855, 0:00:00.335047) +- INFO - ----- extract ODRL rules: 15/48 new triples (870, 0:00:00.384498) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction - INFO - ----- 189 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 2/2 new triples (872, 0:00:00.100683) +- INFO - ----- generate ODRL rule: 2/2 new triples (872, 0:00:00.129714) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_generation.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation - INFO - ----- 2 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 2 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - *** sentence 8 *** @@ -752,7 +287,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s06.stog.amr.ttl (556) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00.ttl +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00.ttl - INFO - ----- Sentence (id): asail_odrl_sentences-06 - INFO - ----- Sentence (text): John is not allowed to play the movie. - INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) @@ -761,80 +296,80 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (556, 0:00:00.027961) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (556, 0:00:00.032254) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (561, 0:00:00.101922) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (561, 0:00:00.143506) -- INFO - ----- reclassify-concept-3: 4/4 new triples (565, 0:00:00.042200) -- INFO - ----- reclassify-concept-4: 4/4 new triples (569, 0:00:00.056105) -- INFO - ----- reclassify-concept-5: 4/4 new triples (573, 0:00:00.045104) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (573, 0:00:00.054448) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (590, 0:00:00.024976) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (590, 0:00:00.055960) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (602, 0:00:00.036936) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (602, 0:00:00.028925) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (611, 0:00:00.085373) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (611, 0:00:00.059857) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (616, 0:00:00.054538) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (616, 0:00:00.076334) -- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (621, 0:00:00.064093) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (626, 0:00:00.033742) -- INFO - ----- add-amr-root: 5/5 new triples (631, 0:00:00.026122) +- INFO - ----- reclassify-concept-1: 5/5 new triples (561, 0:00:00.117564) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (561, 0:00:00.068669) +- INFO - ----- reclassify-concept-3: 4/4 new triples (565, 0:00:00.065483) +- INFO - ----- reclassify-concept-4: 4/4 new triples (569, 0:00:00.065030) +- INFO - ----- reclassify-concept-5: 4/4 new triples (573, 0:00:00.056456) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (573, 0:00:00.050287) +- INFO - ----- reclassify-existing-variable: 17/17 new triples (590, 0:00:00.044680) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (590, 0:00:00.071238) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (602, 0:00:00.033524) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (602, 0:00:00.068183) +- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (611, 0:00:00.121845) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (611, 0:00:00.125342) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (616, 0:00:00.137584) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (616, 0:00:00.129637) +- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (621, 0:00:00.132502) +- INFO - ----- update-amr-edge-role-1: 5/5 new triples (626, 0:00:00.060618) +- INFO - ----- add-amr-root: 5/5 new triples (631, 0:00:00.052143) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing - INFO - ----- 75 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 12/12 new triples (643, 0:00:00.050741) -- INFO - ----- extract atom individuals: 8/8 new triples (651, 0:00:00.042407) -- INFO - ----- extract atomic properties: 13/13 new triples (664, 0:00:00.034941) -- INFO - ----- extract atom values: 10/10 new triples (674, 0:00:00.046425) -- INFO - ----- extract atom phenomena: 7/7 new triples (681, 0:00:00.034551) -- INFO - ----- propagate atom relations: 11/28 new triples (692, 0:00:00.306689) +- INFO - ----- extract atom classes: 12/12 new triples (643, 0:00:00.208224) +- INFO - ----- extract atom individuals: 8/8 new triples (651, 0:00:00.072742) +- INFO - ----- extract atomic properties: 13/13 new triples (664, 0:00:00.073578) +- INFO - ----- extract atom values: 10/10 new triples (674, 0:00:00.090931) +- INFO - ----- extract atom phenomena: 7/7 new triples (681, 0:00:00.066821) +- INFO - ----- propagate atom relations: 11/28 new triples (692, 0:00:00.516397) - INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/5 new triple (693, 0:00:00.037032) -- DEBUG - ----- reclassify argument property to class: 0/0 new triple (693, 0:00:00.030727) +- INFO - ----- classify modality phenomena: 1/5 new triple (693, 0:00:00.052351) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (693, 0:00:00.033847) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (693, 0:00:00.006383) -- INFO - ----- analyze "polarity" phenomena (2): 13/30 new triples (706, 0:00:00.098694) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (706, 0:00:00.012790) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (706, 0:00:00.028224) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (706, 0:00:00.030428) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (706, 0:00:00.007421) -- INFO - ----- classify modality phenomena: 1/17 new triple (707, 0:00:00.057935) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (693, 0:00:00.010563) +- INFO - ----- analyze "polarity" phenomena (2): 13/30 new triples (706, 0:00:00.126774) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (706, 0:00:00.013951) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (706, 0:00:00.031805) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (706, 0:00:00.037012) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (706, 0:00:00.008572) +- INFO - ----- classify modality phenomena: 1/17 new triple (707, 0:00:00.078294) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (707, 0:00:00.009561) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (707, 0:00:00.011660) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (707, 0:00:00.013393) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (707, 0:00:00.009275) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (707, 0:00:00.017230) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (707, 0:00:00.015134) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (707, 0:00:00.013471) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (707, 0:00:00.014134) - INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 20/25 new triples (727, 0:00:00.087846) -- DEBUG - ----- extract action properties (2): 0/0 new triple (727, 0:00:00.076787) +- INFO - ----- extract action properties (1): 20/25 new triples (727, 0:00:00.143266) +- DEBUG - ----- extract action properties (2): 0/0 new triple (727, 0:00:00.132916) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (727, 0:00:00.030492) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (727, 0:00:00.020503) +- DEBUG - ----- extract composite classes (1): 0/0 new triple (727, 0:00:00.039463) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (727, 0:00:00.035127) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 15/17 new triples (742, 0:00:00.109914) -- INFO - ----- extract ODRL rules: 12/24 new triples (754, 0:00:00.145096) +- INFO - ----- extract ODRL actions: 15/17 new triples (742, 0:00:00.171956) +- INFO - ----- extract ODRL rules: 12/24 new triples (754, 0:00:00.221223) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction - INFO - ----- 123 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (755, 0:00:00.145670) +- INFO - ----- generate ODRL rule: 1/1 new triple (755, 0:00:00.081699) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_generation.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation - INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 1 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - *** sentence 9 *** @@ -850,7 +385,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s04.stog.amr.ttl (560) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00.ttl +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00.ttl - INFO - ----- Sentence (id): asail_odrl_sentences-04 - INFO - ----- Sentence (text): Movie9899 can be displayed only in Germany. - INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) @@ -859,80 +394,80 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (560, 0:00:00.025841) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (560, 0:00:00.031062) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (565, 0:00:00.107265) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (565, 0:00:00.055208) -- INFO - ----- reclassify-concept-3: 4/4 new triples (569, 0:00:00.043206) -- INFO - ----- reclassify-concept-4: 8/8 new triples (577, 0:00:00.067589) -- INFO - ----- reclassify-concept-5: 4/4 new triples (581, 0:00:00.043142) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (581, 0:00:00.047258) -- INFO - ----- reclassify-existing-variable: 22/22 new triples (603, 0:00:00.026711) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (603, 0:00:00.046535) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 15/15 new triples (618, 0:00:00.030873) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (618, 0:00:00.028962) -- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (630, 0:00:00.077822) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (630, 0:00:00.065901) -- INFO - ----- add-amr-edge-for-name-relation: 10/10 new triples (640, 0:00:00.064299) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (640, 0:00:00.068860) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (640, 0:00:00.066872) -- INFO - ----- update-amr-edge-role-1: 6/6 new triples (646, 0:00:00.036783) -- INFO - ----- add-amr-root: 5/5 new triples (651, 0:00:00.024256) +- INFO - ----- reclassify-concept-1: 5/5 new triples (565, 0:00:00.124143) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (565, 0:00:00.065537) +- INFO - ----- reclassify-concept-3: 4/4 new triples (569, 0:00:00.054078) +- INFO - ----- reclassify-concept-4: 8/8 new triples (577, 0:00:00.065844) +- INFO - ----- reclassify-concept-5: 4/4 new triples (581, 0:00:00.056027) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (581, 0:00:00.051311) +- INFO - ----- reclassify-existing-variable: 22/22 new triples (603, 0:00:00.034142) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (603, 0:00:00.059658) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 15/15 new triples (618, 0:00:00.037887) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (618, 0:00:00.049040) +- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (630, 0:00:00.221969) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (630, 0:00:00.106610) +- INFO - ----- add-amr-edge-for-name-relation: 10/10 new triples (640, 0:00:00.085317) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (640, 0:00:00.081645) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (640, 0:00:00.082456) +- INFO - ----- update-amr-edge-role-1: 6/6 new triples (646, 0:00:00.052059) +- INFO - ----- add-amr-root: 5/5 new triples (651, 0:00:00.029806) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing - INFO - ----- 91 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 18/18 new triples (669, 0:00:00.078085) -- INFO - ----- extract atom individuals: 16/16 new triples (685, 0:00:00.062115) -- INFO - ----- extract atomic properties: 13/13 new triples (698, 0:00:00.037271) -- INFO - ----- extract atom values: 10/10 new triples (708, 0:00:00.046755) -- INFO - ----- extract atom phenomena: 7/7 new triples (715, 0:00:00.029719) -- INFO - ----- propagate atom relations: 15/52 new triples (730, 0:00:00.534708) +- INFO - ----- extract atom classes: 18/18 new triples (669, 0:00:00.107792) +- INFO - ----- extract atom individuals: 16/16 new triples (685, 0:00:00.081326) +- INFO - ----- extract atomic properties: 13/13 new triples (698, 0:00:00.039601) +- INFO - ----- extract atom values: 10/10 new triples (708, 0:00:00.066263) +- INFO - ----- extract atom phenomena: 7/7 new triples (715, 0:00:00.048086) +- INFO - ----- propagate atom relations: 15/52 new triples (730, 0:00:00.795277) - INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/3 new triple (731, 0:00:00.031784) -- DEBUG - ----- reclassify argument property to class: 0/0 new triple (731, 0:00:00.024493) +- INFO - ----- classify modality phenomena: 1/3 new triple (731, 0:00:00.037194) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (731, 0:00:00.027115) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (731, 0:00:00.006540) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (731, 0:00:00.011221) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (731, 0:00:00.016104) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (731, 0:00:00.026456) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (731, 0:00:00.028681) -- INFO - ----- analyze modifier phenomena (mod): 21/25 new triples (752, 0:00:00.073673) -- DEBUG - ----- classify modality phenomena: 0/6 new triple (752, 0:00:00.045102) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (731, 0:00:00.010507) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (731, 0:00:00.012601) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (731, 0:00:00.012261) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (731, 0:00:00.044323) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (731, 0:00:00.029417) +- INFO - ----- analyze modifier phenomena (mod): 21/25 new triples (752, 0:00:00.093410) +- DEBUG - ----- classify modality phenomena: 0/6 new triple (752, 0:00:00.052332) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (752, 0:00:00.014088) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (752, 0:00:00.012497) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (752, 0:00:00.012972) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (752, 0:00:00.010384) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (752, 0:00:00.012753) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (752, 0:00:00.010547) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (752, 0:00:00.009605) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (752, 0:00:00.010843) - INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 21/27 new triples (773, 0:00:00.101998) -- DEBUG - ----- extract action properties (2): 0/0 new triple (773, 0:00:00.086007) +- INFO - ----- extract action properties (1): 21/27 new triples (773, 0:00:00.101105) +- DEBUG - ----- extract action properties (2): 0/0 new triple (773, 0:00:00.098739) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (773, 0:00:00.025220) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (773, 0:00:00.026838) +- DEBUG - ----- extract composite classes (1): 0/0 new triple (773, 0:00:00.024886) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (773, 0:00:00.028170) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 11/12 new triples (784, 0:00:00.103228) -- INFO - ----- extract ODRL rules: 11/22 new triples (795, 0:00:00.129749) +- INFO - ----- extract ODRL actions: 11/12 new triples (784, 0:00:00.133633) +- INFO - ----- extract ODRL rules: 11/22 new triples (795, 0:00:00.221301) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction - INFO - ----- 144 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (796, 0:00:00.055917) +- INFO - ----- generate ODRL rule: 1/1 new triple (796, 0:00:00.092308) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_generation.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation - INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-9/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 1 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - *** sentence 10 *** @@ -948,7 +483,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s01.stog.amr.ttl (551) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00.ttl +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00.ttl - INFO - ----- Sentence (id): asail_odrl_sentences-01 - INFO - ----- Sentence (text): Movie9898 can be used. - INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) @@ -957,80 +492,80 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (551, 0:00:00.030674) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (551, 0:00:00.121220) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (556, 0:00:00.111339) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (556, 0:00:00.052938) -- INFO - ----- reclassify-concept-3: 4/4 new triples (560, 0:00:00.042959) -- INFO - ----- reclassify-concept-4: 4/4 new triples (564, 0:00:00.061446) -- DEBUG - ----- reclassify-concept-5: 0/0 new triple (564, 0:00:00.043281) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (564, 0:00:00.039436) -- INFO - ----- reclassify-existing-variable: 13/13 new triples (577, 0:00:00.024338) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (577, 0:00:00.055740) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 9/9 new triples (586, 0:00:00.029325) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (586, 0:00:00.029466) -- INFO - ----- add-amr-edge-for-core-relation: 6/6 new triples (592, 0:00:00.170451) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (592, 0:00:00.070387) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (597, 0:00:00.059541) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (597, 0:00:00.066446) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (597, 0:00:00.078870) -- INFO - ----- update-amr-edge-role-1: 3/3 new triples (600, 0:00:00.026585) -- INFO - ----- add-amr-root: 5/5 new triples (605, 0:00:00.022354) +- INFO - ----- reclassify-concept-1: 5/5 new triples (556, 0:00:00.149905) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (556, 0:00:00.093141) +- INFO - ----- reclassify-concept-3: 4/4 new triples (560, 0:00:00.071678) +- INFO - ----- reclassify-concept-4: 4/4 new triples (564, 0:00:00.091931) +- DEBUG - ----- reclassify-concept-5: 0/0 new triple (564, 0:00:00.068338) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (564, 0:00:00.070434) +- INFO - ----- reclassify-existing-variable: 13/13 new triples (577, 0:00:00.045789) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (577, 0:00:00.081733) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 9/9 new triples (586, 0:00:00.052120) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (586, 0:00:00.046479) +- INFO - ----- add-amr-edge-for-core-relation: 6/6 new triples (592, 0:00:00.129800) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (592, 0:00:00.109495) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (597, 0:00:00.104196) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (597, 0:00:00.078680) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (597, 0:00:00.086523) +- INFO - ----- update-amr-edge-role-1: 3/3 new triples (600, 0:00:00.033046) +- INFO - ----- add-amr-root: 5/5 new triples (605, 0:00:00.027163) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing - INFO - ----- 54 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 6/6 new triples (611, 0:00:00.029605) -- INFO - ----- extract atom individuals: 8/8 new triples (619, 0:00:00.037580) -- INFO - ----- extract atomic properties: 12/12 new triples (631, 0:00:00.037960) -- INFO - ----- extract atom values: 5/5 new triples (636, 0:00:00.021738) -- INFO - ----- extract atom phenomena: 7/7 new triples (643, 0:00:00.032099) -- INFO - ----- propagate atom relations: 7/22 new triples (650, 0:00:00.245275) +- INFO - ----- extract atom classes: 6/6 new triples (611, 0:00:00.037338) +- INFO - ----- extract atom individuals: 8/8 new triples (619, 0:00:00.044352) +- INFO - ----- extract atomic properties: 12/12 new triples (631, 0:00:00.044326) +- INFO - ----- extract atom values: 5/5 new triples (636, 0:00:00.030005) +- INFO - ----- extract atom phenomena: 7/7 new triples (643, 0:00:00.038169) +- INFO - ----- propagate atom relations: 7/22 new triples (650, 0:00:00.328809) - INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/3 new triple (651, 0:00:00.032845) -- DEBUG - ----- reclassify argument property to class: 0/0 new triple (651, 0:00:00.026233) +- INFO - ----- classify modality phenomena: 1/3 new triple (651, 0:00:00.047170) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (651, 0:00:00.030940) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (651, 0:00:00.007286) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (651, 0:00:00.011809) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (651, 0:00:00.012496) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (651, 0:00:00.024125) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (651, 0:00:00.026308) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (651, 0:00:00.008176) -- DEBUG - ----- classify modality phenomena: 0/6 new triple (651, 0:00:00.045440) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (651, 0:00:00.010806) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (651, 0:00:00.019964) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (651, 0:00:00.019598) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (651, 0:00:00.043533) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (651, 0:00:00.045512) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (651, 0:00:00.011665) +- DEBUG - ----- classify modality phenomena: 0/6 new triple (651, 0:00:00.077697) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (651, 0:00:00.009726) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (651, 0:00:00.009044) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (651, 0:00:00.008541) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (651, 0:00:00.010269) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (651, 0:00:00.015145) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (651, 0:00:00.013342) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (651, 0:00:00.010399) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (651, 0:00:00.010638) - INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 17/20 new triples (668, 0:00:00.090015) -- DEBUG - ----- extract action properties (2): 0/0 new triple (668, 0:00:00.083099) +- INFO - ----- extract action properties (1): 17/20 new triples (668, 0:00:00.111274) +- DEBUG - ----- extract action properties (2): 0/0 new triple (668, 0:00:00.095395) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (668, 0:00:00.020046) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (668, 0:00:00.030725) +- DEBUG - ----- extract composite classes (1): 0/0 new triple (668, 0:00:00.024676) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (668, 0:00:00.023553) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 11/12 new triples (679, 0:00:00.110710) -- INFO - ----- extract ODRL rules: 11/22 new triples (690, 0:00:00.139374) +- INFO - ----- extract ODRL actions: 11/12 new triples (679, 0:00:00.172629) +- INFO - ----- extract ODRL rules: 11/22 new triples (690, 0:00:00.221189) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction - INFO - ----- 85 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (691, 0:00:00.059368) +- INFO - ----- generate ODRL rule: 1/1 new triple (691, 0:00:00.090224) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_generation.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation - INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-10/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 1 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - *** sentence 11 *** @@ -1046,7 +581,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s08.stog.amr.ttl (557) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00.ttl +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00.ttl - INFO - ----- Sentence (id): asail_odrl_sentences-08 - INFO - ----- Sentence (text): John is not allowed not to reproduce the Work. - INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) @@ -1055,80 +590,80 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (557, 0:00:00.034089) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (557, 0:00:00.127037) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (562, 0:00:00.101388) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (562, 0:00:00.044794) -- INFO - ----- reclassify-concept-3: 8/8 new triples (570, 0:00:00.042585) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (570, 0:00:00.127305) -- INFO - ----- reclassify-concept-5: 4/4 new triples (574, 0:00:00.040342) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (574, 0:00:00.038551) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (591, 0:00:00.024459) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (591, 0:00:00.047772) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (603, 0:00:00.029002) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (603, 0:00:00.025656) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (612, 0:00:00.082860) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (612, 0:00:00.062140) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (617, 0:00:00.056059) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (617, 0:00:00.061109) -- INFO - ----- add-amr-edge-for-polarity-relation: 8/8 new triples (625, 0:00:00.063532) -- INFO - ----- update-amr-edge-role-1: 6/6 new triples (631, 0:00:00.039065) -- INFO - ----- add-amr-root: 5/5 new triples (636, 0:00:00.023932) +- INFO - ----- reclassify-concept-1: 5/5 new triples (562, 0:00:00.158757) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (562, 0:00:00.095905) +- INFO - ----- reclassify-concept-3: 8/8 new triples (570, 0:00:00.071717) +- DEBUG - ----- reclassify-concept-4: 0/0 new triple (570, 0:00:00.089418) +- INFO - ----- reclassify-concept-5: 4/4 new triples (574, 0:00:00.068915) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (574, 0:00:00.070113) +- INFO - ----- reclassify-existing-variable: 17/17 new triples (591, 0:00:00.046562) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (591, 0:00:00.077652) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (603, 0:00:00.049402) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (603, 0:00:00.046309) +- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (612, 0:00:00.137813) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (612, 0:00:00.100839) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (617, 0:00:00.102410) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (617, 0:00:00.066936) +- INFO - ----- add-amr-edge-for-polarity-relation: 8/8 new triples (625, 0:00:00.107142) +- INFO - ----- update-amr-edge-role-1: 6/6 new triples (631, 0:00:00.052109) +- INFO - ----- add-amr-root: 5/5 new triples (636, 0:00:00.030573) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing - INFO - ----- 79 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 6/6 new triples (642, 0:00:00.034409) -- INFO - ----- extract atom individuals: 8/8 new triples (650, 0:00:00.042113) -- INFO - ----- extract atomic properties: 25/25 new triples (675, 0:00:00.072050) -- INFO - ----- extract atom values: 10/10 new triples (685, 0:00:00.042541) -- INFO - ----- extract atom phenomena: 7/7 new triples (692, 0:00:00.042065) -- INFO - ----- propagate atom relations: 12/30 new triples (704, 0:00:00.302778) +- INFO - ----- extract atom classes: 6/6 new triples (642, 0:00:00.042266) +- INFO - ----- extract atom individuals: 8/8 new triples (650, 0:00:00.044864) +- INFO - ----- extract atomic properties: 25/25 new triples (675, 0:00:00.071456) +- INFO - ----- extract atom values: 10/10 new triples (685, 0:00:00.055338) +- INFO - ----- extract atom phenomena: 7/7 new triples (692, 0:00:00.035825) +- INFO - ----- propagate atom relations: 12/30 new triples (704, 0:00:00.411353) - INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/5 new triple (705, 0:00:00.034434) -- INFO - ----- reclassify argument property to class: 9/10 new triples (714, 0:00:00.067489) +- INFO - ----- classify modality phenomena: 1/5 new triple (705, 0:00:00.050821) +- INFO - ----- reclassify argument property to class: 9/10 new triples (714, 0:00:00.071812) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- INFO - ----- analyze "polarity" phenomena (1): 36/44 new triples (750, 0:00:00.084180) -- INFO - ----- analyze "polarity" phenomena (2): 14/34 new triples (764, 0:00:00.092951) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (764, 0:00:00.012847) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (764, 0:00:00.037786) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (764, 0:00:00.028105) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (764, 0:00:00.008984) -- INFO - ----- classify modality phenomena: 1/23 new triple (765, 0:00:00.058036) +- INFO - ----- analyze "polarity" phenomena (1): 36/44 new triples (750, 0:00:00.121602) +- INFO - ----- analyze "polarity" phenomena (2): 14/34 new triples (764, 0:00:00.179426) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (764, 0:00:00.057351) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (764, 0:00:00.067646) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (764, 0:00:00.043320) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (764, 0:00:00.012341) +- INFO - ----- classify modality phenomena: 1/23 new triple (765, 0:00:00.098171) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (765, 0:00:00.011863) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (765, 0:00:00.013789) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (765, 0:00:00.014035) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (765, 0:00:00.009271) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (765, 0:00:00.014020) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (765, 0:00:00.014096) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (765, 0:00:00.011758) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (765, 0:00:00.013761) - INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 22/30 new triples (787, 0:00:00.091265) -- DEBUG - ----- extract action properties (2): 0/0 new triple (787, 0:00:00.073292) +- INFO - ----- extract action properties (1): 22/30 new triples (787, 0:00:00.168400) +- DEBUG - ----- extract action properties (2): 0/0 new triple (787, 0:00:00.093213) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (787, 0:00:00.030147) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (787, 0:00:00.024339) +- DEBUG - ----- extract composite classes (1): 0/0 new triple (787, 0:00:00.032444) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (787, 0:00:00.023011) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 15/17 new triples (802, 0:00:00.106634) -- INFO - ----- extract ODRL rules: 12/24 new triples (814, 0:00:00.123025) +- INFO - ----- extract ODRL actions: 15/17 new triples (802, 0:00:00.131461) +- INFO - ----- extract ODRL rules: 12/24 new triples (814, 0:00:00.166813) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction - INFO - ----- 178 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (815, 0:00:00.057142) +- INFO - ----- generate ODRL rule: 1/1 new triple (815, 0:00:00.095986) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_generation.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation - INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-11/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 1 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - *** sentence 12 *** @@ -1144,7 +679,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s13.stog.amr.ttl (554) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00.ttl +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00.ttl - INFO - ----- Sentence (id): policy_asail_odrl_sentences-13 - INFO - ----- Sentence (text): You may use the Work. - INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) @@ -1153,80 +688,80 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (554, 0:00:00.107895) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (554, 0:00:00.039603) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (559, 0:00:00.099785) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (559, 0:00:00.047256) -- INFO - ----- reclassify-concept-3: 8/8 new triples (567, 0:00:00.047055) -- INFO - ----- reclassify-concept-4: 4/4 new triples (571, 0:00:00.058072) -- DEBUG - ----- reclassify-concept-5: 0/0 new triple (571, 0:00:00.046498) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (571, 0:00:00.038013) -- INFO - ----- reclassify-existing-variable: 16/16 new triples (587, 0:00:00.027719) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (587, 0:00:00.046200) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (599, 0:00:00.033486) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (599, 0:00:00.034636) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (608, 0:00:00.073054) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (608, 0:00:00.062014) -- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (608, 0:00:00.066266) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (608, 0:00:00.069440) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (608, 0:00:00.060075) -- INFO - ----- update-amr-edge-role-1: 3/3 new triples (611, 0:00:00.024186) -- INFO - ----- add-amr-root: 5/5 new triples (616, 0:00:00.027239) +- INFO - ----- reclassify-concept-1: 5/5 new triples (559, 0:00:00.156694) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (559, 0:00:00.087060) +- INFO - ----- reclassify-concept-3: 8/8 new triples (567, 0:00:00.067393) +- INFO - ----- reclassify-concept-4: 4/4 new triples (571, 0:00:00.082399) +- DEBUG - ----- reclassify-concept-5: 0/0 new triple (571, 0:00:00.055835) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (571, 0:00:00.045937) +- INFO - ----- reclassify-existing-variable: 16/16 new triples (587, 0:00:00.034589) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (587, 0:00:00.056955) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (599, 0:00:00.034625) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (599, 0:00:00.049032) +- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (608, 0:00:00.128483) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (608, 0:00:00.104772) +- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (608, 0:00:00.102832) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (608, 0:00:00.099805) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (608, 0:00:00.108690) +- INFO - ----- update-amr-edge-role-1: 3/3 new triples (611, 0:00:00.040420) +- INFO - ----- add-amr-root: 5/5 new triples (616, 0:00:00.036635) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing - INFO - ----- 62 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 6/6 new triples (622, 0:00:00.033096) -- DEBUG - ----- extract atom individuals: 0/0 new triple (622, 0:00:00.011494) -- INFO - ----- extract atomic properties: 24/24 new triples (646, 0:00:00.064106) -- DEBUG - ----- extract atom values: 0/0 new triple (646, 0:00:00.007723) -- INFO - ----- extract atom phenomena: 7/7 new triples (653, 0:00:00.034743) -- INFO - ----- propagate atom relations: 5/12 new triples (658, 0:00:00.209156) +- INFO - ----- extract atom classes: 6/6 new triples (622, 0:00:00.052713) +- DEBUG - ----- extract atom individuals: 0/0 new triple (622, 0:00:00.021117) +- INFO - ----- extract atomic properties: 24/24 new triples (646, 0:00:00.163454) +- DEBUG - ----- extract atom values: 0/0 new triple (646, 0:00:00.008715) +- INFO - ----- extract atom phenomena: 7/7 new triples (653, 0:00:00.054215) +- INFO - ----- propagate atom relations: 5/12 new triples (658, 0:00:00.261123) - INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/3 new triple (659, 0:00:00.031230) -- INFO - ----- reclassify argument property to class: 9/10 new triples (668, 0:00:00.053812) +- INFO - ----- classify modality phenomena: 1/3 new triple (659, 0:00:00.053212) +- INFO - ----- reclassify argument property to class: 9/10 new triples (668, 0:00:00.091473) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (668, 0:00:00.012087) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (668, 0:00:00.015716) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (668, 0:00:00.012183) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (668, 0:00:00.031943) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (668, 0:00:00.043288) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (668, 0:00:00.011585) -- DEBUG - ----- classify modality phenomena: 0/6 new triple (668, 0:00:00.055315) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (668, 0:00:00.010138) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (668, 0:00:00.020108) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (668, 0:00:00.018809) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (668, 0:00:00.045724) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (668, 0:00:00.044091) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (668, 0:00:00.011540) +- DEBUG - ----- classify modality phenomena: 0/6 new triple (668, 0:00:00.075101) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (668, 0:00:00.010242) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (668, 0:00:00.012479) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (668, 0:00:00.009408) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (668, 0:00:00.010104) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (668, 0:00:00.015640) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (668, 0:00:00.015564) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (668, 0:00:00.014283) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (668, 0:00:00.015380) - INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 19/23 new triples (687, 0:00:00.101009) -- DEBUG - ----- extract action properties (2): 0/0 new triple (687, 0:00:00.082616) +- INFO - ----- extract action properties (1): 19/23 new triples (687, 0:00:00.126863) +- DEBUG - ----- extract action properties (2): 0/0 new triple (687, 0:00:00.097924) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (687, 0:00:00.023491) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (687, 0:00:00.019130) +- DEBUG - ----- extract composite classes (1): 0/0 new triple (687, 0:00:00.030775) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (687, 0:00:00.034414) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 14/15 new triples (701, 0:00:00.106554) -- INFO - ----- extract ODRL rules: 12/24 new triples (713, 0:00:00.125174) +- INFO - ----- extract ODRL actions: 14/15 new triples (701, 0:00:00.173660) +- INFO - ----- extract ODRL rules: 12/24 new triples (713, 0:00:00.219572) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction - INFO - ----- 97 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (714, 0:00:00.055131) +- INFO - ----- generate ODRL rule: 1/1 new triple (714, 0:00:00.084881) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_generation.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation - INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-12/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 1 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - *** sentence 13 *** @@ -1242,7 +777,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s17.stog.amr.ttl (559) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00.ttl +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00.ttl - INFO - ----- Sentence (id): asail_odrl_sentences-17 - INFO - ----- Sentence (text): You must keep the license intact. - INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) @@ -1251,80 +786,80 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (559, 0:00:00.024571) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (559, 0:00:00.040346) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (564, 0:00:00.097195) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (564, 0:00:00.045705) -- INFO - ----- reclassify-concept-3: 4/4 new triples (568, 0:00:00.046634) -- INFO - ----- reclassify-concept-4: 12/12 new triples (580, 0:00:00.050314) -- DEBUG - ----- reclassify-concept-5: 0/0 new triple (580, 0:00:00.048668) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (580, 0:00:00.048945) -- INFO - ----- reclassify-existing-variable: 20/20 new triples (600, 0:00:00.030205) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (600, 0:00:00.044280) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 15/15 new triples (615, 0:00:00.028661) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (615, 0:00:00.033372) -- INFO - ----- add-amr-edge-for-core-relation: 15/15 new triples (630, 0:00:00.078051) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (630, 0:00:00.060962) -- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (630, 0:00:00.063182) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (630, 0:00:00.055179) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (630, 0:00:00.066420) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (635, 0:00:00.038367) -- INFO - ----- add-amr-root: 5/5 new triples (640, 0:00:00.028683) +- INFO - ----- reclassify-concept-1: 5/5 new triples (564, 0:00:00.172014) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (564, 0:00:00.083664) +- INFO - ----- reclassify-concept-3: 4/4 new triples (568, 0:00:00.070342) +- INFO - ----- reclassify-concept-4: 12/12 new triples (580, 0:00:00.089960) +- DEBUG - ----- reclassify-concept-5: 0/0 new triple (580, 0:00:00.071144) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (580, 0:00:00.066193) +- INFO - ----- reclassify-existing-variable: 20/20 new triples (600, 0:00:00.045931) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (600, 0:00:00.077701) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 15/15 new triples (615, 0:00:00.050398) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (615, 0:00:00.046961) +- INFO - ----- add-amr-edge-for-core-relation: 15/15 new triples (630, 0:00:00.140314) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (630, 0:00:00.112652) +- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (630, 0:00:00.102172) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (630, 0:00:00.184226) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (630, 0:00:00.111890) +- INFO - ----- update-amr-edge-role-1: 5/5 new triples (635, 0:00:00.053717) +- INFO - ----- add-amr-root: 5/5 new triples (640, 0:00:00.036661) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing - INFO - ----- 81 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 18/18 new triples (658, 0:00:00.082779) -- DEBUG - ----- extract atom individuals: 0/0 new triple (658, 0:00:00.011500) -- INFO - ----- extract atomic properties: 13/13 new triples (671, 0:00:00.033052) -- DEBUG - ----- extract atom values: 0/0 new triple (671, 0:00:00.004674) -- INFO - ----- extract atom phenomena: 7/7 new triples (678, 0:00:00.037391) -- INFO - ----- propagate atom relations: 9/20 new triples (687, 0:00:00.243323) +- INFO - ----- extract atom classes: 18/18 new triples (658, 0:00:00.098877) +- DEBUG - ----- extract atom individuals: 0/0 new triple (658, 0:00:00.014792) +- INFO - ----- extract atomic properties: 13/13 new triples (671, 0:00:00.043258) +- DEBUG - ----- extract atom values: 0/0 new triple (671, 0:00:00.006637) +- INFO - ----- extract atom phenomena: 7/7 new triples (678, 0:00:00.055834) +- INFO - ----- propagate atom relations: 9/20 new triples (687, 0:00:00.354113) - INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/5 new triple (688, 0:00:00.041010) -- DEBUG - ----- reclassify argument property to class: 0/0 new triple (688, 0:00:00.024986) +- INFO - ----- classify modality phenomena: 1/5 new triple (688, 0:00:00.040114) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (688, 0:00:00.027549) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (688, 0:00:00.009920) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (688, 0:00:00.011432) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (688, 0:00:00.016046) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (688, 0:00:00.034844) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (688, 0:00:00.029266) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (688, 0:00:00.007794) -- DEBUG - ----- classify modality phenomena: 0/10 new triple (688, 0:00:00.049291) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (688, 0:00:00.011590) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (688, 0:00:00.012689) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (688, 0:00:00.015498) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (688, 0:00:00.038870) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (688, 0:00:00.045977) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (688, 0:00:00.012291) +- DEBUG - ----- classify modality phenomena: 0/10 new triple (688, 0:00:00.060394) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (688, 0:00:00.080274) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (688, 0:00:00.012391) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (688, 0:00:00.013462) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (688, 0:00:00.009866) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (688, 0:00:00.010565) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (688, 0:00:00.010241) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (688, 0:00:00.010402) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (688, 0:00:00.018154) - INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 18/21 new triples (706, 0:00:00.098050) -- INFO - ----- extract action properties (2): 22/26 new triples (728, 0:00:00.164277) +- INFO - ----- extract action properties (1): 18/21 new triples (706, 0:00:00.117462) +- INFO - ----- extract action properties (2): 22/26 new triples (728, 0:00:00.193620) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (728, 0:00:00.028200) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (728, 0:00:00.026939) +- DEBUG - ----- extract composite classes (1): 0/0 new triple (728, 0:00:00.038217) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (728, 0:00:00.033057) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 13/15 new triples (741, 0:00:00.109167) -- INFO - ----- extract ODRL rules: 12/24 new triples (753, 0:00:00.137018) +- INFO - ----- extract ODRL actions: 13/15 new triples (741, 0:00:00.153904) +- INFO - ----- extract ODRL rules: 12/24 new triples (753, 0:00:00.156845) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction - INFO - ----- 113 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (754, 0:00:00.050695) +- INFO - ----- generate ODRL rule: 1/1 new triple (754, 0:00:00.055252) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_generation.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation - INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-13/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 1 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - *** sentence 14 *** @@ -1340,7 +875,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s16.stog.amr.ttl (592) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00.ttl +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00.ttl - INFO - ----- Sentence (id): asail_odrl_sentences-16 - INFO - ----- Sentence (text): You must keep intact all copyright notices for the Work and give the Original Author credit. - INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) @@ -1349,80 +884,80 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (592, 0:00:00.026903) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (592, 0:00:00.024589) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (602, 0:00:00.163087) -- INFO - ----- reclassify-concept-2: 4/4 new triples (606, 0:00:00.050933) -- INFO - ----- reclassify-concept-3: 24/24 new triples (630, 0:00:00.057918) -- INFO - ----- reclassify-concept-4: 12/12 new triples (642, 0:00:00.064440) -- INFO - ----- reclassify-concept-5: 4/4 new triples (646, 0:00:00.046063) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (646, 0:00:00.040043) -- INFO - ----- reclassify-existing-variable: 52/52 new triples (698, 0:00:00.036677) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (698, 0:00:00.043041) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 39/39 new triples (737, 0:00:00.050571) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (737, 0:00:00.028823) -- INFO - ----- add-amr-edge-for-core-relation: 42/42 new triples (779, 0:00:00.110263) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (779, 0:00:00.067482) -- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (779, 0:00:00.130007) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (779, 0:00:00.062908) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (779, 0:00:00.058902) -- INFO - ----- update-amr-edge-role-1: 14/14 new triples (793, 0:00:00.067340) -- INFO - ----- add-amr-root: 5/5 new triples (798, 0:00:00.021594) +- INFO - ----- reclassify-concept-1: 10/10 new triples (602, 0:00:00.171861) +- INFO - ----- reclassify-concept-2: 4/4 new triples (606, 0:00:00.070944) +- INFO - ----- reclassify-concept-3: 24/24 new triples (630, 0:00:00.075919) +- INFO - ----- reclassify-concept-4: 12/12 new triples (642, 0:00:00.100797) +- INFO - ----- reclassify-concept-5: 4/4 new triples (646, 0:00:00.068407) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (646, 0:00:00.072422) +- INFO - ----- reclassify-existing-variable: 52/52 new triples (698, 0:00:00.051483) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (698, 0:00:00.147419) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 39/39 new triples (737, 0:00:00.054176) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (737, 0:00:00.046730) +- INFO - ----- add-amr-edge-for-core-relation: 42/42 new triples (779, 0:00:00.197069) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (779, 0:00:00.124301) +- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (779, 0:00:00.108201) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (779, 0:00:00.115010) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (779, 0:00:00.118008) +- INFO - ----- update-amr-edge-role-1: 14/14 new triples (793, 0:00:00.117624) +- INFO - ----- add-amr-root: 5/5 new triples (798, 0:00:00.039748) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing - INFO - ----- 206 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 24/24 new triples (822, 0:00:00.116639) -- DEBUG - ----- extract atom individuals: 0/0 new triple (822, 0:00:00.018664) -- INFO - ----- extract atomic properties: 86/86 new triples (908, 0:00:00.214982) -- DEBUG - ----- extract atom values: 0/0 new triple (908, 0:00:00.004620) -- INFO - ----- extract atom phenomena: 14/14 new triples (922, 0:00:00.058280) -- INFO - ----- propagate atom relations: 20/56 new triples (942, 0:00:00.709389) +- INFO - ----- extract atom classes: 24/24 new triples (822, 0:00:00.170886) +- DEBUG - ----- extract atom individuals: 0/0 new triple (822, 0:00:00.025853) +- INFO - ----- extract atomic properties: 86/86 new triples (908, 0:00:00.347248) +- DEBUG - ----- extract atom values: 0/0 new triple (908, 0:00:00.007961) +- INFO - ----- extract atom phenomena: 14/14 new triples (922, 0:00:00.097434) +- INFO - ----- propagate atom relations: 20/56 new triples (942, 0:00:00.906606) - INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/5 new triple (943, 0:00:00.031881) -- INFO - ----- reclassify argument property to class: 31/38 new triples (974, 0:00:00.126510) +- INFO - ----- classify modality phenomena: 1/5 new triple (943, 0:00:00.037154) +- INFO - ----- reclassify argument property to class: 31/38 new triples (974, 0:00:00.223557) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (974, 0:00:00.007260) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (974, 0:00:00.010219) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (974, 0:00:00.011134) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (974, 0:00:00.024154) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (974, 0:00:00.029192) -- INFO - ----- analyze modifier phenomena (mod): 45/52 new triples (1019, 0:00:00.146735) -- DEBUG - ----- classify modality phenomena: 0/10 new triple (1019, 0:00:00.042010) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (974, 0:00:00.007810) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (974, 0:00:00.013824) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (974, 0:00:00.013813) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (974, 0:00:00.030848) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (974, 0:00:00.032234) +- INFO - ----- analyze modifier phenomena (mod): 45/52 new triples (1019, 0:00:00.193862) +- DEBUG - ----- classify modality phenomena: 0/10 new triple (1019, 0:00:00.057073) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (1019, 0:00:00.013542) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (1019, 0:00:00.012751) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (1019, 0:00:00.011242) -- INFO - ----- analyze "and" phenomena (2): 2/28 new triples (1021, 0:00:00.217530) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (1019, 0:00:00.014239) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (1019, 0:00:00.011529) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (1019, 0:00:00.012914) +- INFO - ----- analyze "and" phenomena (2): 2/28 new triples (1021, 0:00:00.281654) - INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 41/52 new triples (1062, 0:00:00.156377) -- INFO - ----- extract action properties (2): 28/37 new triples (1090, 0:00:00.161154) +- INFO - ----- extract action properties (1): 41/52 new triples (1062, 0:00:00.252279) +- INFO - ----- extract action properties (2): 28/37 new triples (1090, 0:00:00.249275) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (1090, 0:00:00.033811) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (1090, 0:00:00.028080) +- DEBUG - ----- extract composite classes (1): 0/0 new triple (1090, 0:00:00.048456) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (1090, 0:00:00.038155) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 31/36 new triples (1121, 0:00:00.206037) -- INFO - ----- extract ODRL rules: 18/52 new triples (1139, 0:00:00.246420) +- INFO - ----- extract ODRL actions: 31/36 new triples (1121, 0:00:00.339111) +- INFO - ----- extract ODRL rules: 18/52 new triples (1139, 0:00:00.313413) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction - INFO - ----- 341 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 2/2 new triples (1141, 0:00:00.082161) +- INFO - ----- generate ODRL rule: 2/2 new triples (1141, 0:00:00.103689) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_generation.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation - INFO - ----- 2 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-14/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 2 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - *** sentence 15 *** @@ -1438,7 +973,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s02.stog.amr.ttl (555) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00.ttl +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00.ttl - INFO - ----- Sentence (id): asail_odrl_sentences-02 - INFO - ----- Sentence (text): John must play the movie. - INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) @@ -1447,80 +982,80 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (555, 0:00:00.033462) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (555, 0:00:00.049231) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (560, 0:00:00.098735) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (560, 0:00:00.049627) -- INFO - ----- reclassify-concept-3: 4/4 new triples (564, 0:00:00.042427) -- INFO - ----- reclassify-concept-4: 4/4 new triples (568, 0:00:00.067575) -- INFO - ----- reclassify-concept-5: 4/4 new triples (572, 0:00:00.048898) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (572, 0:00:00.046228) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (589, 0:00:00.027184) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (589, 0:00:00.053067) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (601, 0:00:00.030291) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (601, 0:00:00.032795) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (610, 0:00:00.075556) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (610, 0:00:00.075564) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (615, 0:00:00.073340) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (615, 0:00:00.060723) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (615, 0:00:00.070453) -- INFO - ----- update-amr-edge-role-1: 4/4 new triples (619, 0:00:00.026910) -- INFO - ----- add-amr-root: 5/5 new triples (624, 0:00:00.020954) +- INFO - ----- reclassify-concept-1: 5/5 new triples (560, 0:00:00.158560) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (560, 0:00:00.082555) +- INFO - ----- reclassify-concept-3: 4/4 new triples (564, 0:00:00.068037) +- INFO - ----- reclassify-concept-4: 4/4 new triples (568, 0:00:00.083769) +- INFO - ----- reclassify-concept-5: 4/4 new triples (572, 0:00:00.069820) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (572, 0:00:00.073447) +- INFO - ----- reclassify-existing-variable: 17/17 new triples (589, 0:00:00.044403) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (589, 0:00:00.071589) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (601, 0:00:00.046965) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (601, 0:00:00.044521) +- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (610, 0:00:00.125027) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (610, 0:00:00.104722) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (615, 0:00:00.097579) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (615, 0:00:00.101176) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (615, 0:00:00.105697) +- INFO - ----- update-amr-edge-role-1: 4/4 new triples (619, 0:00:00.047658) +- INFO - ----- add-amr-root: 5/5 new triples (624, 0:00:00.036342) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing - INFO - ----- 69 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 12/12 new triples (636, 0:00:00.066707) -- INFO - ----- extract atom individuals: 8/8 new triples (644, 0:00:00.044850) -- INFO - ----- extract atomic properties: 13/13 new triples (657, 0:00:00.061499) -- INFO - ----- extract atom values: 5/5 new triples (662, 0:00:00.043750) -- INFO - ----- extract atom phenomena: 7/7 new triples (669, 0:00:00.088598) -- INFO - ----- propagate atom relations: 10/26 new triples (679, 0:00:00.558930) +- INFO - ----- extract atom classes: 12/12 new triples (636, 0:00:00.114731) +- INFO - ----- extract atom individuals: 8/8 new triples (644, 0:00:00.240614) +- INFO - ----- extract atomic properties: 13/13 new triples (657, 0:00:00.052969) +- INFO - ----- extract atom values: 5/5 new triples (662, 0:00:00.025913) +- INFO - ----- extract atom phenomena: 7/7 new triples (669, 0:00:00.033820) +- INFO - ----- propagate atom relations: 10/26 new triples (679, 0:00:00.349579) - INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/3 new triple (680, 0:00:00.037343) -- DEBUG - ----- reclassify argument property to class: 0/0 new triple (680, 0:00:00.022247) +- INFO - ----- classify modality phenomena: 1/3 new triple (680, 0:00:00.041590) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (680, 0:00:00.024348) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (680, 0:00:00.009252) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (680, 0:00:00.014555) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (680, 0:00:00.012006) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (680, 0:00:00.025709) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (680, 0:00:00.024254) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (680, 0:00:00.007206) -- DEBUG - ----- classify modality phenomena: 0/6 new triple (680, 0:00:00.052332) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (680, 0:00:00.009373) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (680, 0:00:00.016221) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (680, 0:00:00.013365) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (680, 0:00:00.028565) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (680, 0:00:00.030221) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (680, 0:00:00.014368) +- DEBUG - ----- classify modality phenomena: 0/6 new triple (680, 0:00:00.082458) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (680, 0:00:00.010059) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (680, 0:00:00.009286) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (680, 0:00:00.008430) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (680, 0:00:00.009979) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (680, 0:00:00.020064) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (680, 0:00:00.012867) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (680, 0:00:00.014879) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (680, 0:00:00.013394) - INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 19/23 new triples (699, 0:00:00.094392) -- DEBUG - ----- extract action properties (2): 0/0 new triple (699, 0:00:00.091566) +- INFO - ----- extract action properties (1): 19/23 new triples (699, 0:00:00.133578) +- DEBUG - ----- extract action properties (2): 0/0 new triple (699, 0:00:00.102622) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (699, 0:00:00.020366) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (699, 0:00:00.021483) +- DEBUG - ----- extract composite classes (1): 0/0 new triple (699, 0:00:00.031312) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (699, 0:00:00.022576) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 14/15 new triples (713, 0:00:00.138809) -- INFO - ----- extract ODRL rules: 12/24 new triples (725, 0:00:00.313363) +- INFO - ----- extract ODRL actions: 14/15 new triples (713, 0:00:00.133835) +- INFO - ----- extract ODRL rules: 12/24 new triples (725, 0:00:00.199771) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction - INFO - ----- 101 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (726, 0:00:00.102130) +- INFO - ----- generate ODRL rule: 1/1 new triple (726, 0:00:00.070219) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_generation.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation - INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-15/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 1 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - *** sentence 16 *** @@ -1536,7 +1071,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s12.stog.amr.ttl (556) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00.ttl +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00.ttl - INFO - ----- Sentence (id): policy_asail_odrl_sentences-12 - INFO - ----- Sentence (text): You may use the movie. - INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) @@ -1545,80 +1080,80 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (556, 0:00:00.027993) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (556, 0:00:00.026205) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (561, 0:00:00.094268) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (561, 0:00:00.050510) -- INFO - ----- reclassify-concept-3: 4/4 new triples (565, 0:00:00.049287) -- INFO - ----- reclassify-concept-4: 8/8 new triples (573, 0:00:00.066930) -- DEBUG - ----- reclassify-concept-5: 0/0 new triple (573, 0:00:00.047810) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (573, 0:00:00.039645) -- INFO - ----- reclassify-existing-variable: 16/16 new triples (589, 0:00:00.030547) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (589, 0:00:00.057958) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (601, 0:00:00.060163) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (601, 0:00:00.047664) -- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (613, 0:00:00.097695) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (613, 0:00:00.060374) -- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (613, 0:00:00.069472) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (613, 0:00:00.055725) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (613, 0:00:00.073270) -- INFO - ----- update-amr-edge-role-1: 4/4 new triples (617, 0:00:00.029176) -- INFO - ----- add-amr-root: 5/5 new triples (622, 0:00:00.021368) +- INFO - ----- reclassify-concept-1: 5/5 new triples (561, 0:00:00.115884) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (561, 0:00:00.059237) +- INFO - ----- reclassify-concept-3: 4/4 new triples (565, 0:00:00.045427) +- INFO - ----- reclassify-concept-4: 8/8 new triples (573, 0:00:00.064633) +- DEBUG - ----- reclassify-concept-5: 0/0 new triple (573, 0:00:00.050019) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (573, 0:00:00.045971) +- INFO - ----- reclassify-existing-variable: 16/16 new triples (589, 0:00:00.030676) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (589, 0:00:00.053312) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (601, 0:00:00.031856) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (601, 0:00:00.049716) +- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (613, 0:00:00.124864) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (613, 0:00:00.199421) +- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (613, 0:00:00.110792) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (613, 0:00:00.099534) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (613, 0:00:00.109808) +- INFO - ----- update-amr-edge-role-1: 4/4 new triples (617, 0:00:00.046087) +- INFO - ----- add-amr-root: 5/5 new triples (622, 0:00:00.037606) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing - INFO - ----- 66 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 12/12 new triples (634, 0:00:00.052810) -- DEBUG - ----- extract atom individuals: 0/0 new triple (634, 0:00:00.016372) -- INFO - ----- extract atomic properties: 13/13 new triples (647, 0:00:00.109042) -- DEBUG - ----- extract atom values: 0/0 new triple (647, 0:00:00.007723) -- INFO - ----- extract atom phenomena: 7/7 new triples (654, 0:00:00.036303) -- INFO - ----- propagate atom relations: 7/16 new triples (661, 0:00:00.209873) +- INFO - ----- extract atom classes: 12/12 new triples (634, 0:00:00.071799) +- DEBUG - ----- extract atom individuals: 0/0 new triple (634, 0:00:00.016248) +- INFO - ----- extract atomic properties: 13/13 new triples (647, 0:00:00.040273) +- DEBUG - ----- extract atom values: 0/0 new triple (647, 0:00:00.005482) +- INFO - ----- extract atom phenomena: 7/7 new triples (654, 0:00:00.037192) +- INFO - ----- propagate atom relations: 7/16 new triples (661, 0:00:00.234886) - INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/5 new triple (662, 0:00:00.032379) -- DEBUG - ----- reclassify argument property to class: 0/0 new triple (662, 0:00:00.026298) +- INFO - ----- classify modality phenomena: 1/5 new triple (662, 0:00:00.035501) +- DEBUG - ----- reclassify argument property to class: 0/0 new triple (662, 0:00:00.028024) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (662, 0:00:00.008284) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (662, 0:00:00.011179) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (662, 0:00:00.011113) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (662, 0:00:00.025994) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (662, 0:00:00.028601) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (662, 0:00:00.009135) -- DEBUG - ----- classify modality phenomena: 0/10 new triple (662, 0:00:00.045828) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (662, 0:00:00.009868) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (662, 0:00:00.012522) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (662, 0:00:00.014789) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (662, 0:00:00.041441) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (662, 0:00:00.049201) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (662, 0:00:00.014505) +- DEBUG - ----- classify modality phenomena: 0/10 new triple (662, 0:00:00.062016) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (662, 0:00:00.009099) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (662, 0:00:00.009142) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (662, 0:00:00.012266) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (662, 0:00:00.025244) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (662, 0:00:00.014171) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (662, 0:00:00.011381) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (662, 0:00:00.011158) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (662, 0:00:00.011713) - INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 18/21 new triples (680, 0:00:00.090176) -- DEBUG - ----- extract action properties (2): 0/0 new triple (680, 0:00:00.071617) +- INFO - ----- extract action properties (1): 18/21 new triples (680, 0:00:00.147592) +- DEBUG - ----- extract action properties (2): 0/0 new triple (680, 0:00:00.092141) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (680, 0:00:00.028514) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (680, 0:00:00.034450) +- DEBUG - ----- extract composite classes (1): 0/0 new triple (680, 0:00:00.026635) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (680, 0:00:00.024096) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 14/15 new triples (694, 0:00:00.106433) -- INFO - ----- extract ODRL rules: 12/24 new triples (706, 0:00:00.125687) +- INFO - ----- extract ODRL actions: 14/15 new triples (694, 0:00:00.125930) +- INFO - ----- extract ODRL rules: 12/24 new triples (706, 0:00:00.154607) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction - INFO - ----- 84 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (707, 0:00:00.050073) +- INFO - ----- generate ODRL rule: 1/1 new triple (707, 0:00:00.057492) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_generation.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation - INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-16/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 1 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - *** sentence 17 *** @@ -1634,7 +1169,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s15.stog.amr.ttl (593) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00.ttl +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00.ttl - INFO - ----- Sentence (id): asail_odrl_sentences-15 - INFO - ----- Sentence (text): You must keep intact any copyright or Database Right notices and notices that refer to this License. - INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) @@ -1643,80 +1178,80 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (593, 0:00:00.026402) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (593, 0:00:00.040756) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 15/15 new triples (608, 0:00:00.153739) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (608, 0:00:00.049766) -- INFO - ----- reclassify-concept-3: 24/24 new triples (632, 0:00:00.057208) -- INFO - ----- reclassify-concept-4: 20/20 new triples (652, 0:00:00.066052) -- DEBUG - ----- reclassify-concept-5: 0/0 new triple (652, 0:00:00.042352) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (652, 0:00:00.036124) -- INFO - ----- reclassify-existing-variable: 60/60 new triples (712, 0:00:00.035797) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (712, 0:00:00.041107) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 45/45 new triples (757, 0:00:00.058009) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (757, 0:00:00.033077) -- INFO - ----- add-amr-edge-for-core-relation: 42/42 new triples (799, 0:00:00.125317) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (799, 0:00:00.102733) -- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (799, 0:00:00.189114) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (799, 0:00:00.106142) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (799, 0:00:00.114770) -- INFO - ----- update-amr-edge-role-1: 14/14 new triples (813, 0:00:00.148516) -- INFO - ----- add-amr-root: 5/5 new triples (818, 0:00:00.067785) +- INFO - ----- reclassify-concept-1: 15/15 new triples (608, 0:00:00.261744) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (608, 0:00:00.082160) +- INFO - ----- reclassify-concept-3: 24/24 new triples (632, 0:00:00.049018) +- INFO - ----- reclassify-concept-4: 20/20 new triples (652, 0:00:00.071911) +- DEBUG - ----- reclassify-concept-5: 0/0 new triple (652, 0:00:00.046361) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (652, 0:00:00.045471) +- INFO - ----- reclassify-existing-variable: 60/60 new triples (712, 0:00:00.037164) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (712, 0:00:00.056733) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 45/45 new triples (757, 0:00:00.058804) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (757, 0:00:00.031783) +- INFO - ----- add-amr-edge-for-core-relation: 42/42 new triples (799, 0:00:00.263991) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (799, 0:00:00.107093) +- DEBUG - ----- add-amr-edge-for-name-relation: 0/0 new triple (799, 0:00:00.105599) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (799, 0:00:00.108536) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (799, 0:00:00.105929) +- INFO - ----- update-amr-edge-role-1: 14/14 new triples (813, 0:00:00.117939) +- INFO - ----- add-amr-root: 5/5 new triples (818, 0:00:00.043439) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing - INFO - ----- 225 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 30/30 new triples (848, 0:00:00.312763) -- DEBUG - ----- extract atom individuals: 0/0 new triple (848, 0:00:00.019925) -- INFO - ----- extract atomic properties: 85/85 new triples (933, 0:00:00.344851) -- DEBUG - ----- extract atom values: 0/0 new triple (933, 0:00:00.008029) -- INFO - ----- extract atom phenomena: 21/21 new triples (954, 0:00:00.132307) -- INFO - ----- propagate atom relations: 21/56 new triples (975, 0:00:01.177945) +- INFO - ----- extract atom classes: 30/30 new triples (848, 0:00:00.176102) +- DEBUG - ----- extract atom individuals: 0/0 new triple (848, 0:00:00.018854) +- INFO - ----- extract atomic properties: 85/85 new triples (933, 0:00:00.273485) +- DEBUG - ----- extract atom values: 0/0 new triple (933, 0:00:00.008756) +- INFO - ----- extract atom phenomena: 21/21 new triples (954, 0:00:00.102002) +- INFO - ----- propagate atom relations: 21/56 new triples (975, 0:00:01.512385) - INFO - --- *** February Transduction *** Sequence: classification sequence (1) -- INFO - ----- classify modality phenomena: 1/3 new triple (976, 0:00:00.039987) -- INFO - ----- reclassify argument property to class: 20/24 new triples (996, 0:00:00.120311) +- INFO - ----- classify modality phenomena: 1/3 new triple (976, 0:00:00.052190) +- INFO - ----- reclassify argument property to class: 20/24 new triples (996, 0:00:00.157859) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (996, 0:00:00.008128) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (996, 0:00:00.013930) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (996, 0:00:00.020032) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (996, 0:00:00.032683) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (996, 0:00:00.030031) -- INFO - ----- analyze modifier phenomena (mod): 21/23 new triples (1017, 0:00:00.149980) -- DEBUG - ----- classify modality phenomena: 0/6 new triple (1017, 0:00:00.080165) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (996, 0:00:00.010565) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (996, 0:00:00.019382) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (996, 0:00:00.026831) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (996, 0:00:00.046621) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (996, 0:00:00.047648) +- INFO - ----- analyze modifier phenomena (mod): 21/23 new triples (1017, 0:00:00.163154) +- DEBUG - ----- classify modality phenomena: 0/6 new triple (1017, 0:00:00.100972) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (1017, 0:00:00.021206) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (1017, 0:00:00.019516) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (1017, 0:00:00.020526) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (1017, 0:00:00.022095) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (1017, 0:00:00.025666) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (1017, 0:00:00.016649) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (1017, 0:00:00.017928) +- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (1017, 0:00:00.016606) - INFO - --- *** February Transduction *** Sequence: action property extraction sequence -- INFO - ----- extract action properties (1): 18/21 new triples (1035, 0:00:00.227160) -- INFO - ----- extract action properties (2): 22/26 new triples (1057, 0:00:00.273027) +- INFO - ----- extract action properties (1): 18/21 new triples (1035, 0:00:00.135832) +- INFO - ----- extract action properties (2): 22/26 new triples (1057, 0:00:00.245680) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- INFO - ----- extract composite classes (1): 25/25 new triples (1082, 0:00:00.154380) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (1082, 0:00:00.030459) +- INFO - ----- extract composite classes (1): 25/25 new triples (1082, 0:00:00.136548) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (1082, 0:00:00.029524) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 13/15 new triples (1095, 0:00:00.149769) -- INFO - ----- extract ODRL rules: 12/24 new triples (1107, 0:00:00.209742) +- INFO - ----- extract ODRL actions: 13/15 new triples (1095, 0:00:00.130207) +- INFO - ----- extract ODRL rules: 12/24 new triples (1107, 0:00:00.164405) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction - INFO - ----- 289 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- INFO - ----- generate ODRL rule: 1/1 new triple (1108, 0:00:00.079585) +- INFO - ----- generate ODRL rule: 1/1 new triple (1108, 0:00:00.061968) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_generation.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation - INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-17/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) - DEBUG - ----- Number of factoids: 1 - DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - @@ -1726,6 +1261,6 @@ - INFO - -- Serializing graph to factoid string - INFO - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid - INFO - -- Serializing graph to factoid file -- INFO - ----- Ontology Turtle File: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_output/aos00-20230511/aos00_factoid.ttl +- INFO - ----- Ontology Turtle File: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/aos00_factoid.ttl - INFO - === Done === diff --git a/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/tenet.log b/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/tenet.log index d6a2fff733de8dd73dcf7b1c76e3ee2758716a88..9d35a6a03a0569dfa53587a3b129f94a80e2aed2 100644 --- a/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/tenet.log +++ b/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/technical-data/tenet.log @@ -18,8 +18,7 @@ ----- target reference: base ----- process level: sentence ----- source type: amr - -- Compositional Transduction Scheme (CTS) - ----- CTS reference: owl_amr_scheme_1 + ----- extraction scheme: owl_amr_scheme_1 -- Directories ----- base directory: ./ ----- structure directory: ./structure/ @@ -72,25 +71,25 @@ - DEBUG - ----- Total rule number: 87 - INFO - -- Applying extraction step: preprocessing - INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence -- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (609, 0:00:00.030094) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (609, 0:00:00.047351) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (619, 0:00:00.260658) -- INFO - ----- reclassify-concept-2: 8/8 new triples (627, 0:00:00.096879) -- INFO - ----- reclassify-concept-3: 12/12 new triples (639, 0:00:00.071626) -- INFO - ----- reclassify-concept-4: 28/28 new triples (667, 0:00:00.160871) -- INFO - ----- reclassify-concept-5: 4/4 new triples (671, 0:00:00.066717) -- INFO - ----- reify-roles-as-concept: 5/5 new triples (676, 0:00:00.080590) -- INFO - ----- reclassify-existing-variable: 81/81 new triples (757, 0:00:00.058710) -- INFO - ----- add-new-variable-for-reified-concept: 4/4 new triples (761, 0:00:00.091473) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 60/60 new triples (821, 0:00:00.104331) -- INFO - ----- add-amr-leaf-for-reified-concept: 4/4 new triples (825, 0:00:00.036521) -- INFO - ----- add-amr-edge-for-core-relation: 54/54 new triples (879, 0:00:00.191464) -- INFO - ----- add-amr-edge-for-reified-concept: 6/6 new triples (885, 0:00:00.228741) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (890, 0:00:00.162892) -- INFO - ----- add-value-for-quant-relation: 5/5 new triples (895, 0:00:00.137591) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (895, 0:00:00.102384) -- INFO - ----- update-amr-edge-role-1: 22/22 new triples (917, 0:00:00.242589) -- INFO - ----- add-amr-root: 5/5 new triples (922, 0:00:00.124663) +- INFO - ----- reclassify-concept-1: 10/10 new triples (619, 0:00:00.359740) +- INFO - ----- reclassify-concept-2: 8/8 new triples (627, 0:00:00.123862) +- INFO - ----- reclassify-concept-3: 12/12 new triples (639, 0:00:00.092732) +- INFO - ----- reclassify-concept-4: 28/28 new triples (667, 0:00:00.123992) +- INFO - ----- reclassify-concept-5: 4/4 new triples (671, 0:00:00.078677) +- INFO - ----- reify-roles-as-concept: 5/5 new triples (676, 0:00:00.067388) +- INFO - ----- reclassify-existing-variable: 81/81 new triples (757, 0:00:00.054334) +- INFO - ----- add-new-variable-for-reified-concept: 4/4 new triples (761, 0:00:00.060932) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 60/60 new triples (821, 0:00:00.094267) +- INFO - ----- add-amr-leaf-for-reified-concept: 4/4 new triples (825, 0:00:00.049641) +- INFO - ----- add-amr-edge-for-core-relation: 54/54 new triples (879, 0:00:00.270623) +- INFO - ----- add-amr-edge-for-reified-concept: 6/6 new triples (885, 0:00:00.319377) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (890, 0:00:00.132348) +- INFO - ----- add-value-for-quant-relation: 5/5 new triples (895, 0:00:00.137003) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (895, 0:00:00.251639) +- INFO - ----- update-amr-edge-role-1: 22/22 new triples (917, 0:00:00.176901) +- INFO - ----- add-amr-root: 5/5 new triples (922, 0:00:00.025857) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_02_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/02/ @@ -99,22 +98,22 @@ - INFO - ----- 313 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 66/66 new triples (988, 0:00:00.387095) -- INFO - ----- extract atom individuals: 8/8 new triples (996, 0:00:00.064073) -- INFO - ----- extract atomic properties: 72/72 new triples (1068, 0:00:00.216101) -- INFO - ----- extract atom values: 10/10 new triples (1078, 0:00:00.077800) -- INFO - ----- extract atom phenomena: 28/28 new triples (1106, 0:00:00.170248) -- INFO - ----- propagate atom relations: 35/96 new triples (1141, 0:00:01.912325) +- INFO - ----- extract atom classes: 66/66 new triples (988, 0:00:00.360752) +- INFO - ----- extract atom individuals: 8/8 new triples (996, 0:00:00.064481) +- INFO - ----- extract atomic properties: 72/72 new triples (1068, 0:00:00.231688) +- INFO - ----- extract atom values: 10/10 new triples (1078, 0:00:00.100064) +- INFO - ----- extract atom phenomena: 28/28 new triples (1106, 0:00:00.136477) +- INFO - ----- propagate atom relations: 35/96 new triples (1141, 0:00:02.318755) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (1141, 0:00:00.009896) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (1141, 0:00:00.014897) -- INFO - ----- analyze modifier phenomena (mod): 43/48 new triples (1184, 0:00:00.248048) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (1141, 0:00:00.010429) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (1141, 0:00:00.016351) +- INFO - ----- analyze modifier phenomena (mod): 43/48 new triples (1184, 0:00:00.282281) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (1184, 0:00:00.013948) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (1184, 0:00:00.010635) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (1184, 0:00:00.020310) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (1184, 0:00:00.017322) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- INFO - ----- extract composite classes (1): 22/22 new triples (1206, 0:00:00.146110) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (1206, 0:00:00.033055) +- INFO - ----- extract composite classes (1): 22/22 new triples (1206, 0:00:00.194440) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (1206, 0:00:00.040490) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_02_transduction - DEBUG - ----- step: transduction - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/02/ @@ -123,31 +122,31 @@ - INFO - ----- 284 triples extracted during transduction step - INFO - -- Applying extraction step: generation - INFO - --- *** November Transduction *** Sequence: main-generation-sequence -- INFO - ----- compute-uri-for-owl-declaration-1: 7/7 new triples (1213, 0:00:00.040731) -- INFO - ----- compute-uri-for-owl-declaration-2: 2/2 new triples (1215, 0:00:00.027724) -- INFO - ----- compute-uri-for-owl-declaration-3: 3/3 new triples (1218, 0:00:00.038545) -- INFO - ----- compute-uri-for-owl-declaration-4: 2/2 new triples (1220, 0:00:00.035953) -- INFO - ----- compute-uri-for-owl-declaration-5: 6/6 new triples (1226, 0:00:00.033857) -- INFO - ----- compute-uri-for-owl-declaration-6: 6/6 new triples (1232, 0:00:00.037454) -- DEBUG - ----- compute-uri-for-owl-declaration-7: 0/0 new triple (1232, 0:00:00.031533) -- INFO - ----- generate-atom-class: 21/21 new triples (1253, 0:00:00.014603) -- DEBUG - ----- classify-atom-class-1: 0/0 new triple (1253, 0:00:00.010740) -- INFO - ----- classify-atom-class-2: 7/7 new triples (1260, 0:00:00.022516) -- INFO - ----- generate-individual: 5/9 new triples (1265, 0:00:00.016648) -- INFO - ----- classify-individual-1: 2/2 new triples (1267, 0:00:00.012314) -- INFO - ----- classify-individual-2: 2/2 new triples (1269, 0:00:00.017013) -- INFO - ----- generate-atom-property-1: 24/24 new triples (1293, 0:00:00.011747) -- INFO - ----- generate-atom-property-12: 24/24 new triples (1317, 0:00:00.015573) -- DEBUG - ----- generate-inverse-relation: 0/0 new triple (1317, 0:00:00.009930) -- DEBUG - ----- generate-composite-class: 0/0 new triple (1317, 0:00:00.013857) -- DEBUG - ----- add-restriction-to-class-1: 0/0 new triple (1317, 0:00:00.026084) -- DEBUG - ----- add-restriction-to-class-2: 0/0 new triple (1317, 0:00:00.021405) -- DEBUG - ----- add-restriction-to-class-3: 0/0 new triple (1317, 0:00:00.020389) -- DEBUG - ----- add-restriction-to-class-4: 0/0 new triple (1317, 0:00:00.018125) -- DEBUG - ----- add-restriction-to-class-5: 0/0 new triple (1317, 0:00:00.018549) -- DEBUG - ----- add-restriction-to-class-6: 0/0 new triple (1317, 0:00:00.019188) +- INFO - ----- compute-uri-for-owl-declaration-1: 7/7 new triples (1213, 0:00:00.040686) +- INFO - ----- compute-uri-for-owl-declaration-2: 2/2 new triples (1215, 0:00:00.036628) +- INFO - ----- compute-uri-for-owl-declaration-3: 3/3 new triples (1218, 0:00:00.034954) +- INFO - ----- compute-uri-for-owl-declaration-4: 2/2 new triples (1220, 0:00:00.039646) +- INFO - ----- compute-uri-for-owl-declaration-5: 6/6 new triples (1226, 0:00:00.040182) +- INFO - ----- compute-uri-for-owl-declaration-6: 6/6 new triples (1232, 0:00:00.033810) +- DEBUG - ----- compute-uri-for-owl-declaration-7: 0/0 new triple (1232, 0:00:00.022804) +- INFO - ----- generate-atom-class: 21/21 new triples (1253, 0:00:00.021682) +- DEBUG - ----- classify-atom-class-1: 0/0 new triple (1253, 0:00:00.010570) +- INFO - ----- classify-atom-class-2: 7/7 new triples (1260, 0:00:00.015263) +- INFO - ----- generate-individual: 5/9 new triples (1265, 0:00:00.013201) +- INFO - ----- classify-individual-1: 2/2 new triples (1267, 0:00:00.008017) +- INFO - ----- classify-individual-2: 2/2 new triples (1269, 0:00:00.012386) +- INFO - ----- generate-atom-property-1: 24/24 new triples (1293, 0:00:00.017202) +- INFO - ----- generate-atom-property-12: 24/24 new triples (1317, 0:00:00.016678) +- DEBUG - ----- generate-inverse-relation: 0/0 new triple (1317, 0:00:00.010977) +- DEBUG - ----- generate-composite-class: 0/0 new triple (1317, 0:00:00.011662) +- DEBUG - ----- add-restriction-to-class-1: 0/0 new triple (1317, 0:00:00.016097) +- DEBUG - ----- add-restriction-to-class-2: 0/0 new triple (1317, 0:00:00.013274) +- DEBUG - ----- add-restriction-to-class-3: 0/0 new triple (1317, 0:00:00.013776) +- DEBUG - ----- add-restriction-to-class-4: 0/0 new triple (1317, 0:00:00.022642) +- DEBUG - ----- add-restriction-to-class-5: 0/0 new triple (1317, 0:00:00.018045) +- DEBUG - ----- add-restriction-to-class-6: 0/0 new triple (1317, 0:00:00.014766) - INFO - --- *** February Transduction *** Sequence: property_generation_sequence -- INFO - ----- generate OWL property: 2/26 new triples (1319, 0:00:00.260687) +- INFO - ----- generate OWL property: 2/26 new triples (1319, 0:00:00.309219) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_02_generation - DEBUG - ----- step: generation - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/02/ @@ -167,3 +166,156 @@ - INFO - ----- Ontology Turtle File: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev02-20230511/SolarSystemDev02_factoid.ttl - INFO - === Done === +���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������- INFO - ----- 1 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-6/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 1 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 7 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s10.stog.amr.ttl (569) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): asail_odrl_sentences-10 +- INFO - ----- Sentence (text): John is obligated to reproduce and distribute the Work. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (569, 0:00:00.052911) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 10/10 new triples (579, 0:00:00.220961) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (579, 0:00:00.205107) +- INFO - ----- reclassify-concept-3: 12/12 new triples (591, 0:00:00.089976) +- DEBUG - ----- reclassify-concept-4: 0/0 new triple (591, 0:00:00.112662) +- INFO - ----- reclassify-concept-5: 4/4 new triples (595, 0:00:00.062801) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (595, 0:00:00.060294) +- INFO - ----- reclassify-existing-variable: 25/25 new triples (620, 0:00:00.059602) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (620, 0:00:00.091698) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (638, 0:00:00.063490) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (638, 0:00:00.061369) +- INFO - ----- add-amr-edge-for-core-relation: 24/24 new triples (662, 0:00:00.164900) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (662, 0:00:00.111145) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (667, 0:00:00.070232) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (667, 0:00:00.110697) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (667, 0:00:00.134904) +- INFO - ----- update-amr-edge-role-1: 9/9 new triples (676, 0:00:00.074693) +- INFO - ----- add-amr-root: 5/5 new triples (681, 0:00:00.023377) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 112 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 6/6 new triples (687, 0:00:00.059785) +- INFO - ----- extract atom individuals: 8/8 new triples (695, 0:00:00.053930) +- INFO - ----- extract atomic properties: 37/37 new triples (732, 0:00:00.131698) +- INFO - ----- extract atom values: 5/5 new triples (737, 0:00:00.037860) +- INFO - ----- extract atom phenomena: 14/14 new triples (751, 0:00:00.073301) +- INFO - ----- propagate atom relations: 19/62 new triples (770, 0:00:00.651498) +- INFO - --- *** February Transduction *** Sequence: classification sequence (1) +- INFO - ----- classify modality phenomena: 1/7 new triple (771, 0:00:00.056291) +- INFO - ----- reclassify argument property to class: 10/24 new triples (781, 0:00:00.175260) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (781, 0:00:00.011610) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (781, 0:00:00.022083) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (781, 0:00:00.021947) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (781, 0:00:00.049804) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (781, 0:00:00.052400) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (781, 0:00:00.034828) +- DEBUG - ----- classify modality phenomena: 0/14 new triple (781, 0:00:00.092789) +- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (781, 0:00:00.017854) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (781, 0:00:00.016841) +- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (781, 0:00:00.017688) +- INFO - ----- analyze "and" phenomena (2): 2/36 new triples (783, 0:00:00.427580) +- INFO - --- *** February Transduction *** Sequence: action property extraction sequence +- INFO - ----- extract action properties (1): 42/54 new triples (825, 0:00:00.432785) +- DEBUG - ----- extract action properties (2): 0/0 new triple (825, 0:00:00.154222) +- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence +- DEBUG - ----- extract composite classes (1): 0/0 new triple (825, 0:00:00.046664) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (825, 0:00:00.038764) +- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence +- INFO - ----- extract ODRL actions: 30/34 new triples (855, 0:00:00.335047) +- INFO - ----- extract ODRL rules: 15/48 new triples (870, 0:00:00.384498) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_transduction +- DEBUG - ----- step: transduction +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_transduction.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//transduction +- INFO - ----- 189 triples extracted during transduction step +- INFO - -- Applying extraction step: generation +- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence +- INFO - ----- generate ODRL rule: 2/2 new triples (872, 0:00:00.129714) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_generation +- DEBUG - ----- step: generation +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_generation.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//generation +- INFO - ----- 2 triples extracted during generation step +- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-7/tenet.tetras-libre.fr_demo_clara_00_factoid.ttl) +- DEBUG - ----- Number of factoids: 2 +- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/00//factoid +- INFO - *** sentence 8 *** +- INFO - -- Work Structure Preparation +- DEBUG - --- Graph Initialization +- DEBUG - ----- Configuration Loading +- DEBUG - -------- RDF Schema (320) +- DEBUG - -------- Semantic Net Definition (470) +- DEBUG - -------- Config Parameter Definition (504) +- DEBUG - ----- Frame Ontology Loading +- DEBUG - -------- Base Ontology produced as output (534) +- DEBUG - --- Source Data Import +- DEBUG - ----- Sentence Loading +- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/asail_odrl_sentences/s06.stog.amr.ttl (556) +- DEBUG - --- Export work graph as turtle +- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00.ttl +- INFO - ----- Sentence (id): asail_odrl_sentences-06 +- INFO - ----- Sentence (text): John is not allowed to play the movie. +- INFO - -- Loading Extraction Scheme (odrl_amr_scheme_1) +- DEBUG - ----- Step number: 3 +- INFO - -- Loading Extraction Rules (amr_clara_rule/*) +- DEBUG - ----- Total rule number: 87 +- INFO - -- Applying extraction step: preprocessing +- INFO - --- *** November Transduction *** Sequence: amrld-correcting-sequence +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (556, 0:00:00.032254) +- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence +- INFO - ----- reclassify-concept-1: 5/5 new triples (561, 0:00:00.117564) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (561, 0:00:00.068669) +- INFO - ----- reclassify-concept-3: 4/4 new triples (565, 0:00:00.065483) +- INFO - ----- reclassify-concept-4: 4/4 new triples (569, 0:00:00.065030) +- INFO - ----- reclassify-concept-5: 4/4 new triples (573, 0:00:00.056456) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (573, 0:00:00.050287) +- INFO - ----- reclassify-existing-variable: 17/17 new triples (590, 0:00:00.044680) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (590, 0:00:00.071238) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (602, 0:00:00.033524) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (602, 0:00:00.068183) +- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (611, 0:00:00.121845) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (611, 0:00:00.125342) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (616, 0:00:00.137584) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (616, 0:00:00.129637) +- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (621, 0:00:00.132502) +- INFO - ----- update-amr-edge-role-1: 5/5 new triples (626, 0:00:00.060618) +- INFO - ----- add-amr-root: 5/5 new triples (631, 0:00:00.052143) +- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_00_preprocessing +- DEBUG - ----- step: preprocessing +- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/00/ +- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_odrl_output/aos00-20230511/technical-data/tenet.tetras-libre.fr_demo_clara_00-8/tenet.tetras-libre.fr_demo_clara_00_preprocessing.ttl +- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/00//preprocessing +- INFO - ----- 75 triples extracted during preprocessing step +- INFO - -- Applying extraction step: transduction +- INFO - --- *** February Transduction *** Sequence: atomic extraction sequence +- INFO - ----- extract atom classes: 12/12 new triples (643, 0:00:00.208224) +- INFO - ----- extract atom individuals: 8/8 new triples (651, 0:00:00.072742)