diff --git a/tenet/scheme/amr_clara_rule/transduction/odrl_rule_extractor.py b/tenet/scheme/amr_clara_rule/transduction/odrl_rule_extractor.py index 8b950634d090143f75ecb07b21b7887a121b6b6f..8e203fa6fd8a09992d8f61ac839423fef6218ff5 100644 --- a/tenet/scheme/amr_clara_rule/transduction/odrl_rule_extractor.py +++ b/tenet/scheme/amr_clara_rule/transduction/odrl_rule_extractor.py @@ -51,7 +51,14 @@ def __search_pattern(graph, phenomena_uri): # Useful Computation Method(s) #============================================================================== -def __define_naming(rule_relation): +def __compute_rule_action_net(rule_net, action_net_uri): + action_net_list = rule_net.rule_action_net + if not isinstance(action_net_list, list): action_net_list = [] + action_net_list.append(action_net_uri) + return action_net_list + + +def __define_naming(rule_relation, action_net): return f'{rule_relation}' @@ -68,13 +75,13 @@ def __construct_rule_net(graph, rule_relation, phenomena_net, action_net): # -- Data Computation rule_net.rule_relation_name = rule_relation - rule_net.rule_action_net = action_net.uri + rule_net.rule_action_net = __compute_rule_action_net(rule_net, action_net.uri) # -- Relation Propagation # None # -- Net Naming - rule_net.naming = __define_naming(rule_relation) + rule_net.naming = __define_naming(rule_relation, action_net) # -- Finalization rule_net.finalize() diff --git a/tenet/scheme/amr_clara_rule/transduction/phenomena_and_analyzer_1.py b/tenet/scheme/amr_clara_rule/transduction/phenomena_and_analyzer_1.py index cbc4c5e8a433cba884b6eb5bedcb4c4c134a3458..ca77508a8ef4c3a1a562c92cee57a1f366ad72d6 100644 --- a/tenet/scheme/amr_clara_rule/transduction/phenomena_and_analyzer_1.py +++ b/tenet/scheme/amr_clara_rule/transduction/phenomena_and_analyzer_1.py @@ -17,7 +17,7 @@ from transduction.rdfterm_computer import produce_uriref, produce_literal #============================================================================== -# Pattern Search: property(class, and_phenomena) +# Pattern Search: property(_, and_phenomena) #============================================================================== CONJUNCTION_PHENOMENA_URI = 'amr:phenomena_conjunction_and' diff --git a/tenet/scheme/amr_clara_rule/transduction/phenomena_and_analyzer_2.py b/tenet/scheme/amr_clara_rule/transduction/phenomena_and_analyzer_2.py index 67a27ad2cb5d3c0cb5854b09133371a19b758239..8d882f980ca80a03d2b6c42b2026c634f466dcb2 100644 --- a/tenet/scheme/amr_clara_rule/transduction/phenomena_and_analyzer_2.py +++ b/tenet/scheme/amr_clara_rule/transduction/phenomena_and_analyzer_2.py @@ -5,7 +5,7 @@ # TENET: Rule to conjunctive phenomena and (rule 2) #------------------------------------------------------------------------------ # Net Expansion AMR rule to analyse conjunctive phenomena (and) -# Rule: property(property, and_phenomena) => compositeProperty +# Rule: phenomena(_, and_phenomena) => relation(phenomena, argument) #============================================================================== from rdflib import Graph @@ -13,23 +13,21 @@ from rdflib import Graph import transduction from transduction import net from transduction.query_builder import generate_select_query -from transduction.naming_computer import define_composite_naming_1, define_restriction_naming +from transduction.rdfterm_computer import produce_uriref, produce_literal #============================================================================== -# Search for patterns: property(property, and_phenomena) +# Pattern Search: modality(_, and_phenomena) #============================================================================== CONJUNCTION_PHENOMENA_URI = 'amr:phenomena_conjunction_and' def __search_pattern(graph): - select_data_list = ['?property_net_core', '?property_net_arg0', '?phenomena_net'] - clause_list = [f'?property_net_core a [rdfs:subClassOf* net:Property_Net].', - f'?property_net_arg0 a [rdfs:subClassOf* net:Property_Net].', - f'?phenomena_net a [rdfs:subClassOf* net:Phenomena_Net].', - f'?phenomena_net net:hasPhenomenaType {CONJUNCTION_PHENOMENA_URI}.', - f'?property_net_core amr:role_ARG0 ?property_net_arg0.', - f'?property_net_core amr:role_ARG1 ?phenomena_net.'] + select_data_list = ['?left_phenomena_net', '?relation_role', '?right_phenomena_net'] + clause_list = [f'?left_phenomena_net a [rdfs:subClassOf* net:Phenomena_Net].', + f'?right_phenomena_net a [rdfs:subClassOf* net:Phenomena_Net].', + f'?right_phenomena_net net:hasPhenomenaType {CONJUNCTION_PHENOMENA_URI}.', + f'?left_phenomena_net ?relation_role ?phenomena_net.'] query_code = generate_select_query(graph, select_data_list, clause_list) result_set = graph.query(query_code) return query_code, result_set @@ -37,137 +35,72 @@ def __search_pattern(graph): #============================================================================== -# Search for phenomena operators: +# Useful Additional Search #============================================================================== -def __property_op_pattern_query_code(graph, phenomena_net_uri, num): +def __search_op_class_pattern(graph, phenomena_net_uri, num): assert 1 <= num <= 9, f'invalid number ({num})' - select_data_list = ['?property_net'] - clause_list = [f'?property_net a [rdfs:subClassOf* net:Property_Net].'] - clause_list.append((phenomena_net_uri, f'amr:role_op{num}', '?property_net')) + select_data_list = ['?class_net'] + clause_list = [f'?class_net a [rdfs:subClassOf* net:Class_Net].', + (phenomena_net_uri, f'amr:role_op{num}', '?class_net')] query_code = generate_select_query(graph, select_data_list, clause_list) - return query_code - + result_set = graph.query(query_code) + return query_code, result_set -def __search_property_phenomena_operator(graph, phenomena_net_uri): +def __search_phenomena_operator_class(graph, phenomena_net_uri): + query_code = '' op_set = [] for num in range(1, 9+1): - query_code = __property_op_pattern_query_code(graph, phenomena_net_uri, num) - op_set += graph.query(query_code) - return op_set + query_code, result_set = __search_op_class_pattern(graph, phenomena_net_uri, num) + op_set += result_set + return query_code, op_set - - -#============================================================================== -# Relation Propagation -#============================================================================== - -def __filter_relation(relation_list): - result_list = [] - for relation in relation_list: - check = True - (s, p, o) = relation - if s == o: check = False - if check: result_list.append(relation) - return result_list - - -def __propagate_relation(target_net, base_net): - # -- target_net.input_relation_list = base_net.input_relation_list - out_relation_list = __filter_relation(base_net.output_relation_list) - target_net.output_relation_list = out_relation_list - - -#============================================================================== -# Construct Methods: construction of composite property net -#============================================================================== - -def __construct_restriction_net(graph, property_net_1, property_net_2): - - restriction_net = net.RestrictionNet(graph) - restriction_net.compose(property_net_1, property_net_2) - - # -- Data Computation - restriction_net.restriction_property = property_net_1.uri - restriction_net.restriction_net_value = property_net_2.uri - - # -- Relation Propagation: None +def __search_op_property_pattern(graph, phenomena_net_uri, num): + assert 1 <= num <= 9, f'invalid number ({num})' + select_data_list = ['?property_net'] + clause_list = [f'?property_net a [rdfs:subClassOf* net:Property_Net].', + (phenomena_net_uri, f'amr:role_op{num}', '?property_net')] + query_code = generate_select_query(graph, select_data_list, clause_list) + result_set = graph.query(query_code) + return query_code, result_set - # -- Net Naming - restriction_net.naming = define_restriction_naming(property_net_1, property_net_2) - - # -- Finalization - restriction_net.finalize() - triple_list = restriction_net.generate_triple_definition() - - return restriction_net, triple_list - - +def __search_phenomena_operator_property(graph, phenomena_net_uri): + query_code = '' + op_set = [] + for num in range(1, 9+1): + query_code, result_set = __search_op_property_pattern(graph, phenomena_net_uri, num) + op_set += result_set + return query_code, op_set -def __construct_composite_property_net_from_3_properties( - graph, base_property_net, core_property_net, target_property_net): - # -- Net Composition - composite_property_net = net.CompositePropertyNet(graph) - composite_property_net.compose(base_property_net, core_property_net, target_property_net) - - # -- Data Computation - composite_property_net.mother_property_net = base_property_net.uri - composite_property_net.property_type = 'owl:ObjectProperty' - # -- Restriction Computation - restriction_net, triple_list_1 = __construct_restriction_net(graph, core_property_net, target_property_net) - composite_property_net.restriction = restriction_net.uri - - # -- Relation Propagation - __propagate_relation(composite_property_net, base_property_net) +#============================================================================== +# Useful Computation Method(s) +#============================================================================== - # -- Net Naming - composite_property_net.naming = define_composite_naming_1( - base_property_net, core_property_net, target_property_net) - - # -- Finalization - composite_property_net.finalize() - triple_list_2 = composite_property_net.generate_triple_definition() - result_triple_list = triple_list_1 + triple_list_2 +def __propagate_relation(left_net, amr_relation_uri, right_net_uri): + new_relation = (left_net.uri, amr_relation_uri, right_net_uri) + up_relation_list = left_net.output_relation_list + [new_relation] + left_net.output_relation_list = up_relation_list - return composite_property_net, result_triple_list - - - -def __construct_property_union_net(graph, base_property_net, property_net_list): - - # -- Net Composition - property_union_net = net.PropertyUnionNet(graph) - property_union_net.compose(base_property_net, property_net_list) - # -- Data Computation: None - - # -- Restriction Computation: None - # -- Relation Propagation - __propagate_relation(property_union_net, base_property_net) +#============================================================================== +# Construct Method(s) +#============================================================================== - # -- Net Naming - property_union_net.naming = define_union_naming(base_property_net) - - # -- Finalization - property_union_net.finalize() - triple_list = property_union_net.generate_triple_definition() - - return property_union_net, triple_list +# None + - - #============================================================================== -# Main Method: analyze_phenomena_and_2 +# Main Method #============================================================================== def analyze_phenomena_and_2(graph): # -- Rule Initialization - rule_label = 'analyze "and" phenomena (2)' + rule_label = 'analyze "and" phenomena (2)' rule_triple_list = [] # -- Search for patterns @@ -175,36 +108,30 @@ def analyze_phenomena_and_2(graph): # -- Pattern Analysis for pattern in pattern_set: - property_net_1 = net.PropertyNet(graph, uri=pattern.property_net_arg0) - property_net_2 = net.PropertyNet(graph, uri=pattern.property_net_core) - phenomena_net = net.PhenomenaNet(graph, uri=pattern.phenomena_net) + property_net = net.PhenomenaNet(graph, uri=pattern.left_phenomena_net) + phenomena_net = net.PhenomenaNet(graph, uri=pattern.right_phenomena_net) # -- Search for phenomena operators - property_operator_set = __search_property_phenomena_operator(graph, phenomena_net.uri) - # -- Selection Analyzing (2) - property_net_list = [] - for selection_2 in property_operator_set: - # print(f' *** DEVTEST *** {selection_2.property_net}') + # -- Relation Propagation for Operator Class Net + _, operator_class_set = __search_phenomena_operator_class(graph, phenomena_net.uri) + for operator in operator_class_set: + amr_relation_uri = produce_uriref(graph, pattern.relation_role) + right_net_uri = produce_uriref(graph, operator.class_net) + __propagate_relation(property_net, amr_relation_uri, right_net_uri) + rule_triple_list += property_net.generate_net_relation_triples() - # -- Net Selection - property_net_3 = net.PropertyNet(graph, uri=selection_2.property_net) - - # -- New Net Construction (from 3 property nets) - new_property, triple_list = __construct_composite_property_net_from_3_properties( - graph, property_net_1, property_net_2, property_net_3) - - # -- Resulting List Update - property_net_list.append(new_property) - rule_triple_list += triple_list + # -- Relation Propagation for Operator Class Net + _, operator_property_set = __search_phenomena_operator_property(graph, phenomena_net.uri) + for operator in operator_property_set: + amr_relation_uri = produce_uriref(graph, pattern.relation_role) + right_net_uri = produce_uriref(graph, operator.property_net) + __propagate_relation(property_net, amr_relation_uri, right_net_uri) + rule_triple_list += property_net.generate_net_relation_triples() - # -- Deprecation: Origin Property Net - rule_triple_list += property_net_1.deprecate() # -- New Net Construction (as union of properties) - # _, triple_list = __construct_property_union_net(graph, property_net_1, property_net_list) + # _, triple_list = __construct_class_union_net(graph, class_net_1, class_net_list) # rule_triple_list += triple_list - return rule_label, rule_triple_list - - \ No newline at end of file + return rule_label, rule_triple_list \ No newline at end of file diff --git a/tenet/scheme/amr_scheme_clara_1.py b/tenet/scheme/amr_scheme_clara_1.py index 64df7c8b099283fe689b1b2acc71c3836ec86c81..6e0965bd4d6025463fb7ba21782e005fb4dfb42c 100644 --- a/tenet/scheme/amr_scheme_clara_1.py +++ b/tenet/scheme/amr_scheme_clara_1.py @@ -193,7 +193,8 @@ phenomena_analyze_sequence_1 = ['phenomena analyze sequence (1)', phenomena_analyze_sequence_2 = ['phenomena analyze sequence (2)', rule.analyze_phenomena_or_1, rule.analyze_phenomena_or_2, - rule.analyze_phenomena_and_1] + rule.analyze_phenomena_and_1, + rule.analyze_phenomena_and_2] composite_class_extraction_sequence = ['composite class extraction sequence', rule.extract_composite_class_1, diff --git a/tenet/tenet.log b/tenet/tenet.log index 81915df86ef8cf87548f75b9ad91a2214dbd6682..9b12b043a6bf6c78d27d2ee5eb0fec1b4dbf17c7 100644 --- a/tenet/tenet.log +++ b/tenet/tenet.log @@ -75,25 +75,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 (561, 0:00:00.033730) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (561, 0:00:00.037245) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (571, 0:00:00.130273) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (571, 0:00:00.073159) -- INFO - ----- reclassify-concept-3: 4/4 new triples (575, 0:00:00.042589) -- INFO - ----- reclassify-concept-4: 4/4 new triples (579, 0:00:00.120815) -- INFO - ----- reclassify-concept-5: 8/8 new triples (587, 0:00:00.047346) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (587, 0:00:00.055341) -- INFO - ----- reclassify-existing-variable: 25/25 new triples (612, 0:00:00.035763) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (612, 0:00:00.051890) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (630, 0:00:00.040202) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (630, 0:00:00.034656) -- INFO - ----- add-amr-edge-for-core-relation: 18/18 new triples (648, 0:00:00.095636) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (648, 0:00:00.082937) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (653, 0:00:00.068453) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (653, 0:00:00.075562) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (653, 0:00:00.078239) -- INFO - ----- update-amr-edge-role-1: 7/7 new triples (660, 0:00:00.048197) -- INFO - ----- add-amr-root: 5/5 new triples (665, 0:00:00.027875) +- INFO - ----- reclassify-concept-1: 10/10 new triples (571, 0:00:00.171320) +- DEBUG - ----- reclassify-concept-2: 0/0 new triple (571, 0:00:00.061654) +- INFO - ----- reclassify-concept-3: 4/4 new triples (575, 0:00:00.051477) +- INFO - ----- reclassify-concept-4: 4/4 new triples (579, 0:00:00.067559) +- INFO - ----- reclassify-concept-5: 8/8 new triples (587, 0:00:00.057331) +- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (587, 0:00:00.057309) +- INFO - ----- reclassify-existing-variable: 25/25 new triples (612, 0:00:00.032120) +- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (612, 0:00:00.057801) +- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (630, 0:00:00.040303) +- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (630, 0:00:00.033991) +- INFO - ----- add-amr-edge-for-core-relation: 18/18 new triples (648, 0:00:00.097869) +- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (648, 0:00:00.092746) +- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (653, 0:00:00.075232) +- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (653, 0:00:00.075979) +- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (653, 0:00:00.073791) +- INFO - ----- update-amr-edge-role-1: 7/7 new triples (660, 0:00:00.046432) +- INFO - ----- add-amr-root: 5/5 new triples (665, 0:00:00.027679) - DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_preprocessing - DEBUG - ----- step: preprocessing - DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ @@ -102,960 +102,36 @@ - 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 (683, 0:00:00.089481) -- INFO - ----- extract atom individuals: 8/8 new triples (691, 0:00:00.048437) -- INFO - ----- extract atomic properties: 13/13 new triples (704, 0:00:00.040435) -- INFO - ----- extract atom values: 5/5 new triples (709, 0:00:00.034433) -- INFO - ----- extract atom phenomena: 14/14 new triples (723, 0:00:00.063267) -- INFO - ----- propagate atom relations: 16/46 new triples (739, 0:00:00.490793) +- INFO - ----- extract atom classes: 18/18 new triples (683, 0:00:00.094365) +- INFO - ----- extract atom individuals: 8/8 new triples (691, 0:00:00.041810) +- INFO - ----- extract atomic properties: 13/13 new triples (704, 0:00:00.044902) +- INFO - ----- extract atom values: 5/5 new triples (709, 0:00:00.033412) +- INFO - ----- extract atom phenomena: 14/14 new triples (723, 0:00:00.065431) +- INFO - ----- propagate atom relations: 16/46 new triples (739, 0:00:00.509788) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (739, 0:00:00.008129) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (739, 0:00:00.018774) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (739, 0:00:00.014038) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (739, 0:00:00.033952) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (739, 0:00:00.031947) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (739, 0:00:00.008516) +- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (739, 0:00:00.007898) +- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (739, 0:00:00.013164) +- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (739, 0:00:00.020019) +- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (739, 0:00:00.050511) +- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (739, 0:00:00.043097) +- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (739, 0:00:00.008207) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (739, 0:00:00.013378) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (739, 0:00:00.010994) -- INFO - ----- analyze "and" phenomena (1): 2/22 new triples (741, 0:00:00.151223) +- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (739, 0:00:00.010481) +- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (739, 0:00:00.012554) +- INFO - ----- analyze "and" phenomena (1): 2/22 new triples (741, 0:00:00.150407) +- INFO - ----- analyze "and" phenomena (2): 41/342 new triples (782, 0:00:02.509046) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (741, 0:00:00.024680) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (741, 0:00:00.029205) +- DEBUG - ----- extract composite classes (1): 0/0 new triple (782, 0:00:00.027416) +- DEBUG - ----- extract composite classes (2): 0/0 new triple (782, 0:00:00.030701) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 17/18 new triples (758, 0:00:00.120863) -- INFO - ----- extract ODRL rules: 13/13 new triples (771, 0:00:00.109294) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-1/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//transduction -- INFO - ----- 106 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 (772, 0:00:00.076883) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-1/tenet.tetras-libre.fr_demo_clara_06_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-1/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - *** sentence 2 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (466) -- DEBUG - -------- Config Parameter Definition (500) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (530) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/s05.stog.amr.ttl (560) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-2/tenet.tetras-libre.fr_demo_clara_06.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-05 -- INFO - ----- Sentence (text): Movie9899 can be displayed only after 2019. -- INFO - -- Loading Extraction Scheme (amr_scheme_clara_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.030725) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (565, 0:00:00.133259) -- INFO - ----- reclassify-concept-2: 8/8 new triples (573, 0:00:00.062305) -- INFO - ----- reclassify-concept-3: 4/4 new triples (577, 0:00:00.044399) -- INFO - ----- reclassify-concept-4: 8/8 new triples (585, 0:00:00.063153) -- DEBUG - ----- reclassify-concept-5: 0/0 new triple (585, 0:00:00.037154) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (585, 0:00:00.048545) -- INFO - ----- reclassify-existing-variable: 25/25 new triples (610, 0:00:00.031210) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (610, 0:00:00.049884) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (628, 0:00:00.038119) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (628, 0:00:00.029696) -- INFO - ----- add-amr-edge-for-core-relation: 15/15 new triples (643, 0:00:00.094467) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (643, 0:00:00.072058) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (648, 0:00:00.062674) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (648, 0:00:00.066723) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (648, 0:00:00.110850) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (653, 0:00:00.051972) -- INFO - ----- add-amr-root: 5/5 new triples (658, 0:00:00.051120) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-2/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (670, 0:00:00.078329) -- INFO - ----- extract atom individuals: 8/8 new triples (678, 0:00:00.040582) -- INFO - ----- extract atomic properties: 36/36 new triples (714, 0:00:00.098802) -- INFO - ----- extract atom values: 5/5 new triples (719, 0:00:00.030127) -- INFO - ----- extract atom phenomena: 7/7 new triples (726, 0:00:00.038773) -- INFO - ----- propagate atom relations: 11/30 new triples (737, 0:00:00.527146) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (737, 0:00:00.007813) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (737, 0:00:00.019580) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (737, 0:00:00.015439) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (737, 0:00:00.045262) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (737, 0:00:00.033195) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (737, 0:00:00.007633) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (737, 0:00:00.014061) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (737, 0:00:00.073371) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (737, 0:00:00.012737) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (737, 0:00:00.021262) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (737, 0:00:00.017712) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 11/12 new triples (748, 0:00:00.096806) -- INFO - ----- extract ODRL rules: 11/11 new triples (759, 0:00:00.086370) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-2/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (760, 0:00:00.054173) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-2/tenet.tetras-libre.fr_demo_clara_06_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-2/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - *** sentence 3 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (466) -- DEBUG - -------- Config Parameter Definition (500) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (530) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/s03.stog.amr.ttl (552) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-3/tenet.tetras-libre.fr_demo_clara_06.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-03 -- INFO - ----- Sentence (text): John is not allowed to play the movie. -- INFO - -- Loading Extraction Scheme (amr_scheme_clara_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 (552, 0:00:00.029689) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (557, 0:00:00.095815) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (557, 0:00:00.049358) -- INFO - ----- reclassify-concept-3: 4/4 new triples (561, 0:00:00.053900) -- INFO - ----- reclassify-concept-4: 4/4 new triples (565, 0:00:00.052745) -- INFO - ----- reclassify-concept-5: 4/4 new triples (569, 0:00:00.045361) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (569, 0:00:00.055890) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (586, 0:00:00.027861) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (586, 0:00:00.054537) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (598, 0:00:00.034105) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (598, 0:00:00.037144) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (607, 0:00:00.092952) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (607, 0:00:00.070273) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (612, 0:00:00.079345) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (612, 0:00:00.078184) -- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (617, 0:00:00.077622) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (622, 0:00:00.039839) -- INFO - ----- add-amr-root: 5/5 new triples (627, 0:00:00.032474) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-3/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (639, 0:00:00.069822) -- INFO - ----- extract atom individuals: 8/8 new triples (647, 0:00:00.036511) -- INFO - ----- extract atomic properties: 13/13 new triples (660, 0:00:00.034434) -- INFO - ----- extract atom values: 10/10 new triples (670, 0:00:00.058724) -- INFO - ----- extract atom phenomena: 7/7 new triples (677, 0:00:00.034301) -- INFO - ----- propagate atom relations: 11/28 new triples (688, 0:00:00.429764) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (688, 0:00:00.008665) -- INFO - ----- analyze "polarity" phenomena (2): 13/15 new triples (701, 0:00:00.057357) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (701, 0:00:00.022410) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (701, 0:00:00.033215) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (701, 0:00:00.029660) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (701, 0:00:00.011607) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (701, 0:00:00.013368) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (701, 0:00:00.010870) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (701, 0:00:00.009873) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (701, 0:00:00.023122) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (701, 0:00:00.024244) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 15/17 new triples (716, 0:00:00.133647) -- INFO - ----- extract ODRL rules: 12/12 new triples (728, 0:00:00.121687) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-3/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (729, 0:00:00.079830) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-3/tenet.tetras-libre.fr_demo_clara_06_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-3/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - *** sentence 4 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (466) -- DEBUG - -------- Config Parameter Definition (500) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (530) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/s07.stog.amr.ttl (553) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-4/tenet.tetras-libre.fr_demo_clara_06.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-07 -- INFO - ----- Sentence (text): John is prohibited not to reproduce the Work. -- INFO - -- Loading Extraction Scheme (amr_scheme_clara_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 (553, 0:00:00.025433) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (558, 0:00:00.123102) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (558, 0:00:00.063891) -- INFO - ----- reclassify-concept-3: 8/8 new triples (566, 0:00:00.048075) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (566, 0:00:00.066047) -- INFO - ----- reclassify-concept-5: 4/4 new triples (570, 0:00:00.042787) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (570, 0:00:00.046873) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (587, 0:00:00.030163) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (587, 0:00:00.054706) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (599, 0:00:00.040427) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (599, 0:00:00.033669) -- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (611, 0:00:00.095923) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (611, 0:00:00.068392) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (616, 0:00:00.076810) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (616, 0:00:00.090219) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (616, 0:00:00.077221) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (621, 0:00:00.042981) -- INFO - ----- add-amr-root: 5/5 new triples (626, 0:00:00.031468) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-4/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//preprocessing -- INFO - ----- 73 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 (632, 0:00:00.039315) -- INFO - ----- extract atom individuals: 8/8 new triples (640, 0:00:00.051224) -- INFO - ----- extract atomic properties: 24/24 new triples (664, 0:00:00.158420) -- INFO - ----- extract atom values: 5/5 new triples (669, 0:00:00.025754) -- INFO - ----- extract atom phenomena: 7/7 new triples (676, 0:00:00.034373) -- INFO - ----- propagate atom relations: 12/38 new triples (688, 0:00:00.361589) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (688, 0:00:00.008911) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (688, 0:00:00.017950) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (688, 0:00:00.012606) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (688, 0:00:00.035912) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (688, 0:00:00.038522) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (688, 0:00:00.007469) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (688, 0:00:00.010981) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (688, 0:00:00.014996) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (688, 0:00:00.010779) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (688, 0:00:00.018773) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (688, 0:00:00.025915) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 11/12 new triples (699, 0:00:00.111663) -- INFO - ----- extract ODRL rules: 11/11 new triples (710, 0:00:00.123727) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-4/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (711, 0:00:00.062616) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-4/tenet.tetras-libre.fr_demo_clara_06_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-4/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - *** sentence 5 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (466) -- DEBUG - -------- Config Parameter Definition (500) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (530) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/s09.stog.amr.ttl (554) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-5/tenet.tetras-libre.fr_demo_clara_06.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-09 -- INFO - ----- Sentence (text): John is obligated not to reproduce the Work. -- INFO - -- Loading Extraction Scheme (amr_scheme_clara_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.027869) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (559, 0:00:00.114752) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (559, 0:00:00.060142) -- INFO - ----- reclassify-concept-3: 8/8 new triples (567, 0:00:00.044348) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (567, 0:00:00.063842) -- INFO - ----- reclassify-concept-5: 4/4 new triples (571, 0:00:00.038251) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (571, 0:00:00.039466) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (588, 0:00:00.025818) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (588, 0:00:00.051615) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (600, 0:00:00.035328) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (600, 0:00:00.029482) -- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (612, 0:00:00.090959) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (612, 0:00:00.072558) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (617, 0:00:00.070790) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (617, 0:00:00.159876) -- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (622, 0:00:00.090315) -- INFO - ----- update-amr-edge-role-1: 6/6 new triples (628, 0:00:00.060454) -- INFO - ----- add-amr-root: 5/5 new triples (633, 0:00:00.026066) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-5/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (639, 0:00:00.042354) -- INFO - ----- extract atom individuals: 8/8 new triples (647, 0:00:00.045148) -- INFO - ----- extract atomic properties: 25/25 new triples (672, 0:00:00.116688) -- INFO - ----- extract atom values: 10/10 new triples (682, 0:00:00.106506) -- INFO - ----- extract atom phenomena: 7/7 new triples (689, 0:00:00.041815) -- INFO - ----- propagate atom relations: 14/40 new triples (703, 0:00:00.474302) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- INFO - ----- analyze "polarity" phenomena (1): 35/42 new triples (738, 0:00:00.093819) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (738, 0:00:00.013507) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (738, 0:00:00.012567) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (738, 0:00:00.038885) -- INFO - ----- analyze "polarity" phenomena (5): 15/19 new triples (753, 0:00:00.084094) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (753, 0:00:00.007461) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (753, 0:00:00.010650) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (753, 0:00:00.011705) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (753, 0:00:00.008108) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (753, 0:00:00.022540) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (753, 0:00:00.017423) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 12/14 new triples (765, 0:00:00.097442) -- INFO - ----- extract ODRL rules: 11/11 new triples (776, 0:00:00.083835) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-5/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//transduction -- INFO - ----- 143 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 (777, 0:00:00.058778) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-5/tenet.tetras-libre.fr_demo_clara_06_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-5/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - *** sentence 6 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (466) -- DEBUG - -------- Config Parameter Definition (500) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (530) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/s10.stog.amr.ttl (565) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-6/tenet.tetras-libre.fr_demo_clara_06.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-10 -- INFO - ----- Sentence (text): John is obligated to reproduce and distribute the Work. -- INFO - -- Loading Extraction Scheme (amr_scheme_clara_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.037416) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (575, 0:00:00.110142) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (575, 0:00:00.048138) -- INFO - ----- reclassify-concept-3: 12/12 new triples (587, 0:00:00.046094) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (587, 0:00:00.058346) -- INFO - ----- reclassify-concept-5: 4/4 new triples (591, 0:00:00.054634) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (591, 0:00:00.048672) -- INFO - ----- reclassify-existing-variable: 25/25 new triples (616, 0:00:00.035872) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (616, 0:00:00.132274) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (634, 0:00:00.035283) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (634, 0:00:00.032271) -- INFO - ----- add-amr-edge-for-core-relation: 24/24 new triples (658, 0:00:00.103798) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (658, 0:00:00.075792) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (663, 0:00:00.075224) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (663, 0:00:00.080897) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (663, 0:00:00.074748) -- INFO - ----- update-amr-edge-role-1: 9/9 new triples (672, 0:00:00.061147) -- INFO - ----- add-amr-root: 5/5 new triples (677, 0:00:00.023943) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-6/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (683, 0:00:00.047196) -- INFO - ----- extract atom individuals: 8/8 new triples (691, 0:00:00.043112) -- INFO - ----- extract atomic properties: 37/37 new triples (728, 0:00:00.120172) -- INFO - ----- extract atom values: 5/5 new triples (733, 0:00:00.033830) -- INFO - ----- extract atom phenomena: 14/14 new triples (747, 0:00:00.074506) -- INFO - ----- propagate atom relations: 19/62 new triples (766, 0:00:00.501258) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (766, 0:00:00.006942) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (766, 0:00:00.014112) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (766, 0:00:00.012738) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (766, 0:00:00.032706) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (766, 0:00:00.037566) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (766, 0:00:00.009736) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (766, 0:00:00.010058) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (766, 0:00:00.010061) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (766, 0:00:00.010239) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (766, 0:00:00.020472) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (766, 0:00:00.020248) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- DEBUG - ----- extract ODRL actions: 0/0 new triple (766, 0:00:00.027253) -- DEBUG - ----- extract ODRL rules: 0/0 new triple (766, 0:00:00.062590) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-6/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//transduction -- INFO - ----- 89 triples extracted during transduction step -- INFO - -- Applying extraction step: generation -- INFO - --- *** February Transduction *** Sequence: ODRL Rule Generation Sequence -- DEBUG - ----- generate ODRL rule: 0/0 new triple (766, 0:00:00.007300) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-6/tenet.tetras-libre.fr_demo_clara_06_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//generation -- INFO - ----- 0 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-6/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) -- DEBUG - ----- Number of factoids: 0 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - *** sentence 7 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (466) -- DEBUG - -------- Config Parameter Definition (500) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (530) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/s06.stog.amr.ttl (552) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-7/tenet.tetras-libre.fr_demo_clara_06.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-06 -- INFO - ----- Sentence (text): John is not allowed to play the movie. -- INFO - -- Loading Extraction Scheme (amr_scheme_clara_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 (552, 0:00:00.037238) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (557, 0:00:00.136168) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (557, 0:00:00.148896) -- INFO - ----- reclassify-concept-3: 4/4 new triples (561, 0:00:00.051358) -- INFO - ----- reclassify-concept-4: 4/4 new triples (565, 0:00:00.071621) -- INFO - ----- reclassify-concept-5: 4/4 new triples (569, 0:00:00.054483) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (569, 0:00:00.048618) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (586, 0:00:00.039523) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (586, 0:00:00.049769) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (598, 0:00:00.038345) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (598, 0:00:00.034425) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (607, 0:00:00.093210) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (607, 0:00:00.094922) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (612, 0:00:00.066056) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (612, 0:00:00.070837) -- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (617, 0:00:00.081093) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (622, 0:00:00.038434) -- INFO - ----- add-amr-root: 5/5 new triples (627, 0:00:00.032210) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-7/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (639, 0:00:00.072416) -- INFO - ----- extract atom individuals: 8/8 new triples (647, 0:00:00.043493) -- INFO - ----- extract atomic properties: 13/13 new triples (660, 0:00:00.049902) -- INFO - ----- extract atom values: 10/10 new triples (670, 0:00:00.048535) -- INFO - ----- extract atom phenomena: 7/7 new triples (677, 0:00:00.045585) -- INFO - ----- propagate atom relations: 11/28 new triples (688, 0:00:00.365063) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (688, 0:00:00.011971) -- INFO - ----- analyze "polarity" phenomena (2): 13/15 new triples (701, 0:00:00.064819) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (701, 0:00:00.015720) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (701, 0:00:00.036408) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (701, 0:00:00.030149) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (701, 0:00:00.007662) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (701, 0:00:00.015538) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (701, 0:00:00.011975) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (701, 0:00:00.016066) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (701, 0:00:00.020696) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (701, 0:00:00.018216) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 15/17 new triples (716, 0:00:00.118787) -- INFO - ----- extract ODRL rules: 12/12 new triples (728, 0:00:00.119432) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-7/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (729, 0:00:00.078097) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-7/tenet.tetras-libre.fr_demo_clara_06_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-7/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - *** sentence 8 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (466) -- DEBUG - -------- Config Parameter Definition (500) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (530) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/s04.stog.amr.ttl (556) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-8/tenet.tetras-libre.fr_demo_clara_06.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-04 -- INFO - ----- Sentence (text): Movie9899 can be displayed only in Germany. -- INFO - -- Loading Extraction Scheme (amr_scheme_clara_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.035551) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (561, 0:00:00.121876) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (561, 0:00:00.066748) -- INFO - ----- reclassify-concept-3: 4/4 new triples (565, 0:00:00.046773) -- INFO - ----- reclassify-concept-4: 8/8 new triples (573, 0:00:00.070665) -- INFO - ----- reclassify-concept-5: 4/4 new triples (577, 0:00:00.048007) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (577, 0:00:00.046580) -- INFO - ----- reclassify-existing-variable: 22/22 new triples (599, 0:00:00.032187) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (599, 0:00:00.054692) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 15/15 new triples (614, 0:00:00.031514) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (614, 0:00:00.028746) -- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (626, 0:00:00.087729) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (626, 0:00:00.068059) -- INFO - ----- add-amr-edge-for-name-relation: 10/10 new triples (636, 0:00:00.071918) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (636, 0:00:00.062958) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (636, 0:00:00.079534) -- INFO - ----- update-amr-edge-role-1: 6/6 new triples (642, 0:00:00.039577) -- INFO - ----- add-amr-root: 5/5 new triples (647, 0:00:00.022923) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-8/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (665, 0:00:00.099058) -- INFO - ----- extract atom individuals: 16/16 new triples (681, 0:00:00.068159) -- INFO - ----- extract atomic properties: 13/13 new triples (694, 0:00:00.043692) -- INFO - ----- extract atom values: 10/10 new triples (704, 0:00:00.051082) -- INFO - ----- extract atom phenomena: 7/7 new triples (711, 0:00:00.041916) -- INFO - ----- propagate atom relations: 15/52 new triples (726, 0:00:00.658495) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (726, 0:00:00.009441) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (726, 0:00:00.012012) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (726, 0:00:00.009990) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (726, 0:00:00.023919) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (726, 0:00:00.026748) -- INFO - ----- analyze modifier phenomena (mod): 21/25 new triples (747, 0:00:00.080165) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (747, 0:00:00.009969) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (747, 0:00:00.012093) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (747, 0:00:00.008386) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (747, 0:00:00.021120) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (747, 0:00:00.017797) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 11/12 new triples (758, 0:00:00.090769) -- INFO - ----- extract ODRL rules: 11/11 new triples (769, 0:00:00.084240) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-8/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//transduction -- INFO - ----- 122 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 (770, 0:00:00.062048) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-8/tenet.tetras-libre.fr_demo_clara_06_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-8/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - *** sentence 9 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (466) -- DEBUG - -------- Config Parameter Definition (500) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (530) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/s01.stog.amr.ttl (547) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-9/tenet.tetras-libre.fr_demo_clara_06.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-01 -- INFO - ----- Sentence (text): Movie9898 can be used. -- INFO - -- Loading Extraction Scheme (amr_scheme_clara_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 (547, 0:00:00.037104) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (552, 0:00:00.102780) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (552, 0:00:00.079271) -- INFO - ----- reclassify-concept-3: 4/4 new triples (556, 0:00:00.046313) -- INFO - ----- reclassify-concept-4: 4/4 new triples (560, 0:00:00.062773) -- DEBUG - ----- reclassify-concept-5: 0/0 new triple (560, 0:00:00.050074) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (560, 0:00:00.055932) -- INFO - ----- reclassify-existing-variable: 13/13 new triples (573, 0:00:00.034165) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (573, 0:00:00.063168) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 9/9 new triples (582, 0:00:00.043236) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (582, 0:00:00.041464) -- INFO - ----- add-amr-edge-for-core-relation: 6/6 new triples (588, 0:00:00.090600) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (588, 0:00:00.088834) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (593, 0:00:00.067661) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (593, 0:00:00.142099) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (593, 0:00:00.082804) -- INFO - ----- update-amr-edge-role-1: 3/3 new triples (596, 0:00:00.026617) -- INFO - ----- add-amr-root: 5/5 new triples (601, 0:00:00.023321) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-9/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (607, 0:00:00.041423) -- INFO - ----- extract atom individuals: 8/8 new triples (615, 0:00:00.044849) -- INFO - ----- extract atomic properties: 12/12 new triples (627, 0:00:00.054925) -- INFO - ----- extract atom values: 5/5 new triples (632, 0:00:00.037780) -- INFO - ----- extract atom phenomena: 7/7 new triples (639, 0:00:00.045019) -- INFO - ----- propagate atom relations: 7/22 new triples (646, 0:00:00.313028) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (646, 0:00:00.007059) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (646, 0:00:00.013639) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (646, 0:00:00.012593) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (646, 0:00:00.036600) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (646, 0:00:00.034541) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (646, 0:00:00.008283) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (646, 0:00:00.010896) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (646, 0:00:00.010355) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (646, 0:00:00.008746) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (646, 0:00:00.027141) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (646, 0:00:00.019378) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 11/12 new triples (657, 0:00:00.108720) -- INFO - ----- extract ODRL rules: 11/11 new triples (668, 0:00:00.122568) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-9/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//transduction -- INFO - ----- 67 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 (669, 0:00:00.063639) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-9/tenet.tetras-libre.fr_demo_clara_06_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-9/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - *** sentence 10 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (466) -- DEBUG - -------- Config Parameter Definition (500) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (530) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/s08.stog.amr.ttl (553) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-10/tenet.tetras-libre.fr_demo_clara_06.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-08 -- INFO - ----- Sentence (text): John is not allowed not to reproduce the Work. -- INFO - -- Loading Extraction Scheme (amr_scheme_clara_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 (553, 0:00:00.032589) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (558, 0:00:00.117324) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (558, 0:00:00.054636) -- INFO - ----- reclassify-concept-3: 8/8 new triples (566, 0:00:00.051970) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (566, 0:00:00.059819) -- INFO - ----- reclassify-concept-5: 4/4 new triples (570, 0:00:00.045849) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (570, 0:00:00.044471) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (587, 0:00:00.030308) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (587, 0:00:00.058082) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (599, 0:00:00.036762) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (599, 0:00:00.040242) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (608, 0:00:00.097967) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (608, 0:00:00.073588) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (613, 0:00:00.144079) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (613, 0:00:00.069535) -- INFO - ----- add-amr-edge-for-polarity-relation: 8/8 new triples (621, 0:00:00.072156) -- INFO - ----- update-amr-edge-role-1: 6/6 new triples (627, 0:00:00.044007) -- INFO - ----- add-amr-root: 5/5 new triples (632, 0:00:00.025948) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-10/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (638, 0:00:00.034734) -- INFO - ----- extract atom individuals: 8/8 new triples (646, 0:00:00.038253) -- INFO - ----- extract atomic properties: 25/25 new triples (671, 0:00:00.088025) -- INFO - ----- extract atom values: 10/10 new triples (681, 0:00:00.053246) -- INFO - ----- extract atom phenomena: 7/7 new triples (688, 0:00:00.035055) -- INFO - ----- propagate atom relations: 12/30 new triples (700, 0:00:00.364011) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- INFO - ----- analyze "polarity" phenomena (1): 35/42 new triples (735, 0:00:00.098816) -- INFO - ----- analyze "polarity" phenomena (2): 14/17 new triples (749, 0:00:00.078410) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (749, 0:00:00.012510) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (749, 0:00:00.048706) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (749, 0:00:00.034502) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (749, 0:00:00.008532) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (749, 0:00:00.013844) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (749, 0:00:00.015274) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (749, 0:00:00.010378) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (749, 0:00:00.028946) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (749, 0:00:00.021922) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 12/14 new triples (761, 0:00:00.118462) -- INFO - ----- extract ODRL rules: 11/11 new triples (772, 0:00:00.129397) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-10/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//transduction -- INFO - ----- 140 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 (773, 0:00:00.069275) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-10/tenet.tetras-libre.fr_demo_clara_06_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-10/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - *** sentence 11 *** -- INFO - -- Work Structure Preparation -- DEBUG - --- Graph Initialization -- DEBUG - ----- Configuration Loading -- DEBUG - -------- RDF Schema (320) -- DEBUG - -------- Semantic Net Definition (466) -- DEBUG - -------- Config Parameter Definition (500) -- DEBUG - ----- Frame Ontology Loading -- DEBUG - -------- Base Ontology produced as output (530) -- DEBUG - --- Source Data Import -- DEBUG - ----- Sentence Loading -- DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/s02.stog.amr.ttl (551) -- DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-11/tenet.tetras-libre.fr_demo_clara_06.ttl -- INFO - ----- Sentence (id): asail_odrl_sentences-02 -- INFO - ----- Sentence (text): John must play the movie. -- INFO - -- Loading Extraction Scheme (amr_scheme_clara_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.029878) -- INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 5/5 new triples (556, 0:00:00.114246) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (556, 0:00:00.063818) -- INFO - ----- reclassify-concept-3: 4/4 new triples (560, 0:00:00.058531) -- INFO - ----- reclassify-concept-4: 4/4 new triples (564, 0:00:00.065336) -- INFO - ----- reclassify-concept-5: 4/4 new triples (568, 0:00:00.048607) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (568, 0:00:00.055929) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (585, 0:00:00.098262) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (585, 0:00:00.054005) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (597, 0:00:00.037840) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (597, 0:00:00.029485) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (606, 0:00:00.085787) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (606, 0:00:00.064826) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (611, 0:00:00.067350) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (611, 0:00:00.065168) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (611, 0:00:00.070167) -- INFO - ----- update-amr-edge-role-1: 4/4 new triples (615, 0:00:00.035326) -- INFO - ----- add-amr-root: 5/5 new triples (620, 0:00:00.022544) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_preprocessing -- DEBUG - ----- step: preprocessing -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-11/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//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 (632, 0:00:00.063179) -- INFO - ----- extract atom individuals: 8/8 new triples (640, 0:00:00.043756) -- INFO - ----- extract atomic properties: 13/13 new triples (653, 0:00:00.043543) -- INFO - ----- extract atom values: 5/5 new triples (658, 0:00:00.025159) -- INFO - ----- extract atom phenomena: 7/7 new triples (665, 0:00:00.041465) -- INFO - ----- propagate atom relations: 10/26 new triples (675, 0:00:00.333139) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (675, 0:00:00.012014) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (675, 0:00:00.016258) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (675, 0:00:00.011172) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (675, 0:00:00.039110) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (675, 0:00:00.047068) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (675, 0:00:00.015108) -- INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (675, 0:00:00.023150) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (675, 0:00:00.025257) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (675, 0:00:00.016737) -- INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (675, 0:00:00.046292) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (675, 0:00:00.023189) -- INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 14/15 new triples (689, 0:00:00.151853) -- INFO - ----- extract ODRL rules: 12/12 new triples (701, 0:00:00.185931) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_transduction -- DEBUG - ----- step: transduction -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-11/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//transduction -- INFO - ----- 81 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 (702, 0:00:00.064082) -- DEBUG - --- Serializing graph to tenet.tetras-libre.fr_demo_clara_06_generation -- DEBUG - ----- step: generation -- DEBUG - ----- id: https://tenet.tetras-libre.fr/demo/clara/06/ -- DEBUG - ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-11/tenet.tetras-libre.fr_demo_clara_06_generation.ttl -- DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//generation -- INFO - ----- 1 triples extracted during generation step -- DEBUG - --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06-11/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) -- DEBUG - ----- Number of factoids: 1 -- DEBUG - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - - === Final Ontology Generation === -- INFO - -- Making complete factoid graph by merging the result factoids -- INFO - ----- Total factoid number: 10 -- INFO - -- Serializing graph to factoid string -- INFO - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/clara/06//factoid -- INFO - -- Serializing graph to factoid file -- INFO - ----- Ontology Turtle File: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/aos06_factoid.ttl -- INFO - - === Done === -- INFO - - *** Execution Time *** ------ Function: create_ontology_from_amrld_dir (tenet.main) ------ Total Time: 0:00:29.378040 ------ Process Time: 0:00:28.971388 - *** - *** +- INFO - ----- extract ODRL actions: 17/18 new triples (799, 0:00:00.120244) +- ERROR - *** Error while processing extraction (_apply_new_rule_sequence) *** +- ERROR - *** Error while processing extraction (apply_step) *** +- DEBUG - ----- step_name = transduction +- DEBUG - ----- len(step_sequence_def) = 6 +- DEBUG - ----- last sequence def = ['ODRL extraction sequence', <function extract_odrl_action at 0x7f8744fdcca0>, <function extract_odrl_rule at 0x7f8744fdcaf0>] +- ERROR - *** Error while processing extraction (apply) *** +- DEBUG - ----- config.cts_ref = amr_scheme_clara_1 +- DEBUG - ----- rule_dir = amr_clara_rule/ +- DEBUG - ----- scheme = {'preprocessing': [{'label': 'default-refinement-sequence', 'comment': 'sequence without rule', 'rule_key_list': []}, {'label': 'amrld-correcting-sequence', 'comment': 'correction of AMR-LD data for some known anomalies', 'rule_key_list': ['fix-amr-bug-about-system-solar-planet']}, {'label': 'amr-reification-sequence', 'comment': 'AMR reification from AMR-Linked-Data to AMR (tenet) structure', 'rule_key_list': ['reclassify-concept-1', 'reclassify-concept-2', 'reclassify-concept-3', 'reclassify-concept-4', 'reclassify-concept-5', 'reify-roles-as-concept', 'reclassify-existing-variable', 'add-new-variable-for-reified-concept', 'add-amr-leaf-for-reclassified-concept', 'add-amr-leaf-for-reified-concept', 'add-amr-edge-for-core-relation', 'add-amr-edge-for-reified-concept', 'add-amr-edge-for-name-relation', 'add-amr-edge-for-quant-relation', 'add-amr-edge-for-polarity-relation', 'update-amr-edge-role-1', 'add-amr-root']}], 'transduction': [{'label': 'transduction-refinement-sequence', 'comment': 'Refinement Sequence for Transduction Processing', 'rule_key_list': ['refine-cover-node-1', 'refine-cover-node-2']}, ['atomic extraction sequence', <function extract_atom_class at 0x7f8744bb4b80>, <function extract_atom_individual at 0x7f8744bb7400>, <function extract_atom_property at 0x7f8744bb65f0>, <function extract_atom_value at 0x7f8744bb7e20>, <function extract_atom_phenomena at 0x7f8744fa04c0>, <function propagate_atom_relation at 0x7f8744fa2320>], ['phenomena analyze sequence (1)', <function analyze_phenomena_polarity_1 at 0x7f876c099240>, <function analyze_phenomena_polarity_2 at 0x7f876c0989d0>, <function analyze_phenomena_polarity_3 at 0x7f876c098160>, <function analyze_phenomena_polarity_4 at 0x7f876c09b640>, <function analyze_phenomena_polarity_5 at 0x7f876c098670>, <function analyze_phenomena_mod_1 at 0x7f876c099750>], ['phenomena analyze sequence (2)', <function analyze_phenomena_or_1 at 0x7f876c09a200>, <function analyze_phenomena_or_2 at 0x7f876c0981f0>, <function analyze_phenomena_and_1 at 0x7f876c099510>, <function analyze_phenomena_and_2 at 0x7f876c0983a0>], ['composite class extraction sequence', <function extract_composite_class_1 at 0x7f8744fa0430>, <function extract_composite_class_2 at 0x7f8744fa1cf0>], ['ODRL extraction sequence', <function extract_odrl_action at 0x7f8744fdcca0>, <function extract_odrl_rule at 0x7f8744fdcaf0>]], 'generation': [{'label': 'default-refinement-sequence', 'comment': 'sequence without rule', 'rule_key_list': []}, ['ODRL Rule Generation Sequence', <function generate_odrl_rule at 0x7f8744fdc280>]]} +- DEBUG - ----- step = transduction, [{'label': 'transduction-refinement-sequence', 'comment': 'Refinement Sequence for Transduction Processing', 'rule_key_list': ['refine-cover-node-1', 'refine-cover-node-2']}, ['atomic extraction sequence', <function extract_atom_class at 0x7f8744bb4b80>, <function extract_atom_individual at 0x7f8744bb7400>, <function extract_atom_property at 0x7f8744bb65f0>, <function extract_atom_value at 0x7f8744bb7e20>, <function extract_atom_phenomena at 0x7f8744fa04c0>, <function propagate_atom_relation at 0x7f8744fa2320>], ['phenomena analyze sequence (1)', <function analyze_phenomena_polarity_1 at 0x7f876c099240>, <function analyze_phenomena_polarity_2 at 0x7f876c0989d0>, <function analyze_phenomena_polarity_3 at 0x7f876c098160>, <function analyze_phenomena_polarity_4 at 0x7f876c09b640>, <function analyze_phenomena_polarity_5 at 0x7f876c098670>, <function analyze_phenomena_mod_1 at 0x7f876c099750>], ['phenomena analyze sequence (2)', <function analyze_phenomena_or_1 at 0x7f876c09a200>, <function analyze_phenomena_or_2 at 0x7f876c0981f0>, <function analyze_phenomena_and_1 at 0x7f876c099510>, <function analyze_phenomena_and_2 at 0x7f876c0983a0>], ['composite class extraction sequence', <function extract_composite_class_1 at 0x7f8744fa0430>, <function extract_composite_class_2 at 0x7f8744fa1cf0>], ['ODRL extraction sequence', <function extract_odrl_action at 0x7f8744fdcca0>, <function extract_odrl_rule at 0x7f8744fdcaf0>]]