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 81ef7ea9f1b98681fa30a56da55676f7860d37a5..cbc4c5e8a433cba884b6eb5bedcb4c4c134a3458 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 @@ -5,7 +5,7 @@ # TENET: Rule to conjunctive phenomena and (rule 1) #------------------------------------------------------------------------------ # Net Expansion AMR rule to analyse conjunctive phenomena (and) -# Rule: property(class, and_phenomena) => compositeClass +# Rule: property(_, and_phenomena) => relation(property, argument) #============================================================================== from rdflib import Graph @@ -13,7 +13,7 @@ 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 #============================================================================== @@ -23,13 +23,11 @@ from transduction.naming_computer import define_composite_naming_1, define_restr CONJUNCTION_PHENOMENA_URI = 'amr:phenomena_conjunction_and' def __search_pattern(graph): - select_data_list = ['?property_net', '?class_net', '?phenomena_net'] + select_data_list = ['?property_net', '?relation_role', '?phenomena_net'] clause_list = [f'?property_net a [rdfs:subClassOf* net:Property_Net].', - f'?class_net a [rdfs:subClassOf* net:Class_Net].', f'?phenomena_net a [rdfs:subClassOf* net:Phenomena_Net].', f'?phenomena_net net:hasPhenomenaType {CONJUNCTION_PHENOMENA_URI}.', - f'?property_net amr:role_ARG0 ?class_net.', - f'?property_net amr:role_ARG1 ?phenomena_net.'] + f'?property_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 @@ -40,42 +38,51 @@ def __search_pattern(graph): # Useful Additional Search #============================================================================== -def __class_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 = ['?class_net'] - clause_list = [f'?class_net a [rdfs:subClassOf* net:Class_Net].'] - clause_list.append((phenomena_net_uri, f'amr:role_op{num}', '?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_class_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 = __class_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 +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 + +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 + + #============================================================================== # Useful Computation Method(s) #============================================================================== -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 +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 @@ -83,79 +90,7 @@ def __propagate_relation(target_net, base_net): # Construct Method(s) #============================================================================== -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 - - # -- 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 __construct_composite_class_net_from_3_nets( - graph, base_class_net, core_property_net, target_class_net): - - # -- Net Composition - composite_class_net = net.CompositePropertyNet(graph) - composite_class_net.compose(base_class_net, core_property_net, target_class_net) - - # -- Data Computation - composite_class_net.mother_class_net = base_class_net.uri - - # -- Restriction Computation - restriction_net, triple_list_1 = __construct_restriction_net(graph, core_property_net, target_class_net) - composite_class_net.restriction = restriction_net.uri - - # -- Relation Propagation - __propagate_relation(composite_class_net, base_class_net) - - # -- Net Naming - composite_class_net.naming = define_composite_naming_1( - base_class_net, core_property_net, target_class_net) - - # -- Finalization - composite_class_net.finalize() - triple_list_2 = composite_class_net.generate_triple_definition() - result_triple_list = triple_list_1 + triple_list_2 - - return composite_class_net, result_triple_list - - - -def __construct_class_union_net(graph, base_class_net, class_net_list): - - # -- Net Composition - class_union_net = net.PropertyUnionNet(graph) - class_union_net.compose(base_class_net, class_net_list) - - # -- Data Computation: None - - # -- Restriction Computation: None - - # -- Relation Propagation - __propagate_relation(class_union_net, base_class_net) - - # -- Net Naming - class_union_net.naming = define_union_naming(base_class_net) - - # -- Finalization - class_union_net.finalize() - triple_list = class_union_net.generate_triple_definition() - - return class_union_net, triple_list +# None #============================================================================== @@ -173,31 +108,27 @@ def analyze_phenomena_and_1(graph): # -- Pattern Analysis for pattern in pattern_set: - class_net_1 = net.ClassNet(graph, uri=pattern.class_net) property_net = net.PropertyNet(graph, uri=pattern.property_net) phenomena_net = net.PhenomenaNet(graph, uri=pattern.phenomena_net) # -- Search for phenomena operators - class_operator_set = __search_class_phenomena_operator(graph, phenomena_net.uri) - # -- Selection Analyzing (2) - class_net_list = [] - for selection_2 in class_operator_set: - # print(f' *** DEVTEST *** {selection_2.class_net}') - - # -- Net Selection - class_net_2 = net.ClassNet(graph, uri=selection_2.class_net) - - # -- New Net Construction (from 3 nets) - new_class, triple_list = __construct_composite_class_net_from_3_nets( - graph, class_net_1, property_net, class_net_2) + # -- 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() - # -- Resulting List Update - class_net_list.append(new_class) - 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 Class Net - rule_triple_list += class_net_1.deprecate() # -- New Net Construction (as union of properties) # _, triple_list = __construct_class_union_net(graph, class_net_1, class_net_list) diff --git a/tenet/scheme/amr_scheme_clara_1.py b/tenet/scheme/amr_scheme_clara_1.py index 6e0965bd4d6025463fb7ba21782e005fb4dfb42c..64df7c8b099283fe689b1b2acc71c3836ec86c81 100644 --- a/tenet/scheme/amr_scheme_clara_1.py +++ b/tenet/scheme/amr_scheme_clara_1.py @@ -193,8 +193,7 @@ 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_2] + rule.analyze_phenomena_and_1] composite_class_extraction_sequence = ['composite class extraction sequence', rule.extract_composite_class_1, diff --git a/tenet/tenet.log b/tenet/tenet.log index d7f1b3d46e3381fad463c2ceaf98d135a7dd9f71..81915df86ef8cf87548f75b9ad91a2214dbd6682 100644 --- a/tenet/tenet.log +++ b/tenet/tenet.log @@ -3,8 +3,8 @@ === Process Initialization === - INFO - -- Process Setting - INFO - ----- Corpus source: /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/ (amr) -- INFO - ----- Base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230418/aos06_factoid.ttl -- INFO - ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230418/technical-data/ +- INFO - ----- Base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/aos06_factoid.ttl +- INFO - ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/ - INFO - ----- Ontology target (id): https://tenet.tetras-libre.fr/demo/clara/06/ - INFO - ----- Current path: /home/lamenji/Workspace/Tetras/tenet/tenet - DEBUG - ----- Config file: /home/lamenji/Workspace/Tetras/tenet/tenet/config.xml @@ -26,10 +26,10 @@ ----- CTS directory: ./scheme/ ----- target frame directory: ./../input/targetFrameStructure/ ----- input document directory: - ----- base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230418/aos06_factoid.ttl - ----- output directory: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230418/aos06_factoid.ttltenet.tetras-libre.fr_demo_clara_06-20230418/ - ----- sentence output directory: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230418/technical-data/ - ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230418/technical-data/ + ----- base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/aos06_factoid.ttl + ----- output directory: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/aos06_factoid.ttltenet.tetras-libre.fr_demo_clara_06-20230419/ + ----- sentence output directory: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/ + ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/ -- Config File Definition ----- schema file: ./structure/amr-rdf-schema.ttl ----- semantic net file: ./structure/odrl-snet-schema.ttl @@ -47,7 +47,7 @@ ----- frame ontology seed file: ./../input/targetFrameStructure/base-ontology-seed.ttl -- Output ----- ontology namespace: https://tenet.tetras-libre.fr/base-ontology/ - ----- output file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06.ttl + ----- output file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230419/technical-data/tenet.tetras-libre.fr_demo_clara_06.ttl *** - *** - DEBUG - -- Counting number of graph files (sentences) - INFO - ----- Number of Graphs: 11 @@ -66,7 +66,7 @@ - DEBUG - ----- Sentence Loading - DEBUG - -------- /home/lamenji/Workspace/Tetras/tenet/tests/input/amrDocuments/dev/asail_odrl_sentences/s11.stog.amr.ttl (561) - DEBUG - --- Export work graph as turtle -- DEBUG - ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/output/aos06-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-1/tenet.tetras-libre.fr_demo_clara_06.ttl +- DEBUG - ----- Work graph 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.ttl - INFO - ----- Sentence (id): asail_odrl_sentences-11 - INFO - ----- Sentence (text): John is obligated to reproduce the movie and the picture. - INFO - -- Loading Extraction Scheme (amr_scheme_clara_1) @@ -75,73 +75,72 @@ - 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.029480) +- DEBUG - ----- fix-amr-bug-about-system-solar-planet: 0/0 new triple (561, 0:00:00.033730) - INFO - --- *** November Transduction *** Sequence: amr-reification-sequence -- INFO - ----- reclassify-concept-1: 10/10 new triples (571, 0:00:00.184571) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (571, 0:00:00.087279) -- INFO - ----- reclassify-concept-3: 4/4 new triples (575, 0:00:00.074475) -- INFO - ----- reclassify-concept-4: 4/4 new triples (579, 0:00:00.105633) -- INFO - ----- reclassify-concept-5: 8/8 new triples (587, 0:00:00.050919) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (587, 0:00:00.073846) -- INFO - ----- reclassify-existing-variable: 25/25 new triples (612, 0:00:00.125435) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (612, 0:00:00.077420) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (630, 0:00:00.054106) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (630, 0:00:00.044946) -- INFO - ----- add-amr-edge-for-core-relation: 18/18 new triples (648, 0:00:00.109781) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (648, 0:00:00.080806) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (653, 0:00:00.088756) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (653, 0:00:00.114203) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (653, 0:00:00.104636) -- INFO - ----- update-amr-edge-role-1: 7/7 new triples (660, 0:00:00.066371) -- INFO - ----- add-amr-root: 5/5 new triples (665, 0:00:00.035283) +- 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) - 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-1/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl +- 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_preprocessing.ttl - DEBUG - ----- base: http://https://tenet.tetras-libre.fr/demo/clara/06//preprocessing - INFO - ----- 104 triples extracted during preprocessing step - INFO - -- Applying extraction step: transduction - INFO - --- *** February Transduction *** Sequence: atomic extraction sequence -- INFO - ----- extract atom classes: 18/18 new triples (683, 0:00:00.116755) -- INFO - ----- extract atom individuals: 8/8 new triples (691, 0:00:00.065555) -- INFO - ----- extract atomic properties: 13/13 new triples (704, 0:00:00.060003) -- INFO - ----- extract atom values: 5/5 new triples (709, 0:00:00.044800) -- INFO - ----- extract atom phenomena: 14/14 new triples (723, 0:00:00.090684) -- INFO - ----- propagate atom relations: 16/46 new triples (739, 0:00:00.556302) +- 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 - --- *** February Transduction *** Sequence: phenomena analyze sequence (1) -- DEBUG - ----- analyze "polarity" phenomena (1): 0/0 new triple (739, 0:00:00.011083) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (739, 0:00:00.014672) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (739, 0:00:00.015257) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (739, 0:00:00.036307) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (739, 0:00:00.050914) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (739, 0:00:00.012480) +- 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) - INFO - --- *** February Transduction *** Sequence: phenomena analyze sequence (2) -- DEBUG - ----- analyze "or" phenomena (1): 0/0 new triple (739, 0:00:00.011516) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (739, 0:00:00.013267) -- INFO - ----- analyze "and" phenomena (1): 44/47 new triples (783, 0:00:00.217234) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (783, 0:00:00.014830) +- 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) - INFO - --- *** February Transduction *** Sequence: composite class extraction sequence -- DEBUG - ----- extract composite classes (1): 0/0 new triple (783, 0:00:00.026627) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (783, 0:00:00.020885) +- 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) - INFO - --- *** February Transduction *** Sequence: ODRL extraction sequence -- INFO - ----- extract ODRL actions: 11/12 new triples (794, 0:00:00.122367) -- INFO - ----- extract ODRL rules: 11/11 new triples (805, 0:00:00.125886) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-1/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl +- 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 - ----- 140 triples extracted during transduction step +- 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 (806, 0:00:00.099313) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-1/tenet.tetras-libre.fr_demo_clara_06_generation.ttl +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-1/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) +- 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 *** @@ -157,7 +156,7 @@ - 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-2/tenet.tetras-libre.fr_demo_clara_06.ttl +- 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) @@ -166,73 +165,72 @@ - 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.038993) +- 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.206240) -- INFO - ----- reclassify-concept-2: 8/8 new triples (573, 0:00:00.106618) -- INFO - ----- reclassify-concept-3: 4/4 new triples (577, 0:00:00.135705) -- INFO - ----- reclassify-concept-4: 8/8 new triples (585, 0:00:00.074115) -- DEBUG - ----- reclassify-concept-5: 0/0 new triple (585, 0:00:00.055443) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (585, 0:00:00.057354) -- INFO - ----- reclassify-existing-variable: 25/25 new triples (610, 0:00:00.037588) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (610, 0:00:00.065305) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (628, 0:00:00.054806) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (628, 0:00:00.043832) -- INFO - ----- add-amr-edge-for-core-relation: 15/15 new triples (643, 0:00:00.138569) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (643, 0:00:00.088159) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (648, 0:00:00.078691) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (648, 0:00:00.098412) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (648, 0:00:00.076904) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (653, 0:00:00.045794) -- INFO - ----- add-amr-root: 5/5 new triples (658, 0:00:00.029122) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-2/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl +- 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.090222) -- INFO - ----- extract atom individuals: 8/8 new triples (678, 0:00:00.063131) -- INFO - ----- extract atomic properties: 36/36 new triples (714, 0:00:00.152099) -- INFO - ----- extract atom values: 5/5 new triples (719, 0:00:00.038974) -- INFO - ----- extract atom phenomena: 7/7 new triples (726, 0:00:00.050120) -- INFO - ----- propagate atom relations: 11/30 new triples (737, 0:00:00.615993) +- 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.010102) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (737, 0:00:00.020356) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (737, 0:00:00.013248) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (737, 0:00:00.038459) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (737, 0:00:00.044799) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (737, 0:00:00.011345) +- 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.012576) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (737, 0:00:00.015106) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (737, 0:00:00.015456) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (737, 0:00:00.018809) +- 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.022452) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (737, 0:00:00.021145) +- 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.121971) -- INFO - ----- extract ODRL rules: 11/11 new triples (759, 0:00:00.128213) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-2/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl +- 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.075611) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-2/tenet.tetras-libre.fr_demo_clara_06_generation.ttl +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-2/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) +- 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 *** @@ -248,7 +246,7 @@ - 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-3/tenet.tetras-libre.fr_demo_clara_06.ttl +- 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) @@ -257,73 +255,72 @@ - 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.033009) +- 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.115394) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (557, 0:00:00.070092) -- INFO - ----- reclassify-concept-3: 4/4 new triples (561, 0:00:00.047658) -- INFO - ----- reclassify-concept-4: 4/4 new triples (565, 0:00:00.066489) -- INFO - ----- reclassify-concept-5: 4/4 new triples (569, 0:00:00.052590) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (569, 0:00:00.056417) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (586, 0:00:00.040610) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (586, 0:00:00.088478) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (598, 0:00:00.051857) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (598, 0:00:00.048584) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (607, 0:00:00.134906) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (607, 0:00:00.102057) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (612, 0:00:00.076087) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (612, 0:00:00.097096) -- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (617, 0:00:00.125162) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (622, 0:00:00.055011) -- INFO - ----- add-amr-root: 5/5 new triples (627, 0:00:00.042087) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-3/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl +- 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.093688) -- INFO - ----- extract atom individuals: 8/8 new triples (647, 0:00:00.057693) -- INFO - ----- extract atomic properties: 13/13 new triples (660, 0:00:00.059303) -- INFO - ----- extract atom values: 10/10 new triples (670, 0:00:00.077504) -- INFO - ----- extract atom phenomena: 7/7 new triples (677, 0:00:00.046942) -- INFO - ----- propagate atom relations: 11/28 new triples (688, 0:00:00.406163) +- 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.012250) -- INFO - ----- analyze "polarity" phenomena (2): 13/15 new triples (701, 0:00:00.094159) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (701, 0:00:00.021364) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (701, 0:00:00.048962) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (701, 0:00:00.049213) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (701, 0:00:00.012103) +- 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.017527) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (701, 0:00:00.011114) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (701, 0:00:00.011472) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (701, 0:00:00.015927) +- 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.026968) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (701, 0:00:00.022259) +- 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.124623) -- INFO - ----- extract ODRL rules: 12/12 new triples (728, 0:00:00.154124) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-3/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl +- 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.069941) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-3/tenet.tetras-libre.fr_demo_clara_06_generation.ttl +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-3/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) +- 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 *** @@ -339,7 +336,7 @@ - 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-4/tenet.tetras-libre.fr_demo_clara_06.ttl +- 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) @@ -348,73 +345,72 @@ - 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.041295) +- 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.132019) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (558, 0:00:00.117309) -- INFO - ----- reclassify-concept-3: 8/8 new triples (566, 0:00:00.065724) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (566, 0:00:00.064151) -- INFO - ----- reclassify-concept-5: 4/4 new triples (570, 0:00:00.042527) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (570, 0:00:00.049339) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (587, 0:00:00.050279) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (587, 0:00:00.061955) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (599, 0:00:00.034296) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (599, 0:00:00.040588) -- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (611, 0:00:00.095362) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (611, 0:00:00.066661) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (616, 0:00:00.056369) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (616, 0:00:00.063999) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (616, 0:00:00.061782) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (621, 0:00:00.030057) -- INFO - ----- add-amr-root: 5/5 new triples (626, 0:00:00.028816) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-4/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl +- 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.035835) -- INFO - ----- extract atom individuals: 8/8 new triples (640, 0:00:00.034190) -- INFO - ----- extract atomic properties: 24/24 new triples (664, 0:00:00.080005) -- INFO - ----- extract atom values: 5/5 new triples (669, 0:00:00.025099) -- INFO - ----- extract atom phenomena: 7/7 new triples (676, 0:00:00.041306) -- INFO - ----- propagate atom relations: 12/38 new triples (688, 0:00:00.378460) +- 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.007574) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (688, 0:00:00.013675) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (688, 0:00:00.012468) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (688, 0:00:00.040685) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (688, 0:00:00.042044) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (688, 0:00:00.010468) +- 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.013740) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (688, 0:00:00.012785) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (688, 0:00:00.018230) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (688, 0:00:00.023726) +- 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.040832) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (688, 0:00:00.036430) +- 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.150637) -- INFO - ----- extract ODRL rules: 11/11 new triples (710, 0:00:00.118313) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-4/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl +- 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.074739) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-4/tenet.tetras-libre.fr_demo_clara_06_generation.ttl +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-4/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) +- 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 *** @@ -430,7 +426,7 @@ - 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-5/tenet.tetras-libre.fr_demo_clara_06.ttl +- 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) @@ -439,73 +435,72 @@ - 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.122194) +- 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.125087) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (559, 0:00:00.060976) -- INFO - ----- reclassify-concept-3: 8/8 new triples (567, 0:00:00.059343) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (567, 0:00:00.069390) -- INFO - ----- reclassify-concept-5: 4/4 new triples (571, 0:00:00.047021) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (571, 0:00:00.054188) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (588, 0:00:00.042508) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (588, 0:00:00.057144) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (600, 0:00:00.035102) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (600, 0:00:00.033445) -- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (612, 0:00:00.100098) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (612, 0:00:00.068089) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (617, 0:00:00.082489) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (617, 0:00:00.076169) -- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (622, 0:00:00.072431) -- INFO - ----- update-amr-edge-role-1: 6/6 new triples (628, 0:00:00.048208) -- INFO - ----- add-amr-root: 5/5 new triples (633, 0:00:00.031110) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-5/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl +- 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.038791) -- INFO - ----- extract atom individuals: 8/8 new triples (647, 0:00:00.053770) -- INFO - ----- extract atomic properties: 25/25 new triples (672, 0:00:00.081141) -- INFO - ----- extract atom values: 10/10 new triples (682, 0:00:00.058423) -- INFO - ----- extract atom phenomena: 7/7 new triples (689, 0:00:00.040018) -- INFO - ----- propagate atom relations: 14/40 new triples (703, 0:00:00.431918) +- 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.114543) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (738, 0:00:00.014757) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (738, 0:00:00.015106) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (738, 0:00:00.034782) -- INFO - ----- analyze "polarity" phenomena (5): 15/19 new triples (753, 0:00:00.079731) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (753, 0:00:00.012978) +- 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.012713) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (753, 0:00:00.009944) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (753, 0:00:00.010562) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (753, 0:00:00.010405) +- 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.024130) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (753, 0:00:00.022106) +- 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.135140) -- INFO - ----- extract ODRL rules: 11/11 new triples (776, 0:00:00.118894) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-5/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl +- 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.068482) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-5/tenet.tetras-libre.fr_demo_clara_06_generation.ttl +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-5/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) +- 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 *** @@ -521,7 +516,7 @@ - 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-6/tenet.tetras-libre.fr_demo_clara_06.ttl +- 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) @@ -530,73 +525,72 @@ - 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.027135) +- 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.145785) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (575, 0:00:00.062650) -- INFO - ----- reclassify-concept-3: 12/12 new triples (587, 0:00:00.062679) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (587, 0:00:00.063640) -- INFO - ----- reclassify-concept-5: 4/4 new triples (591, 0:00:00.057829) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (591, 0:00:00.056453) -- INFO - ----- reclassify-existing-variable: 25/25 new triples (616, 0:00:00.043505) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (616, 0:00:00.050119) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 18/18 new triples (634, 0:00:00.042505) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (634, 0:00:00.036804) -- INFO - ----- add-amr-edge-for-core-relation: 24/24 new triples (658, 0:00:00.104417) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (658, 0:00:00.086862) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (663, 0:00:00.072573) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (663, 0:00:00.083753) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (663, 0:00:00.074131) -- INFO - ----- update-amr-edge-role-1: 9/9 new triples (672, 0:00:00.063818) -- INFO - ----- add-amr-root: 5/5 new triples (677, 0:00:00.025209) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-6/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl +- 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.034772) -- INFO - ----- extract atom individuals: 8/8 new triples (691, 0:00:00.058626) -- INFO - ----- extract atomic properties: 37/37 new triples (728, 0:00:00.123398) -- INFO - ----- extract atom values: 5/5 new triples (733, 0:00:00.029408) -- INFO - ----- extract atom phenomena: 14/14 new triples (747, 0:00:00.068612) -- INFO - ----- propagate atom relations: 19/62 new triples (766, 0:00:00.552402) +- 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.009456) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (766, 0:00:00.087835) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (766, 0:00:00.019679) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (766, 0:00:00.029507) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (766, 0:00:00.030777) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (766, 0:00:00.007382) +- 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.009257) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (766, 0:00:00.008901) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (766, 0:00:00.009774) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (766, 0:00:00.011477) +- 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.023589) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (766, 0:00:00.015968) +- 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.022642) -- DEBUG - ----- extract ODRL rules: 0/0 new triple (766, 0:00:00.067946) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-6/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl +- 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.005287) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-6/tenet.tetras-libre.fr_demo_clara_06_generation.ttl +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-6/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) +- 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 *** @@ -612,7 +606,7 @@ - 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-7/tenet.tetras-libre.fr_demo_clara_06.ttl +- 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) @@ -621,73 +615,72 @@ - 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.021765) +- 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.117946) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (557, 0:00:00.052671) -- INFO - ----- reclassify-concept-3: 4/4 new triples (561, 0:00:00.041684) -- INFO - ----- reclassify-concept-4: 4/4 new triples (565, 0:00:00.057603) -- INFO - ----- reclassify-concept-5: 4/4 new triples (569, 0:00:00.042906) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (569, 0:00:00.043762) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (586, 0:00:00.025929) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (586, 0:00:00.046678) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (598, 0:00:00.030424) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (598, 0:00:00.025977) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (607, 0:00:00.082981) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (607, 0:00:00.060399) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (612, 0:00:00.057156) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (612, 0:00:00.061725) -- INFO - ----- add-amr-edge-for-polarity-relation: 5/5 new triples (617, 0:00:00.070491) -- INFO - ----- update-amr-edge-role-1: 5/5 new triples (622, 0:00:00.031811) -- INFO - ----- add-amr-root: 5/5 new triples (627, 0:00:00.020621) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-7/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl +- 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.059034) -- INFO - ----- extract atom individuals: 8/8 new triples (647, 0:00:00.035437) -- INFO - ----- extract atomic properties: 13/13 new triples (660, 0:00:00.043585) -- INFO - ----- extract atom values: 10/10 new triples (670, 0:00:00.042352) -- INFO - ----- extract atom phenomena: 7/7 new triples (677, 0:00:00.040749) -- INFO - ----- propagate atom relations: 11/28 new triples (688, 0:00:00.298781) +- 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.006701) -- INFO - ----- analyze "polarity" phenomena (2): 13/15 new triples (701, 0:00:00.050775) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (701, 0:00:00.011068) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (701, 0:00:00.031922) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (701, 0:00:00.032328) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (701, 0:00:00.007306) +- 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.010538) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (701, 0:00:00.009440) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (701, 0:00:00.009069) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (701, 0:00:00.016754) +- 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.024205) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (701, 0:00:00.016856) +- 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.120291) -- INFO - ----- extract ODRL rules: 12/12 new triples (728, 0:00:00.187267) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-7/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl +- 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.064087) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-7/tenet.tetras-libre.fr_demo_clara_06_generation.ttl +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-7/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) +- 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 *** @@ -703,7 +696,7 @@ - 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-8/tenet.tetras-libre.fr_demo_clara_06.ttl +- 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) @@ -712,73 +705,72 @@ - 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.027778) +- 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.101585) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (561, 0:00:00.048289) -- INFO - ----- reclassify-concept-3: 4/4 new triples (565, 0:00:00.046269) -- INFO - ----- reclassify-concept-4: 8/8 new triples (573, 0:00:00.061051) -- INFO - ----- reclassify-concept-5: 4/4 new triples (577, 0:00:00.048339) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (577, 0:00:00.037888) -- INFO - ----- reclassify-existing-variable: 22/22 new triples (599, 0:00:00.032770) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (599, 0:00:00.046526) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 15/15 new triples (614, 0:00:00.029563) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (614, 0:00:00.033307) -- INFO - ----- add-amr-edge-for-core-relation: 12/12 new triples (626, 0:00:00.075026) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (626, 0:00:00.064015) -- INFO - ----- add-amr-edge-for-name-relation: 10/10 new triples (636, 0:00:00.066447) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (636, 0:00:00.054814) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (636, 0:00:00.072952) -- INFO - ----- update-amr-edge-role-1: 6/6 new triples (642, 0:00:00.034709) -- INFO - ----- add-amr-root: 5/5 new triples (647, 0:00:00.021089) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-8/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl +- 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.084722) -- INFO - ----- extract atom individuals: 16/16 new triples (681, 0:00:00.055624) -- INFO - ----- extract atomic properties: 13/13 new triples (694, 0:00:00.039897) -- INFO - ----- extract atom values: 10/10 new triples (704, 0:00:00.042854) -- INFO - ----- extract atom phenomena: 7/7 new triples (711, 0:00:00.042083) -- INFO - ----- propagate atom relations: 15/52 new triples (726, 0:00:00.535599) +- 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.006579) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (726, 0:00:00.012414) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (726, 0:00:00.011290) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (726, 0:00:00.028279) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (726, 0:00:00.026244) -- INFO - ----- analyze modifier phenomena (mod): 21/25 new triples (747, 0:00:00.071784) +- 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.009534) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (747, 0:00:00.009277) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (747, 0:00:00.008524) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (747, 0:00:00.008829) +- 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.016778) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (747, 0:00:00.016988) +- 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.093457) -- INFO - ----- extract ODRL rules: 11/11 new triples (769, 0:00:00.088490) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-8/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl +- 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.054985) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-8/tenet.tetras-libre.fr_demo_clara_06_generation.ttl +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-8/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) +- 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 *** @@ -794,7 +786,7 @@ - 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-9/tenet.tetras-libre.fr_demo_clara_06.ttl +- 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) @@ -803,73 +795,72 @@ - 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.025291) +- 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.097556) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (552, 0:00:00.047175) -- INFO - ----- reclassify-concept-3: 4/4 new triples (556, 0:00:00.041552) -- INFO - ----- reclassify-concept-4: 4/4 new triples (560, 0:00:00.049510) -- DEBUG - ----- reclassify-concept-5: 0/0 new triple (560, 0:00:00.043545) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (560, 0:00:00.043721) -- INFO - ----- reclassify-existing-variable: 13/13 new triples (573, 0:00:00.029070) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (573, 0:00:00.052784) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 9/9 new triples (582, 0:00:00.027521) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (582, 0:00:00.033307) -- INFO - ----- add-amr-edge-for-core-relation: 6/6 new triples (588, 0:00:00.070931) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (588, 0:00:00.075497) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (593, 0:00:00.075877) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (593, 0:00:00.078878) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (593, 0:00:00.070735) -- INFO - ----- update-amr-edge-role-1: 3/3 new triples (596, 0:00:00.022902) -- INFO - ----- add-amr-root: 5/5 new triples (601, 0:00:00.109793) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-9/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl +- 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.034214) -- INFO - ----- extract atom individuals: 8/8 new triples (615, 0:00:00.059438) -- INFO - ----- extract atomic properties: 12/12 new triples (627, 0:00:00.056905) -- INFO - ----- extract atom values: 5/5 new triples (632, 0:00:00.026488) -- INFO - ----- extract atom phenomena: 7/7 new triples (639, 0:00:00.035437) -- INFO - ----- propagate atom relations: 7/22 new triples (646, 0:00:00.268637) +- 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.007573) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (646, 0:00:00.015049) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (646, 0:00:00.011751) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (646, 0:00:00.032896) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (646, 0:00:00.026368) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (646, 0:00:00.006573) +- 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.009932) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (646, 0:00:00.009476) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (646, 0:00:00.008969) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (646, 0:00:00.008881) +- 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.022120) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (646, 0:00:00.019714) +- 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.096352) -- INFO - ----- extract ODRL rules: 11/11 new triples (668, 0:00:00.097255) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-9/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl +- 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.057157) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-9/tenet.tetras-libre.fr_demo_clara_06_generation.ttl +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-9/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) +- 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 *** @@ -885,7 +876,7 @@ - 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-10/tenet.tetras-libre.fr_demo_clara_06.ttl +- 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) @@ -894,73 +885,72 @@ - 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.022469) +- 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.100560) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (558, 0:00:00.056768) -- INFO - ----- reclassify-concept-3: 8/8 new triples (566, 0:00:00.036632) -- DEBUG - ----- reclassify-concept-4: 0/0 new triple (566, 0:00:00.053603) -- INFO - ----- reclassify-concept-5: 4/4 new triples (570, 0:00:00.035877) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (570, 0:00:00.037751) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (587, 0:00:00.028239) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (587, 0:00:00.041474) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (599, 0:00:00.034253) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (599, 0:00:00.027708) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (608, 0:00:00.085033) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (608, 0:00:00.059600) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (613, 0:00:00.144513) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (613, 0:00:00.058719) -- INFO - ----- add-amr-edge-for-polarity-relation: 8/8 new triples (621, 0:00:00.067786) -- INFO - ----- update-amr-edge-role-1: 6/6 new triples (627, 0:00:00.043655) -- INFO - ----- add-amr-root: 5/5 new triples (632, 0:00:00.032576) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-10/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl +- 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.036272) -- INFO - ----- extract atom individuals: 8/8 new triples (646, 0:00:00.039079) -- INFO - ----- extract atomic properties: 25/25 new triples (671, 0:00:00.070991) -- INFO - ----- extract atom values: 10/10 new triples (681, 0:00:00.047632) -- INFO - ----- extract atom phenomena: 7/7 new triples (688, 0:00:00.037408) -- INFO - ----- propagate atom relations: 12/30 new triples (700, 0:00:00.317639) +- 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.085099) -- INFO - ----- analyze "polarity" phenomena (2): 14/17 new triples (749, 0:00:00.058657) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (749, 0:00:00.012648) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (749, 0:00:00.034400) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (749, 0:00:00.028350) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (749, 0:00:00.007101) +- 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.011415) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (749, 0:00:00.009026) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (749, 0:00:00.010197) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (749, 0:00:00.016254) +- 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.026858) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (749, 0:00:00.018853) +- 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.103216) -- INFO - ----- extract ODRL rules: 11/11 new triples (772, 0:00:00.098374) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-10/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl +- 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.064187) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-10/tenet.tetras-libre.fr_demo_clara_06_generation.ttl +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-10/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) +- 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 *** @@ -976,7 +966,7 @@ - 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-11/tenet.tetras-libre.fr_demo_clara_06.ttl +- 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) @@ -985,73 +975,72 @@ - 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.027442) +- 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.095161) -- DEBUG - ----- reclassify-concept-2: 0/0 new triple (556, 0:00:00.052323) -- INFO - ----- reclassify-concept-3: 4/4 new triples (560, 0:00:00.047927) -- INFO - ----- reclassify-concept-4: 4/4 new triples (564, 0:00:00.060180) -- INFO - ----- reclassify-concept-5: 4/4 new triples (568, 0:00:00.042240) -- DEBUG - ----- reify-roles-as-concept: 0/0 new triple (568, 0:00:00.038871) -- INFO - ----- reclassify-existing-variable: 17/17 new triples (585, 0:00:00.032364) -- DEBUG - ----- add-new-variable-for-reified-concept: 0/0 new triple (585, 0:00:00.126156) -- INFO - ----- add-amr-leaf-for-reclassified-concept: 12/12 new triples (597, 0:00:00.038630) -- DEBUG - ----- add-amr-leaf-for-reified-concept: 0/0 new triple (597, 0:00:00.035030) -- INFO - ----- add-amr-edge-for-core-relation: 9/9 new triples (606, 0:00:00.080454) -- DEBUG - ----- add-amr-edge-for-reified-concept: 0/0 new triple (606, 0:00:00.060857) -- INFO - ----- add-amr-edge-for-name-relation: 5/5 new triples (611, 0:00:00.074942) -- DEBUG - ----- add-value-for-quant-relation: 0/0 new triple (611, 0:00:00.071937) -- DEBUG - ----- add-amr-edge-for-polarity-relation: 0/0 new triple (611, 0:00:00.072551) -- INFO - ----- update-amr-edge-role-1: 4/4 new triples (615, 0:00:00.031088) -- INFO - ----- add-amr-root: 5/5 new triples (620, 0:00:00.021601) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-11/tenet.tetras-libre.fr_demo_clara_06_preprocessing.ttl +- 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.064508) -- INFO - ----- extract atom individuals: 8/8 new triples (640, 0:00:00.039274) -- INFO - ----- extract atomic properties: 13/13 new triples (653, 0:00:00.039512) -- INFO - ----- extract atom values: 5/5 new triples (658, 0:00:00.033050) -- INFO - ----- extract atom phenomena: 7/7 new triples (665, 0:00:00.044302) -- INFO - ----- propagate atom relations: 10/26 new triples (675, 0:00:00.342424) +- 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.006840) -- DEBUG - ----- analyze "polarity" phenomena (2): 0/0 new triple (675, 0:00:00.011165) -- DEBUG - ----- analyze "polarity" phenomena (3): 0/0 new triple (675, 0:00:00.015775) -- DEBUG - ----- analyze "polarity" phenomena (4): 0/0 new triple (675, 0:00:00.031216) -- DEBUG - ----- analyze "polarity" phenomena (5): 0/0 new triple (675, 0:00:00.031275) -- DEBUG - ----- analyze modifier phenomena (mod): 0/0 new triple (675, 0:00:00.007895) +- 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.013074) -- DEBUG - ----- analyze "or" phenomena (2): 0/0 new triple (675, 0:00:00.008960) -- DEBUG - ----- analyze "and" phenomena (1): 0/0 new triple (675, 0:00:00.009167) -- DEBUG - ----- analyze "and" phenomena (2): 0/0 new triple (675, 0:00:00.008926) +- 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.028243) -- DEBUG - ----- extract composite classes (2): 0/0 new triple (675, 0:00:00.017516) +- 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.113400) -- INFO - ----- extract ODRL rules: 12/12 new triples (701, 0:00:00.099937) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-11/tenet.tetras-libre.fr_demo_clara_06_transduction.ttl +- 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.072909) +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-11/tenet.tetras-libre.fr_demo_clara_06_generation.ttl +- 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-20230418/technical-data/tenet.tetras-libre.fr_demo_clara_06-11/tenet.tetras-libre.fr_demo_clara_06_factoid.ttl) +- 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 - @@ -1061,12 +1050,12 @@ - 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-20230418/aos06_factoid.ttl +- 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.988663 ------ Process Time: 0:00:29.676404 +----- Total Time: 0:00:29.378040 +----- Process Time: 0:00:28.971388 *** - *** diff --git a/tenet/transduction/net/action_net.py b/tenet/transduction/net/action_net.py index 2372218c85d46ae644f97de1a622af8f588294ac..b926fa59dbd4f57ca8c191f8e061a0c0d39d70fa 100644 --- a/tenet/transduction/net/action_net.py +++ b/tenet/transduction/net/action_net.py @@ -31,7 +31,7 @@ class ActionNet(Net): # -- Net Type self.type_name = 'action' self.type_id = 'Action_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['action_name', diff --git a/tenet/transduction/net/atom_class_net.py b/tenet/transduction/net/atom_class_net.py index 017c04c0e7d991ed5b3d62a213a34b4a02fe13b1..b0f7f9242b161d711a4608b6b4ae76b72eb8e9b4 100644 --- a/tenet/transduction/net/atom_class_net.py +++ b/tenet/transduction/net/atom_class_net.py @@ -8,6 +8,7 @@ #============================================================================== from transduction.net import ClassNet +from transduction.rdfterm_computer import produce_uriref, produce_literal #============================================================================== @@ -30,4 +31,4 @@ class AtomClassNet(ClassNet): # -- Net Type self.type_name = 'atomClass' self.type_id = 'Atom_Class_Net' - self.type_uri = f'net:{self.type_id}' \ No newline at end of file + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') \ No newline at end of file diff --git a/tenet/transduction/net/atom_property_net.py b/tenet/transduction/net/atom_property_net.py index faf3ce959926f096fa938709fbe48741b0316ca6..8e68b85d332ad279cf19ea88908fabb55fbe6e81 100644 --- a/tenet/transduction/net/atom_property_net.py +++ b/tenet/transduction/net/atom_property_net.py @@ -31,7 +31,7 @@ class AtomPropertyNet(PropertyNet): # -- Net Type self.type_name = 'atomProperty' self.type_id = 'Atom_Property_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['core_role', 'target_argument_node', 'property_type', diff --git a/tenet/transduction/net/axiom_net.py b/tenet/transduction/net/axiom_net.py index 3764b6b93a06d0fcc073ac7b08918426234b593c..d1c15d4af73a7dd4cd7faf170f0eb63f914ccc89 100644 --- a/tenet/transduction/net/axiom_net.py +++ b/tenet/transduction/net/axiom_net.py @@ -31,7 +31,7 @@ class AxiomNet(Net): # -- Net Type self.type_name = 'axiom' self.type_id = 'Axiom_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['axiom_name', 'axiom_uri', 'axiom_net_argument'] diff --git a/tenet/transduction/net/class_net.py b/tenet/transduction/net/class_net.py index 90c30ca6cd30521dd50a6a406d34da052d99f1cd..5fdb9af2b1e33101b4b75d63105182749dc2787d 100644 --- a/tenet/transduction/net/class_net.py +++ b/tenet/transduction/net/class_net.py @@ -31,7 +31,7 @@ class ClassNet(Net): # -- Net Type self.type_name = 'class' self.type_id = 'Class_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['class_name', 'class_uri'] diff --git a/tenet/transduction/net/composite_class_net.py b/tenet/transduction/net/composite_class_net.py index f1e53b6b52a77c635d982c041c76c14385e2d3cc..b8bea7ab15bb13fbc403be591534f510db688de8 100644 --- a/tenet/transduction/net/composite_class_net.py +++ b/tenet/transduction/net/composite_class_net.py @@ -31,7 +31,7 @@ class CompositeClassNet(ClassNet): # -- Net Type self.type_name = 'compositeClass' self.type_id = 'Composite_Class_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['mother_class_net', 'restriction', 'restriction01'] diff --git a/tenet/transduction/net/composite_property_net.py b/tenet/transduction/net/composite_property_net.py index d44dc672e1cbafa80bf960876d944ed10780b703..78dc05e5a65134d392578d434933105e55cc9fef 100644 --- a/tenet/transduction/net/composite_property_net.py +++ b/tenet/transduction/net/composite_property_net.py @@ -31,7 +31,7 @@ class CompositePropertyNet(PropertyNet): # -- Net Type self.type_name = 'compositeProperty' self.type_id = 'Composite_Property_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['mother_property_net', 'core_role', 'target_argument_node', 'property_type', 'restriction'] diff --git a/tenet/transduction/net/individual_net.py b/tenet/transduction/net/individual_net.py index 5fbaabe15b789e45e8cd5452852d9e34d7215112..0a1339f9d81becc675955707a4493ece15bc91a6 100644 --- a/tenet/transduction/net/individual_net.py +++ b/tenet/transduction/net/individual_net.py @@ -31,7 +31,7 @@ class IndividualNet(Net): # -- Net Type self.type_name = 'individual' self.type_id = 'Individual_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['base_class_name', 'mother_class_net', 'individual_label', 'individual_uri'] diff --git a/tenet/transduction/net/phenomena_net.py b/tenet/transduction/net/phenomena_net.py index a05fbfc28d1c4e727c1527ad1c53f0a254709f1f..a0bf76117c4dfb01eacdb32ba808a4d9c71f1416 100644 --- a/tenet/transduction/net/phenomena_net.py +++ b/tenet/transduction/net/phenomena_net.py @@ -31,7 +31,7 @@ class PhenomenaNet(Net): # -- Net Type self.type_name = 'phenomena' self.type_id = 'Phenomena_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['phenomena_type', 'phenomena_ref'] diff --git a/tenet/transduction/net/property_net.py b/tenet/transduction/net/property_net.py index 5340c9b3065338079d9c63d386d30dc816f0f6ec..14f74d475dabc1ecbc3b049fffa10776f4deb284 100644 --- a/tenet/transduction/net/property_net.py +++ b/tenet/transduction/net/property_net.py @@ -31,7 +31,7 @@ class PropertyNet(Net): # -- Net Type self.type_name = 'property' self.type_id = 'Property_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['property_name', 'property_uri'] diff --git a/tenet/transduction/net/restriction_net.py b/tenet/transduction/net/restriction_net.py index 15e10b8f3498659f053b71ad2efa0fb00ff8b084..43b4b31b1cc652a4ad303947437a08f31ef3cff5 100644 --- a/tenet/transduction/net/restriction_net.py +++ b/tenet/transduction/net/restriction_net.py @@ -31,7 +31,7 @@ class RestrictionNet(Net): # -- Net Type self.type_name = 'restriction' self.type_id = 'Restriction_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['target_node', 'restriction_property', 'restriction_net_value'] diff --git a/tenet/transduction/net/rule_net.py b/tenet/transduction/net/rule_net.py index d024ce4449f701b6d7ecaff0d0404777c419d6c6..438e4727436a1aa4edf9f4fd48e1a37c8282c3e0 100644 --- a/tenet/transduction/net/rule_net.py +++ b/tenet/transduction/net/rule_net.py @@ -31,7 +31,7 @@ class RuleNet(Net): # -- Net Type self.type_name = 'rule' self.type_id = 'Rule_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['rule_relation_name', 'rule_action_net'] diff --git a/tenet/transduction/net/value_net.py b/tenet/transduction/net/value_net.py index 67b172973764384a83dbcc4bef6178093fdbabfe..0238bda29471441f833c6113b164a630ad133631 100644 --- a/tenet/transduction/net/value_net.py +++ b/tenet/transduction/net/value_net.py @@ -31,7 +31,7 @@ class ValueNet(Net): # -- Net Type self.type_name = 'value' self.type_id = 'Value_Net' - self.type_uri = f'net:{self.type_id}' + self.type_uri = produce_uriref(self.support_graph, f'net:{self.type_id}') # -- Net Attributes self.attr_list += ['amr_value', 'value_label'] diff --git a/tests/dev_tests/test_data/negation-devGraph-1.result.ttl b/tests/dev_tests/test_data/negation-devGraph-1.result.ttl index e326552a969c9e8b39213bd2c9628a4d1dc96c73..ccd6134800e64db9c6c905a6f673828cd75ffdd3 100644 --- a/tests/dev_tests/test_data/negation-devGraph-1.result.ttl +++ b/tests/dev_tests/test_data/negation-devGraph-1.result.ttl @@ -11,16 +11,6 @@ @prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . -ns3:Concept a rdfs:Class, - owl:Class ; - rdfs:label "AMR-Concept" ; - rdfs:subClassOf :AMR_Linked_Data . - -ns3:Role a rdfs:Class, - owl:Class ; - rdfs:label "AMR-Role" ; - rdfs:subClassOf :AMR_Linked_Data . - <http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ; ns3:hasSentence "The sun is a star." ; ns3:root <http://amr.isi.edu/amr_data/test-1#s> . @@ -29,45 +19,83 @@ ns3:Role a rdfs:Class, ns3:hasSentence "Earth is a planet." ; ns3:root <http://amr.isi.edu/amr_data/test-2#p> . -ns11:adapt-01.ARG1 a ns11:FrameRole . +ns11:adapt-01.ARG1 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:contrast-01.ARG1 a ns11:FrameRole . +ns11:contrast-01.ARG1 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:contrast-01.ARG2 a ns11:FrameRole . +ns11:contrast-01.ARG2 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:grant-01.ARG0 a ns11:FrameRole . +ns11:grant-01.ARG0 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:grant-01.ARG1 a ns11:FrameRole . +ns11:grant-01.ARG1 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:grant-01.ARG2 a ns11:FrameRole . +ns11:grant-01.ARG2 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:license-01.ARG1 a ns11:FrameRole . +ns11:license-01.ARG1 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:license-01.ARG2 a ns11:FrameRole . +ns11:license-01.ARG2 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:produce-01.ARG0 a ns11:FrameRole . +ns11:produce-01.ARG0 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:produce-01.ARG1 a ns11:FrameRole . +ns11:produce-01.ARG1 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:public-02.ARG1 a ns11:FrameRole . +ns11:public-02.ARG1 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:reproduce-01.ARG0 a ns11:FrameRole . +ns11:reproduce-01.ARG0 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:reproduce-01.ARG1 a ns11:FrameRole . +ns11:reproduce-01.ARG1 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:share-01.ARG0 a ns11:FrameRole . +ns11:share-01.ARG0 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . -ns11:share-01.ARG1 a ns11:FrameRole . +ns11:share-01.ARG1 a ns11:FrameRole, + owl:AnnotationProperty, + owl:NamedIndividual . ns2:domain a ns3:Role, owl:AnnotationProperty, owl:NamedIndividual . -ns2:mod a ns3:Role . +ns2:mod a ns3:Role, + owl:AnnotationProperty, + owl:NamedIndividual . -ns2:op1 a ns3:Role . +ns2:op1 a ns3:Role, + owl:AnnotationProperty, + owl:NamedIndividual . -ns2:op2 a ns3:Role . +ns2:op2 a ns3:Role, + owl:AnnotationProperty, + owl:NamedIndividual . + +ns2:polarity a owl:AnnotationProperty . ns3:NamedEntity a ns3:Concept, owl:Class, @@ -76,12 +104,18 @@ ns3:NamedEntity a ns3:Concept, "AMR-Term" ; rdfs:subClassOf :AMR_Linked_Data . +ns3:has-id a owl:AnnotationProperty . + +ns3:has-sentence a owl:AnnotationProperty . + ns3:hasID a owl:AnnotationProperty . ns3:hasSentence a owl:AnnotationProperty . ns3:root a owl:AnnotationProperty . +rdf:Property a owl:Class . + <https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ; owl:versionIRI :0.1 . @@ -90,79 +124,117 @@ ns3:root a owl:AnnotationProperty . :AMR_Prep_Role a owl:Class ; rdfs:subClassOf :AMR_Role . -:edge_a2_ARG1_m a :AMR_Edge ; +:edge_a2_ARG1_m a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG1 ; :hasRoleID "ARG1" . -:edge_a_op1_p2 a :AMR_Edge ; +:edge_a_op1_p2 a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_op1 ; :hasRoleID "op1" . -:edge_a_op2_r a :AMR_Edge ; +:edge_a_op2_r a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_op2 ; :hasRoleID "op2" . -:edge_c_ARG1_l2 a :AMR_Edge ; +:edge_c_ARG1_l2 a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG1 ; :hasRoleID "ARG1" . -:edge_c_ARG2_s a :AMR_Edge ; +:edge_c_ARG2_s a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG2 ; :hasRoleID "ARG2" . -:edge_g_ARG0_l a :AMR_Edge ; +:edge_g_ARG0_l a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG0 ; :hasRoleID "ARG0" . -:edge_g_ARG1_c a :AMR_Edge ; +:edge_g_ARG1_c a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG1 ; :hasRoleID "ARG1" . -:edge_g_ARG2_y a :AMR_Edge ; +:edge_g_ARG2_y a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG2 ; :hasRoleID "ARG2" . -:edge_l2_ARG1_a a :AMR_Edge ; +:edge_l2_ARG1_a a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG1 ; :hasRoleID "ARG1" . -:edge_l2_ARG2_y a :AMR_Edge ; +:edge_l2_ARG2_y a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG2 ; :hasRoleID "ARG2" . -:edge_l_mod_t a :AMR_Edge ; +:edge_l_mod_t a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_mod ; :hasRoleID "mod" . -:edge_p2_ARG0_y a :AMR_Edge ; +:edge_p2_ARG0_y a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG0 ; :hasRoleID "ARG0" . -:edge_p2_ARG1_m a :AMR_Edge ; +:edge_p2_ARG1_m a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG1 ; :hasRoleID "ARG1" . -:edge_p_ARG1_l a :AMR_Edge ; +:edge_p_ARG1_l a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG1 ; :hasRoleID "ARG1" . -:edge_r_ARG0_y a :AMR_Edge ; +:edge_r_ARG0_y a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG0 ; :hasRoleID "ARG0" . -:edge_r_ARG1_m a :AMR_Edge ; +:edge_r_ARG1_m a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG1 ; :hasRoleID "ARG1" . -:edge_s_ARG0_y a :AMR_Edge ; +:edge_s_ARG0_y a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG0 ; :hasRoleID "ARG0" . -:edge_s_ARG1_m a :AMR_Edge ; +:edge_s_ARG1_m a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_ARG1 ; :hasRoleID "ARG1" . -:edge_s_polarity_negative a :AMR_Edge ; +:edge_s_polarity_negative a owl:AnnotationProperty, + owl:NamedIndividual, + :AMR_Edge ; :hasAmrRole :role_polarity ; :hasRoleID "polarity" . @@ -184,6 +256,8 @@ ns3:root a owl:AnnotationProperty . :getPropertyType a owl:AnnotationProperty ; rdfs:subPropertyOf :getProperty . +:hasAmrRole a owl:AnnotationProperty . + :hasConcept a owl:ObjectProperty ; rdfs:domain :AMR_Leaf ; rdfs:subPropertyOf :AMR_ObjectProperty . @@ -194,6 +268,8 @@ ns3:root a owl:AnnotationProperty . :hasEdgeLink a owl:AnnotationProperty ; rdfs:subPropertyOf :hasLink . +:hasPhenomenaLink a owl:AnnotationProperty . + :hasReification a owl:AnnotationProperty ; rdfs:range xsd:boolean ; rdfs:subPropertyOf :AMR_AnnotationProperty . @@ -383,7 +459,8 @@ ns3:root a owl:AnnotationProperty . rdfs:subClassOf :AMR_Specific_Role ; :label "quant" . -:root_cc-sentence-examples-03 a :AMR_Root ; +:root_cc-sentence-examples-03 a owl:NamedIndividual, + :AMR_Root ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#root01> ; :hasRootLeaf :leaf_grant-01_g ; :hasSentenceID "cc-sentence-examples-03" ; @@ -398,8 +475,6 @@ ns3:root a owl:AnnotationProperty . :toReifyWithHeadEdge a owl:AnnotationProperty ; rdfs:subPropertyOf :toReify . -<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology . - sys:Event a owl:Class ; rdfs:subClassOf sys:Out_Structure . @@ -415,9 +490,8 @@ sys:hasDegree a owl:ObjectProperty ; sys:hasFeature a owl:ObjectProperty ; rdfs:subPropertyOf sys:Out_ObjectProperty . -<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology . - -cprm:Config_Parameters a owl:Class ; +cprm:Config_Parameters a owl:Class, + owl:NamedIndividual ; cprm:baseURI "https://tenet.tetras-libre.fr/" ; cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ; cprm:newClassRef "new-class#" ; @@ -425,38 +499,39 @@ cprm:Config_Parameters a owl:Class ; cprm:objectRef "object_" ; cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" . -cprm:baseURI a rdf:Property ; +cprm:baseURI a owl:AnnotationProperty, + owl:DatatypeProperty ; rdfs:label "Base URI" ; rdfs:domain cprm:Frame ; rdfs:range xsd:string ; rdfs:subPropertyOf cprm:configParamProperty . -cprm:netURI a rdf:Property ; +cprm:netURI a owl:AnnotationProperty, + owl:DatatypeProperty ; rdfs:label "Net URI" ; rdfs:domain cprm:Frame ; rdfs:range xsd:string ; rdfs:subPropertyOf cprm:configParamProperty . -cprm:newClassRef a rdf:Property ; +cprm:newClassRef a owl:AnnotationProperty ; rdfs:label "Reference for a new class" ; rdfs:subPropertyOf cprm:configParamProperty . -cprm:newPropertyRef a rdf:Property ; +cprm:newPropertyRef a owl:AnnotationProperty ; rdfs:label "Reference for a new property" ; rdfs:subPropertyOf cprm:configParamProperty . -cprm:objectRef a rdf:Property ; +cprm:objectRef a owl:AnnotationProperty ; rdfs:label "Object Reference" ; rdfs:subPropertyOf cprm:configParamProperty . -cprm:targetOntologyURI a rdf:Property ; +cprm:targetOntologyURI a owl:AnnotationProperty, + owl:DatatypeProperty ; rdfs:label "URI of classes in target ontology" ; rdfs:domain cprm:Frame ; rdfs:range xsd:string ; rdfs:subPropertyOf cprm:configParamProperty . -<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology . - net:Instance a owl:Class ; rdfs:label "Semantic Net Instance" ; rdfs:subClassOf net:Net_Structure . @@ -483,7 +558,8 @@ net:atomOf a owl:AnnotationProperty ; rdfs:label "atom of" ; rdfs:subPropertyOf net:typeProperty . -net:atomProperty_adapt_a2 a net:Atom_Property_Net ; +net:atomProperty_adapt_a2 a owl:NamedIndividual, + net:Atom_Property_Net ; :role_ARG1 net:atomClass_material_m ; net:coverBaseNode :leaf_adapt-01_a2 ; net:coverNode :leaf_adapt-01_a2 ; @@ -499,7 +575,8 @@ net:atomProperty_adapt_a2 a net:Atom_Property_Net ; net:trackProgress net:initialized, net:relation_propagated . -net:atomProperty_grant_g a net:Atom_Property_Net ; +net:atomProperty_grant_g a owl:NamedIndividual, + net:Atom_Property_Net ; :role_ARG0 net:atomProperty_license_l ; :role_ARG1 net:phenomena_conjunction_c ; :role_ARG2 net:atomClass_you_y, @@ -526,7 +603,8 @@ net:atomProperty_grant_g a net:Atom_Property_Net ; net:trackProgress net:initialized, net:relation_propagated . -net:atomProperty_public_p a net:Atom_Property_Net ; +net:atomProperty_public_p a owl:NamedIndividual, + net:Atom_Property_Net ; :role_ARG1 net:atomProperty_license_l ; net:coverBaseNode :leaf_public-02_p ; net:coverNode :leaf_public-02_p ; @@ -546,6 +624,8 @@ net:atomType a owl:AnnotationProperty ; rdfs:label "atom type" ; rdfs:subPropertyOf net:objectType . +net:bindPropertyNet a owl:AnnotationProperty . + net:class a owl:Class ; rdfs:label "class" ; rdfs:subClassOf net:Type . @@ -554,7 +634,8 @@ net:composite a owl:Class ; rdfs:label "composite" ; rdfs:subClassOf net:Type . -net:compositeProperty_public-license a net:Composite_Property_Net ; +net:compositeProperty_public-license a owl:NamedIndividual, + net:Composite_Property_Net ; :role_ARG1 net:atomProperty_license_l ; net:coverArgNode :leaf_license-01_l ; net:coverBaseNode :leaf_public-02_p ; @@ -571,6 +652,22 @@ net:conjunctive_list a owl:Class ; rdfs:label "conjunctive-list" ; rdfs:subClassOf net:list . +net:containsNet a owl:AnnotationProperty . + +net:containsNet1 a owl:AnnotationProperty . + +net:containsNet2 a owl:AnnotationProperty . + +net:coverArgNode a owl:AnnotationProperty . + +net:coverBaseNode a owl:AnnotationProperty . + +net:coverNode a owl:AnnotationProperty . + +net:coverNodeCount a owl:AnnotationProperty . + +net:coverTargetNode a owl:AnnotationProperty . + net:disjunctive_list a owl:Class ; rdfs:label "disjunctive-list" ; rdfs:subClassOf net:list . @@ -591,6 +688,46 @@ net:featureClass a owl:AnnotationProperty ; rdfs:label "feature class" ; rdfs:subPropertyOf net:objectValue . +net:fromClassNet a owl:AnnotationProperty . + +net:hasBaseClassName a owl:AnnotationProperty . + +net:hasClassName a owl:AnnotationProperty . + +net:hasClassType a owl:AnnotationProperty . + +net:hasIndividualLabel a owl:AnnotationProperty . + +net:hasLogicalConstraint a owl:AnnotationProperty . + +net:hasMotherClassNet a owl:AnnotationProperty . + +net:hasNaming a owl:AnnotationProperty . + +net:hasPhenomenaRef a owl:AnnotationProperty . + +net:hasPhenomenaType a owl:AnnotationProperty . + +net:hasPropertyName a owl:AnnotationProperty . + +net:hasPropertyName01 a owl:AnnotationProperty . + +net:hasPropertyName10 a owl:AnnotationProperty . + +net:hasPropertyName12 a owl:AnnotationProperty . + +net:hasPropertyType a owl:AnnotationProperty . + +net:hasRestriction01 a owl:AnnotationProperty . + +net:hasRestrictionNetValue a owl:AnnotationProperty . + +net:hasRestrictionOnProperty a owl:AnnotationProperty . + +net:hasStructure a owl:AnnotationProperty . + +net:hasValueLabel a owl:AnnotationProperty . + net:has_atom a owl:AnnotationProperty ; rdfs:label "has atom" ; rdfs:subPropertyOf net:has_object . @@ -678,7 +815,8 @@ net:has_target a owl:AnnotationProperty ; rdfs:label "has target" ; rdfs:subPropertyOf net:has_relation_value . -net:individual_this_t a net:Individual_Net ; +net:individual_this_t a owl:NamedIndividual, + net:Individual_Net ; net:coverBaseNode :leaf_this_t ; net:coverNode :leaf_this_t ; net:hasBaseClassName "Feature" ; @@ -691,6 +829,8 @@ net:individual_this_t a net:Individual_Net ; net:inverse_direction a owl:NamedIndividual . +net:isCoreRoleLinked a owl:AnnotationProperty . + net:listBy a owl:AnnotationProperty ; rdfs:label "list by" ; rdfs:subPropertyOf net:typeProperty . @@ -725,6 +865,14 @@ net:state_property a owl:Class ; rdfs:label "stateProperty" ; rdfs:subClassOf net:Type . +net:targetArgumentNode a owl:AnnotationProperty . + +net:trackMainNetComposante a owl:AnnotationProperty . + +net:trackNetComposante a owl:AnnotationProperty . + +net:trackProgress a owl:AnnotationProperty . + net:type a owl:AnnotationProperty ; rdfs:label "type "@fr ; rdfs:subPropertyOf net:netProperty . @@ -737,15 +885,20 @@ net:verbClass a owl:AnnotationProperty ; rdfs:label "verb class" ; rdfs:subPropertyOf net:objectValue . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a2> a ns11:adapt-01 ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a2> a ns11:adapt-01, + owl:Class, + owl:NamedIndividual ; ns11:adapt-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; rdfs:subClassOf :AMR_Linked_Data . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p> a ns11:public-02 ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p> a ns11:public-02, + owl:Class, + owl:NamedIndividual ; ns11:public-02.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> ; rdfs:subClassOf :AMR_Linked_Data . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#root01> a ns3:AMR ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#root01> a ns3:AMR, + owl:NamedIndividual ; ns3:has-id "cc-sentence-examples-03" ; ns3:has-sentence "This Public License grants You a license to produce and reproduce, but not Share, Adapted Material." ; ns3:root <http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> . @@ -763,53 +916,77 @@ ns3:AMR a owl:Class ; :AMR_Value a owl:Class ; rdfs:subClassOf :AMR_Element . -:concept_adapt-01 rdfs:subClassOf :AMR_Predicat_Concept ; +:concept_adapt-01 a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Predicat_Concept ; :fromAmrLk ns11:adapt-01 ; :label "adapt-01" . -:concept_and rdfs:subClassOf :AMR_Relation_Concept ; +:concept_and a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Relation_Concept ; :fromAmrLk ns3:and ; :hasPhenomenaLink :phenomena_conjunction_and ; :label "and" . -:concept_contrast-01 rdfs:subClassOf :AMR_Relation_Concept ; +:concept_contrast-01 a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Relation_Concept ; :fromAmrLk ns11:contrast-01 ; :hasPhenomenaLink :phenomena_conjunction ; :label "contrast-01" . -:concept_grant-01 rdfs:subClassOf :AMR_Predicat_Concept ; +:concept_grant-01 a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Predicat_Concept ; :fromAmrLk ns11:grant-01 ; :label "grant-01" . -:concept_material rdfs:subClassOf :AMR_Term_Concept ; +:concept_material a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Term_Concept ; :fromAmrLk ns2:material ; :label "material" . -:concept_produce-01 rdfs:subClassOf :AMR_Predicat_Concept ; +:concept_produce-01 a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Predicat_Concept ; :fromAmrLk ns11:produce-01 ; :label "produce-01" . -:concept_public-02 rdfs:subClassOf :AMR_Predicat_Concept ; +:concept_public-02 a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Predicat_Concept ; :fromAmrLk ns11:public-02 ; :label "public-02" . -:concept_reproduce-01 rdfs:subClassOf :AMR_Predicat_Concept ; +:concept_reproduce-01 a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Predicat_Concept ; :fromAmrLk ns11:reproduce-01 ; :label "reproduce-01" . -:concept_share-01 rdfs:subClassOf :AMR_Predicat_Concept ; +:concept_share-01 a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Predicat_Concept ; :fromAmrLk ns11:share-01 ; :label "share-01" . -:concept_this rdfs:subClassOf :AMR_Term_Concept ; +:concept_this a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Term_Concept ; :fromAmrLk ns2:this ; :label "this" . -:concept_you rdfs:subClassOf :AMR_Term_Concept ; +:concept_you a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Term_Concept ; :fromAmrLk ns2:you ; :label "you" . -:role_mod a owl:Class, +:role_mod a owl:AnnotationProperty, + owl:Class, + owl:NamedIndividual, net:Relation ; rdfs:subClassOf :AMR_NonCore_Role ; :getDirectPropertyName "hasFeature"^^xsd:string ; @@ -820,70 +997,89 @@ ns3:AMR a owl:Class ; :toReifyWithBaseEdge "ARG0" ; :toReifyWithHeadEdge "ARG1" . -:role_op1 a owl:Class, +:role_op1 a owl:AnnotationProperty, + owl:Class, + owl:NamedIndividual, net:Relation ; rdfs:subClassOf :AMR_Op_Role ; :label "op1" . -:role_op2 a owl:Class, +:role_op2 a owl:AnnotationProperty, + owl:Class, + owl:NamedIndividual, net:Relation ; rdfs:subClassOf :AMR_Op_Role ; :label "op2" . -:role_polarity a owl:Class, +:role_polarity a owl:AnnotationProperty, + owl:Class, + owl:NamedIndividual, net:Relation ; rdfs:subClassOf :AMR_Specific_Role ; :label "polarity" . -:variable_a a :AMR_Variable ; +:variable_a a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> ; :label "a" . -:variable_a2 a :AMR_Variable ; +:variable_a2 a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#a2> ; :label "a2" . -:variable_c a :AMR_Variable ; +:variable_c a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> ; :label "c" . -:variable_g a :AMR_Variable ; +:variable_g a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> ; :label "g" . -:variable_l a :AMR_Variable ; +:variable_l a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> ; :label "l" . -:variable_l2 a :AMR_Variable ; +:variable_l2 a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> ; :label "l2" . -:variable_m a :AMR_Variable ; +:variable_m a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; :label "m" . -:variable_p a :AMR_Variable ; +:variable_p a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#p> ; :label "p" . -:variable_p2 a :AMR_Variable ; +:variable_p2 a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> ; :label "p2" . -:variable_r a :AMR_Variable ; +:variable_r a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> ; :label "r" . -:variable_s a :AMR_Variable ; +:variable_s a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> ; :label "s" . -:variable_t a :AMR_Variable ; +:variable_t a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#t> ; :label "t" . -:variable_y a :AMR_Variable ; +:variable_y a owl:NamedIndividual, + :AMR_Variable ; :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; :label "y" . @@ -920,7 +1116,8 @@ net:class_list a owl:Class ; net:has_value a owl:AnnotationProperty ; rdfs:subPropertyOf net:netProperty . -net:logicalSet_and_a a net:Logical_Set_Net ; +net:logicalSet_and_a a owl:NamedIndividual, + net:Logical_Set_Net ; :role_op1 net:atomProperty_produce_p2 ; :role_op2 net:atomProperty_reproduce_r ; net:bindPropertyNet net:atomProperty_license_l2 ; @@ -939,7 +1136,8 @@ net:objectType a owl:AnnotationProperty ; rdfs:label "object type" ; rdfs:subPropertyOf net:objectProperty . -net:phenomena_conjunction-AND_a a net:Phenomena_Net ; +net:phenomena_conjunction-AND_a a owl:NamedIndividual, + net:Phenomena_Net ; :role_op1 net:atomProperty_produce_p2 ; :role_op2 net:atomProperty_reproduce_r ; net:coverBaseNode :leaf_and_a ; @@ -951,7 +1149,8 @@ net:phenomena_conjunction-AND_a a net:Phenomena_Net ; net:trackProgress net:initialized, net:relation_propagated . -net:phenomena_conjunction_c a net:Phenomena_Net ; +net:phenomena_conjunction_c a owl:NamedIndividual, + net:Phenomena_Net ; :role_ARG1 net:atomProperty_license_l2 ; :role_ARG2 net:atomProperty_share_s ; net:coverBaseNode :leaf_contrast-01_c ; @@ -963,7 +1162,8 @@ net:phenomena_conjunction_c a net:Phenomena_Net ; net:trackProgress net:initialized, net:relation_propagated . -net:restriction_produceing_material a net:Restriction_Net ; +net:restriction_produceing_material a owl:NamedIndividual, + net:Restriction_Net ; net:coverBaseNode :leaf_you_y ; net:coverNode :leaf_material_m, :leaf_produce-01_p2, @@ -974,7 +1174,8 @@ net:restriction_produceing_material a net:Restriction_Net ; net:hasRestrictionNetValue net:atomClass_material_m ; net:hasRestrictionOnProperty net:atomProperty_produce_p2 . -net:restriction_reproduceing_material a net:Restriction_Net ; +net:restriction_reproduceing_material a owl:NamedIndividual, + net:Restriction_Net ; net:coverBaseNode :leaf_you_y ; net:coverNode :leaf_material_m, :leaf_reproduce-01_r, @@ -985,7 +1186,8 @@ net:restriction_reproduceing_material a net:Restriction_Net ; net:hasRestrictionNetValue net:atomClass_material_m ; net:hasRestrictionOnProperty net:atomProperty_reproduce_r . -net:restriction_shareing_material a net:Restriction_Net ; +net:restriction_shareing_material a owl:NamedIndividual, + net:Restriction_Net ; net:coverBaseNode :leaf_you_y ; net:coverNode :leaf_material_m, :leaf_share-01_s, @@ -996,84 +1198,123 @@ net:restriction_shareing_material a net:Restriction_Net ; net:hasRestrictionNetValue net:atomClass_material_m ; net:hasRestrictionOnProperty net:atomProperty_share_s . -net:value_negative_blankNode a net:Value_Net ; +net:value_negative_blankNode a owl:NamedIndividual, + net:Value_Net ; net:hasNaming "negative" ; net:hasStructure "cc-sentence-examples-03" ; net:hasValueLabel "negative" ; net:trackProgress net:initialized, net:relation_propagated . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> a ns3:and ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> a ns3:and, + owl:Class, + owl:NamedIndividual ; ns2:op1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> ; ns2:op2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> ; rdfs:subClassOf :AMR_Linked_Data . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> a ns11:contrast-01 ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> a ns11:contrast-01, + owl:Class, + owl:NamedIndividual ; ns11:contrast-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> ; ns11:contrast-01.ARG2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> ; rdfs:subClassOf :AMR_Linked_Data . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> a ns11:grant-01 ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> a ns11:grant-01, + owl:Class, + owl:NamedIndividual ; ns11:grant-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> ; ns11:grant-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> ; ns11:grant-01.ARG2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; rdfs:subClassOf :AMR_Linked_Data . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> a ns11:license-01 ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> a ns11:license-01, + owl:Class, + owl:NamedIndividual ; ns11:license-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> ; ns11:license-01.ARG2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; rdfs:subClassOf :AMR_Linked_Data . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> a ns11:produce-01 ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> a ns11:produce-01, + owl:Class, + owl:NamedIndividual ; ns11:produce-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; ns11:produce-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; rdfs:subClassOf :AMR_Linked_Data . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> a ns11:reproduce-01 ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> a ns11:reproduce-01, + owl:Class, + owl:NamedIndividual ; ns11:reproduce-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; ns11:reproduce-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; rdfs:subClassOf :AMR_Linked_Data . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> a ns11:share-01 ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> a ns11:share-01, + owl:Class, + owl:NamedIndividual ; ns11:share-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; ns11:share-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; ns2:polarity "-" ; rdfs:subClassOf :AMR_Linked_Data . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#t> a ns2:this ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#t> a ns2:this, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . -ns11:adapt-01 a ns3:Frame ; +ns11:adapt-01 a ns3:Frame, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . -ns11:contrast-01 a ns3:Frame ; +ns11:contrast-01 a ns3:Frame, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . -ns11:grant-01 a ns3:Frame ; +ns11:grant-01 a ns3:Frame, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . -ns11:produce-01 a ns3:Frame ; +ns11:produce-01 a ns3:Frame, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . -ns11:public-02 a ns3:Frame ; +ns11:public-02 a ns3:Frame, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . -ns11:reproduce-01 a ns3:Frame ; +ns11:reproduce-01 a ns3:Frame, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . -ns11:share-01 a ns3:Frame ; +ns11:share-01 a ns3:Frame, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . -ns2:material a ns3:Concept ; +ns2:material a ns3:Concept, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . -ns2:this a ns3:Concept ; +ns2:this a ns3:Concept, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . -ns2:you a ns3:Concept ; +ns2:you a ns3:Concept, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . -ns3:and a ns3:Concept ; +ns3:and a ns3:Concept, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . :AMR_Phenomena a owl:Class ; @@ -1082,14 +1323,17 @@ ns3:and a ns3:Concept ; :AMR_Relation_Concept a owl:Class ; rdfs:subClassOf :AMR_Concept . -:concept_license-01 rdfs:subClassOf :AMR_Predicat_Concept ; +:concept_license-01 a owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Predicat_Concept ; :fromAmrLk ns11:license-01 ; :label "license-01" . :hasLink a owl:AnnotationProperty ; rdfs:subPropertyOf :AMR_AnnotationProperty . -:leaf_adapt-01_a2 a :AMR_Leaf ; +:leaf_adapt-01_a2 a owl:NamedIndividual, + :AMR_Leaf ; :edge_a2_ARG1_m :leaf_material_m ; :hasConcept :concept_adapt-01 ; :hasVariable :variable_a2 . @@ -1099,7 +1343,8 @@ ns3:and a ns3:Concept ; :hasConceptLink "and" ; :label "conjunction-AND" . -:value_negative a :AMR_Value ; +:value_negative a owl:NamedIndividual, + :AMR_Value ; rdfs:label "negative" . sys:Out_ObjectProperty a owl:ObjectProperty . @@ -1113,7 +1358,8 @@ net:Phenomena_Net a owl:Class ; net:Property_Net a owl:Class ; rdfs:subClassOf net:Net . -net:atomProperty_license_l2 a net:Atom_Property_Net ; +net:atomProperty_license_l2 a owl:NamedIndividual, + net:Atom_Property_Net ; :role_ARG1 net:atomProperty_produce_p2, net:atomProperty_reproduce_r, net:logicalSet_and_a, @@ -1141,7 +1387,8 @@ net:atomProperty_license_l2 a net:Atom_Property_Net ; net:trackProgress net:initialized, net:relation_propagated . -net:atomProperty_share_s a net:Atom_Property_Net ; +net:atomProperty_share_s a owl:NamedIndividual, + net:Atom_Property_Net ; :role_ARG0 net:atomClass_you_y, net:compositeClass_you-produceing-material_y, net:compositeClass_you-reproduceing-material_y, @@ -1171,11 +1418,15 @@ net:atomProperty_share_s a net:Atom_Property_Net ; net:objectProperty a owl:AnnotationProperty ; rdfs:label "object attribute" . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> a ns11:license-01 ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> a ns11:license-01, + owl:Class, + owl:NamedIndividual ; ns2:mod <http://amr.isi.edu/amr_data/cc-sentence-examples-03#t> ; rdfs:subClassOf :AMR_Linked_Data . -ns11:license-01 a ns3:Frame ; +ns11:license-01 a ns3:Frame, + owl:Class, + owl:NamedIndividual ; rdfs:subClassOf :AMR_Linked_Data . :AMR_Concept a owl:Class ; @@ -1197,20 +1448,24 @@ ns11:license-01 a ns3:Frame ; rdfs:range rdfs:Literal ; rdfs:subPropertyOf :AMR_AnnotationProperty . -:leaf_grant-01_g a :AMR_Leaf ; +:leaf_grant-01_g a owl:NamedIndividual, + :AMR_Leaf ; :edge_g_ARG0_l :leaf_license-01_l ; :edge_g_ARG1_c :leaf_contrast-01_c ; :edge_g_ARG2_y :leaf_you_y ; :hasConcept :concept_grant-01 ; :hasVariable :variable_g . -:leaf_license-01_l2 a :AMR_Leaf ; +:leaf_license-01_l2 a owl:NamedIndividual, + :AMR_Leaf ; :edge_l2_ARG1_a :leaf_and_a ; :edge_l2_ARG2_y :leaf_you_y ; :hasConcept :concept_license-01 ; :hasVariable :variable_l2 . -:role_ARG2 a owl:Class, +:role_ARG2 a owl:AnnotationProperty, + owl:Class, + owl:NamedIndividual, net:Relation ; rdfs:subClassOf :AMR_Core_Role ; :label "ARG2" . @@ -1238,13 +1493,15 @@ net:list a owl:Class ; :AMR_Element a owl:Class ; rdfs:subClassOf :AMR_Structure . -:leaf_contrast-01_c a :AMR_Leaf ; +:leaf_contrast-01_c a owl:NamedIndividual, + :AMR_Leaf ; :edge_c_ARG1_l2 :leaf_license-01_l2 ; :edge_c_ARG2_s :leaf_share-01_s ; :hasConcept :concept_contrast-01 ; :hasVariable :variable_c . -:leaf_public-02_p a :AMR_Leaf ; +:leaf_public-02_p a owl:NamedIndividual, + :AMR_Leaf ; :edge_p_ARG1_l :leaf_license-01_l ; :hasConcept :concept_public-02 ; :hasVariable :variable_p . @@ -1256,12 +1513,15 @@ net:list a owl:Class ; "neither" ; :label "conjunction" . -:role_ARG0 a owl:Class, +:role_ARG0 a owl:AnnotationProperty, + owl:Class, + owl:NamedIndividual, net:Relation ; rdfs:subClassOf :AMR_Core_Role ; :label "ARG0" . -net:atomClass_this_t a net:Atom_Class_Net, +net:atomClass_this_t a owl:NamedIndividual, + net:Atom_Class_Net, net:Deprecated_Net ; net:coverBaseNode :leaf_this_t ; net:coverNode :leaf_this_t ; @@ -1272,7 +1532,8 @@ net:atomClass_this_t a net:Atom_Class_Net, net:trackProgress net:initialized, net:relation_propagated . -net:atomProperty_license_l a net:Atom_Property_Net ; +net:atomProperty_license_l a owl:NamedIndividual, + net:Atom_Property_Net ; :role_mod net:atomClass_this_t ; net:coverBaseNode :leaf_license-01_l ; net:coverNode :leaf_license-01_l ; @@ -1291,7 +1552,13 @@ net:atomProperty_license_l a net:Atom_Property_Net ; net:typeProperty a owl:AnnotationProperty ; rdfs:label "type property" . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> a ns2:material ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> a ns2:material, + owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Linked_Data . + +ns3:Role a owl:Class ; + rdfs:label "AMR-Role" ; rdfs:subClassOf :AMR_Linked_Data . :AMR_NonCore_Role a owl:Class ; @@ -1306,7 +1573,8 @@ sys:Out_Structure a owl:Class ; net:Individual_Net a owl:Class ; rdfs:subClassOf net:Net . -net:individual_you-produceing-material_fromClass a net:Individual_Net ; +net:individual_you-produceing-material_fromClass a owl:NamedIndividual, + net:Individual_Net ; net:coverBaseNode :leaf_you_y ; net:coverNode :leaf_you_y ; net:fromClassNet net:compositeClass_you-produceing-material_y ; @@ -1318,7 +1586,8 @@ net:individual_you-produceing-material_fromClass a net:Individual_Net ; net:compositeClass_you-shareing-material_y ; net:hasStructure "cc-sentence-examples-03" . -net:individual_you-reproduceing-material_fromClass a net:Individual_Net ; +net:individual_you-reproduceing-material_fromClass a owl:NamedIndividual, + net:Individual_Net ; net:coverBaseNode :leaf_you_y ; net:coverNode :leaf_you_y ; net:fromClassNet net:compositeClass_you-reproduceing-material_y ; @@ -1330,7 +1599,8 @@ net:individual_you-reproduceing-material_fromClass a net:Individual_Net ; net:compositeClass_you-shareing-material_y ; net:hasStructure "cc-sentence-examples-03" . -net:individual_you-shareing-material_fromClass a net:Individual_Net ; +net:individual_you-shareing-material_fromClass a owl:NamedIndividual, + net:Individual_Net ; net:coverBaseNode :leaf_you_y ; net:coverNode :leaf_you_y ; net:fromClassNet net:compositeClass_you-shareing-material_y ; @@ -1342,7 +1612,8 @@ net:individual_you-shareing-material_fromClass a net:Individual_Net ; net:compositeClass_you-shareing-material_y ; net:hasStructure "cc-sentence-examples-03" . -net:individual_you_fromClass a net:Individual_Net ; +net:individual_you_fromClass a owl:NamedIndividual, + net:Individual_Net ; net:coverBaseNode :leaf_you_y ; net:coverNode :leaf_you_y ; net:fromClassNet net:atomClass_you_y ; @@ -1357,7 +1628,13 @@ net:individual_you_fromClass a net:Individual_Net ; net:netProperty a owl:AnnotationProperty ; rdfs:label "netProperty" . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> a ns2:you ; +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> a ns2:you, + owl:Class, + owl:NamedIndividual ; + rdfs:subClassOf :AMR_Linked_Data . + +ns3:Concept a owl:Class ; + rdfs:label "AMR-Concept" ; rdfs:subClassOf :AMR_Linked_Data . :AMR_ObjectProperty a owl:ObjectProperty ; @@ -1365,46 +1642,52 @@ net:netProperty a owl:AnnotationProperty ; :AMR_Structure a owl:Class . -:leaf_and_a a :AMR_Leaf ; +:leaf_and_a a owl:NamedIndividual, + :AMR_Leaf ; :edge_a_op1_p2 :leaf_produce-01_p2 ; :edge_a_op2_r :leaf_reproduce-01_r ; :hasConcept :concept_and ; :hasVariable :variable_a . -:leaf_produce-01_p2 a :AMR_Leaf ; +:leaf_produce-01_p2 a owl:NamedIndividual, + :AMR_Leaf ; :edge_p2_ARG0_y :leaf_you_y ; :edge_p2_ARG1_m :leaf_material_m ; :hasConcept :concept_produce-01 ; :hasVariable :variable_p2 . -:leaf_reproduce-01_r a :AMR_Leaf ; +:leaf_reproduce-01_r a owl:NamedIndividual, + :AMR_Leaf ; :edge_r_ARG0_y :leaf_you_y ; :edge_r_ARG1_m :leaf_material_m ; :hasConcept :concept_reproduce-01 ; :hasVariable :variable_r . -:leaf_share-01_s a :AMR_Leaf ; +:leaf_share-01_s a owl:NamedIndividual, + :AMR_Leaf ; :edge_s_ARG0_y :leaf_you_y ; :edge_s_ARG1_m :leaf_material_m ; :edge_s_polarity_negative :value_negative ; :hasConcept :concept_share-01 ; :hasVariable :variable_s . -:leaf_this_t a :AMR_Leaf ; +:leaf_this_t a owl:NamedIndividual, + :AMR_Leaf ; :hasConcept :concept_this ; :hasVariable :variable_t . sys:Entity a owl:Class ; rdfs:subClassOf sys:Out_Structure . -cprm:configParamProperty a rdf:Property ; +cprm:configParamProperty a owl:AnnotationProperty ; rdfs:label "Config Parameter Property" . net:Net_Structure a owl:Class ; rdfs:label "Semantic Net Structure" ; rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." . -net:atomProperty_produce_p2 a net:Atom_Property_Net ; +net:atomProperty_produce_p2 a owl:NamedIndividual, + net:Atom_Property_Net ; :role_ARG0 net:atomClass_you_y, net:compositeClass_you-produceing-material_y, net:compositeClass_you-reproduceing-material_y, @@ -1429,7 +1712,8 @@ net:atomProperty_produce_p2 a net:Atom_Property_Net ; net:trackProgress net:initialized, net:relation_propagated . -net:atomProperty_reproduce_r a net:Atom_Property_Net ; +net:atomProperty_reproduce_r a owl:NamedIndividual, + net:Atom_Property_Net ; :role_ARG0 net:atomClass_you_y, net:compositeClass_you-produceing-material_y, net:compositeClass_you-reproduceing-material_y, @@ -1454,8 +1738,6 @@ net:atomProperty_reproduce_r a net:Atom_Property_Net ; net:trackProgress net:initialized, net:relation_propagated . -rdf:Property a owl:Class . - :AMR_Predicat_Concept a owl:Class ; rdfs:subClassOf :AMR_Concept . @@ -1465,7 +1747,8 @@ rdf:Property a owl:Class . net:Relation a owl:Class ; rdfs:subClassOf net:Net_Structure . -net:atomClass_material_m a net:Atom_Class_Net ; +net:atomClass_material_m a owl:NamedIndividual, + net:Atom_Class_Net ; net:coverBaseNode :leaf_material_m ; net:coverNode :leaf_material_m ; net:coverNodeCount 1 ; @@ -1482,12 +1765,15 @@ ns3:Frame a ns3:Concept, rdfs:label "AMR-PropBank-Frame" ; rdfs:subClassOf :AMR_Linked_Data . -:leaf_license-01_l a :AMR_Leaf ; +:leaf_license-01_l a owl:NamedIndividual, + :AMR_Leaf ; :edge_l_mod_t :leaf_this_t ; :hasConcept :concept_license-01 ; :hasVariable :variable_l . -:role_ARG1 a owl:Class, +:role_ARG1 a owl:AnnotationProperty, + owl:Class, + owl:NamedIndividual, net:Relation ; rdfs:subClassOf :AMR_Core_Role ; :label "ARG1" . @@ -1514,7 +1800,8 @@ net:Net a owl:Class ; :AMR_Core_Role a owl:Class ; rdfs:subClassOf :AMR_Role . -net:compositeClass_you-produceing-material_y a net:Composite_Class_Net ; +net:compositeClass_you-produceing-material_y a owl:NamedIndividual, + net:Composite_Class_Net ; net:coverBaseNode :leaf_you_y ; net:coverNode :leaf_material_m, :leaf_produce-01_p2, @@ -1528,7 +1815,8 @@ net:compositeClass_you-produceing-material_y a net:Composite_Class_Net ; net:trackProgress net:initialized, net:relation_propagated . -net:compositeClass_you-reproduceing-material_y a net:Composite_Class_Net ; +net:compositeClass_you-reproduceing-material_y a owl:NamedIndividual, + net:Composite_Class_Net ; net:coverBaseNode :leaf_you_y ; net:coverNode :leaf_material_m, :leaf_reproduce-01_r, @@ -1542,7 +1830,8 @@ net:compositeClass_you-reproduceing-material_y a net:Composite_Class_Net ; net:trackProgress net:initialized, net:relation_propagated . -net:compositeClass_you-shareing-material_y a net:Composite_Class_Net ; +net:compositeClass_you-shareing-material_y a owl:NamedIndividual, + net:Composite_Class_Net ; net:coverBaseNode :leaf_you_y ; net:coverNode :leaf_material_m, :leaf_share-01_s, @@ -1559,7 +1848,8 @@ net:compositeClass_you-shareing-material_y a net:Composite_Class_Net ; :AMR_Variable a owl:Class ; rdfs:subClassOf :AMR_Element . -net:atomClass_you_y a net:Atom_Class_Net ; +net:atomClass_you_y a owl:NamedIndividual, + net:Atom_Class_Net ; net:coverBaseNode :leaf_you_y ; net:coverNode :leaf_you_y ; net:coverNodeCount 1 ; @@ -1583,7 +1873,8 @@ net:objectValue a owl:AnnotationProperty ; rdfs:label "valuations"@fr ; rdfs:subPropertyOf net:objectProperty . -:leaf_material_m a :AMR_Leaf ; +:leaf_material_m a owl:NamedIndividual, + :AMR_Leaf ; :hasConcept :concept_material ; :hasVariable :variable_m . @@ -1592,7 +1883,8 @@ net:objectValue a owl:AnnotationProperty ; :AMR_Linked_Data a owl:Class . -:leaf_you_y a :AMR_Leaf ; +:leaf_you_y a owl:NamedIndividual, + :AMR_Leaf ; :hasConcept :concept_you ; :hasVariable :variable_y . diff --git a/tests/dev_tests/test_data/negation-devGraph-1.ttl b/tests/dev_tests/test_data/negation-devGraph-1.ttl index 7dde536b7a511bffe8ef99020eba84a451092d35..33cbf656c431e57ebcb65c9d391a1c0f2bf23371 100644 --- a/tests/dev_tests/test_data/negation-devGraph-1.ttl +++ b/tests/dev_tests/test_data/negation-devGraph-1.ttl @@ -1,1601 +1,3066 @@ -@base <http://https://tenet.tetras-libre.fr/demo/cc-examples//generation> . @prefix : <https://amr.tetras-libre.fr/rdf/schema#> . -@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> . @prefix net: <https://tenet.tetras-libre.fr/semantic-net#> . -@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> . @prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> . @prefix ns3: <http://amr.isi.edu/rdf/core-amr#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> . +@prefix xml: <http://www.w3.org/XML/1998/namespace> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . +@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> . +@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@base <https://amr.tetras-libre.fr/rdf/schema> . -ns3:Concept a rdfs:Class, - owl:Class ; - rdfs:label "AMR-Concept" ; - rdfs:subClassOf :AMR_Linked_Data . +<https://amr.tetras-libre.fr/rdf/schema> rdf:type owl:Ontology ; + owl:versionIRI <https://amr.tetras-libre.fr/rdf/schema#0.1> . -ns3:Role a rdfs:Class, - owl:Class ; - rdfs:label "AMR-Role" ; - rdfs:subClassOf :AMR_Linked_Data . +################################################################# +# Annotation properties +################################################################# -<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ; - ns3:hasSentence "The sun is a star." ; - ns3:root <http://amr.isi.edu/amr_data/test-1#s> . +### http://amr.isi.edu/frames/ld/v1.2.2/adapt-01.ARG1 +ns11:adapt-01.ARG1 rdf:type owl:AnnotationProperty . -<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ; - ns3:hasSentence "Earth is a planet." ; - ns3:root <http://amr.isi.edu/amr_data/test-2#p> . -ns11:adapt-01.ARG1 a ns11:FrameRole . +### http://amr.isi.edu/frames/ld/v1.2.2/contrast-01.ARG1 +ns11:contrast-01.ARG1 rdf:type owl:AnnotationProperty . -ns11:contrast-01.ARG1 a ns11:FrameRole . -ns11:contrast-01.ARG2 a ns11:FrameRole . +### http://amr.isi.edu/frames/ld/v1.2.2/contrast-01.ARG2 +ns11:contrast-01.ARG2 rdf:type owl:AnnotationProperty . -ns11:grant-01.ARG0 a ns11:FrameRole . -ns11:grant-01.ARG1 a ns11:FrameRole . +### http://amr.isi.edu/frames/ld/v1.2.2/grant-01.ARG0 +ns11:grant-01.ARG0 rdf:type owl:AnnotationProperty . -ns11:grant-01.ARG2 a ns11:FrameRole . -ns11:license-01.ARG1 a ns11:FrameRole . +### http://amr.isi.edu/frames/ld/v1.2.2/grant-01.ARG1 +ns11:grant-01.ARG1 rdf:type owl:AnnotationProperty . -ns11:license-01.ARG2 a ns11:FrameRole . -ns11:produce-01.ARG0 a ns11:FrameRole . +### http://amr.isi.edu/frames/ld/v1.2.2/grant-01.ARG2 +ns11:grant-01.ARG2 rdf:type owl:AnnotationProperty . -ns11:produce-01.ARG1 a ns11:FrameRole . -ns11:public-02.ARG1 a ns11:FrameRole . +### http://amr.isi.edu/frames/ld/v1.2.2/license-01.ARG1 +ns11:license-01.ARG1 rdf:type owl:AnnotationProperty . -ns11:reproduce-01.ARG0 a ns11:FrameRole . -ns11:reproduce-01.ARG1 a ns11:FrameRole . +### http://amr.isi.edu/frames/ld/v1.2.2/license-01.ARG2 +ns11:license-01.ARG2 rdf:type owl:AnnotationProperty . -ns11:share-01.ARG0 a ns11:FrameRole . -ns11:share-01.ARG1 a ns11:FrameRole . +### http://amr.isi.edu/frames/ld/v1.2.2/produce-01.ARG0 +ns11:produce-01.ARG0 rdf:type owl:AnnotationProperty . -ns2:domain a ns3:Role, - owl:AnnotationProperty, - owl:NamedIndividual . -ns2:mod a ns3:Role . +### http://amr.isi.edu/frames/ld/v1.2.2/produce-01.ARG1 +ns11:produce-01.ARG1 rdf:type owl:AnnotationProperty . -ns2:op1 a ns3:Role . -ns2:op2 a ns3:Role . +### http://amr.isi.edu/frames/ld/v1.2.2/public-02.ARG1 +ns11:public-02.ARG1 rdf:type owl:AnnotationProperty . -ns3:NamedEntity a ns3:Concept, - owl:Class, - owl:NamedIndividual ; - rdfs:label "AMR-EntityType", - "AMR-Term" ; - rdfs:subClassOf :AMR_Linked_Data . -ns3:hasID a owl:AnnotationProperty . +### http://amr.isi.edu/frames/ld/v1.2.2/reproduce-01.ARG0 +ns11:reproduce-01.ARG0 rdf:type owl:AnnotationProperty . -ns3:hasSentence a owl:AnnotationProperty . -ns3:root a owl:AnnotationProperty . +### http://amr.isi.edu/frames/ld/v1.2.2/reproduce-01.ARG1 +ns11:reproduce-01.ARG1 rdf:type owl:AnnotationProperty . -<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ; - owl:versionIRI :0.1 . -:AMR_DataProperty a owl:DatatypeProperty . +### http://amr.isi.edu/frames/ld/v1.2.2/share-01.ARG0 +ns11:share-01.ARG0 rdf:type owl:AnnotationProperty . -:AMR_Prep_Role a owl:Class ; - rdfs:subClassOf :AMR_Role . -:edge_a2_ARG1_m a :AMR_Edge ; - :hasAmrRole :role_ARG1 ; - :hasRoleID "ARG1" . +### http://amr.isi.edu/frames/ld/v1.2.2/share-01.ARG1 +ns11:share-01.ARG1 rdf:type owl:AnnotationProperty . -:edge_a_op1_p2 a :AMR_Edge ; - :hasAmrRole :role_op1 ; - :hasRoleID "op1" . -:edge_a_op2_r a :AMR_Edge ; - :hasAmrRole :role_op2 ; - :hasRoleID "op2" . +### http://amr.isi.edu/rdf/amr-terms#domain +ns2:domain rdf:type owl:AnnotationProperty . -:edge_c_ARG1_l2 a :AMR_Edge ; - :hasAmrRole :role_ARG1 ; - :hasRoleID "ARG1" . -:edge_c_ARG2_s a :AMR_Edge ; - :hasAmrRole :role_ARG2 ; - :hasRoleID "ARG2" . +### http://amr.isi.edu/rdf/amr-terms#mod +ns2:mod rdf:type owl:AnnotationProperty . -:edge_g_ARG0_l a :AMR_Edge ; - :hasAmrRole :role_ARG0 ; - :hasRoleID "ARG0" . -:edge_g_ARG1_c a :AMR_Edge ; - :hasAmrRole :role_ARG1 ; - :hasRoleID "ARG1" . +### http://amr.isi.edu/rdf/amr-terms#op1 +ns2:op1 rdf:type owl:AnnotationProperty . -:edge_g_ARG2_y a :AMR_Edge ; - :hasAmrRole :role_ARG2 ; - :hasRoleID "ARG2" . -:edge_l2_ARG1_a a :AMR_Edge ; - :hasAmrRole :role_ARG1 ; - :hasRoleID "ARG1" . +### http://amr.isi.edu/rdf/amr-terms#op2 +ns2:op2 rdf:type owl:AnnotationProperty . -:edge_l2_ARG2_y a :AMR_Edge ; - :hasAmrRole :role_ARG2 ; - :hasRoleID "ARG2" . -:edge_l_mod_t a :AMR_Edge ; - :hasAmrRole :role_mod ; - :hasRoleID "mod" . +### http://amr.isi.edu/rdf/amr-terms#polarity +ns2:polarity rdf:type owl:AnnotationProperty . -:edge_p2_ARG0_y a :AMR_Edge ; - :hasAmrRole :role_ARG0 ; - :hasRoleID "ARG0" . -:edge_p2_ARG1_m a :AMR_Edge ; - :hasAmrRole :role_ARG1 ; - :hasRoleID "ARG1" . +### http://amr.isi.edu/rdf/core-amr#has-id +ns3:has-id rdf:type owl:AnnotationProperty . -:edge_p_ARG1_l a :AMR_Edge ; - :hasAmrRole :role_ARG1 ; - :hasRoleID "ARG1" . -:edge_r_ARG0_y a :AMR_Edge ; - :hasAmrRole :role_ARG0 ; - :hasRoleID "ARG0" . +### http://amr.isi.edu/rdf/core-amr#has-sentence +ns3:has-sentence rdf:type owl:AnnotationProperty . -:edge_r_ARG1_m a :AMR_Edge ; - :hasAmrRole :role_ARG1 ; - :hasRoleID "ARG1" . -:edge_s_ARG0_y a :AMR_Edge ; - :hasAmrRole :role_ARG0 ; - :hasRoleID "ARG0" . +### http://amr.isi.edu/rdf/core-amr#hasID +ns3:hasID rdf:type owl:AnnotationProperty . -:edge_s_ARG1_m a :AMR_Edge ; - :hasAmrRole :role_ARG1 ; - :hasRoleID "ARG1" . -:edge_s_polarity_negative a :AMR_Edge ; - :hasAmrRole :role_polarity ; - :hasRoleID "polarity" . +### http://amr.isi.edu/rdf/core-amr#hasSentence +ns3:hasSentence rdf:type owl:AnnotationProperty . -:fromAmrLkFramerole a owl:AnnotationProperty ; - rdfs:subPropertyOf :fromAmrLk . -:fromAmrLkRole a owl:AnnotationProperty ; - rdfs:subPropertyOf :fromAmrLk . +### http://amr.isi.edu/rdf/core-amr#root +ns3:root rdf:type owl:AnnotationProperty . -:fromAmrLkRoot a owl:AnnotationProperty ; - rdfs:subPropertyOf :fromAmrLk . -:getDirectPropertyName a owl:AnnotationProperty ; - rdfs:subPropertyOf :getProperty . +### https://amr.tetras-libre.fr/rdf/schema#AMR_AnnotationProperty +:AMR_AnnotationProperty rdf:type owl:AnnotationProperty . -:getInversePropertyName a owl:AnnotationProperty ; - rdfs:subPropertyOf :getProperty . -:getPropertyType a owl:AnnotationProperty ; - rdfs:subPropertyOf :getProperty . +### https://amr.tetras-libre.fr/rdf/schema#edge_a2_ARG1_m +:edge_a2_ARG1_m rdf:type owl:AnnotationProperty . -:hasConcept a owl:ObjectProperty ; - rdfs:domain :AMR_Leaf ; - rdfs:subPropertyOf :AMR_ObjectProperty . -:hasConceptLink a owl:AnnotationProperty ; - rdfs:subPropertyOf :hasLink . +### https://amr.tetras-libre.fr/rdf/schema#edge_a_op1_p2 +:edge_a_op1_p2 rdf:type owl:AnnotationProperty . -:hasEdgeLink a owl:AnnotationProperty ; - rdfs:subPropertyOf :hasLink . -:hasReification a owl:AnnotationProperty ; - rdfs:range xsd:boolean ; - rdfs:subPropertyOf :AMR_AnnotationProperty . +### https://amr.tetras-libre.fr/rdf/schema#edge_a_op2_r +:edge_a_op2_r rdf:type owl:AnnotationProperty . -:hasReificationConcept a owl:AnnotationProperty ; - rdfs:subPropertyOf :hasReificationDefinition . -:hasReificationDomain a owl:AnnotationProperty ; - rdfs:subPropertyOf :hasReificationDefinition . +### https://amr.tetras-libre.fr/rdf/schema#edge_c_ARG1_l2 +:edge_c_ARG1_l2 rdf:type owl:AnnotationProperty . -:hasReificationRange a owl:AnnotationProperty ; - rdfs:subPropertyOf :hasReificationDefinition . -:hasRelationName a owl:AnnotationProperty ; - rdfs:subPropertyOf :AMR_AnnotationProperty . +### https://amr.tetras-libre.fr/rdf/schema#edge_c_ARG2_s +:edge_c_ARG2_s rdf:type owl:AnnotationProperty . -:hasRoleID a owl:ObjectProperty ; - rdfs:domain :AMR_Edge ; - rdfs:subPropertyOf :AMR_ObjectProperty . -:hasRoleTag a owl:ObjectProperty ; - rdfs:domain :AMR_Edge ; - rdfs:subPropertyOf :AMR_ObjectProperty . +### https://amr.tetras-libre.fr/rdf/schema#edge_g_ARG0_l +:edge_g_ARG0_l rdf:type owl:AnnotationProperty . -:hasRolesetID a owl:ObjectProperty ; - rdfs:domain :AMR_Edge ; - rdfs:subPropertyOf :AMR_ObjectProperty . -:hasRootLeaf a owl:ObjectProperty ; - rdfs:subPropertyOf :AMR_ObjectProperty . +### https://amr.tetras-libre.fr/rdf/schema#edge_g_ARG1_c +:edge_g_ARG1_c rdf:type owl:AnnotationProperty . -:hasSentenceID a owl:AnnotationProperty ; - rdfs:subPropertyOf :AMR_AnnotationProperty . - -:hasSentenceStatement a owl:AnnotationProperty ; - rdfs:subPropertyOf :AMR_AnnotationProperty . - -:hasVariable a owl:ObjectProperty ; - rdfs:domain :AMR_Leaf ; - rdfs:subPropertyOf :AMR_ObjectProperty . - -:label a owl:AnnotationProperty ; - rdfs:subPropertyOf :AMR_AnnotationProperty . - -:phenomena_conjunction_or a owl:Class ; - rdfs:subClassOf :phenomena_conjunction ; - :hasConceptLink "or" ; - :label "conjunction-OR" . - -:phenomena_degree a owl:Class ; - rdfs:subClassOf :AMR_Phenomena ; - :hasConceptLink "have-degree-91" ; - :label "degree" . - -:relation_domain a owl:Class ; - rdfs:subClassOf :AMR_Relation ; - :hasReification false ; - :hasRelationName "domain" . - -:relation_manner a owl:Class ; - rdfs:subClassOf :AMR_Relation ; - :hasReification true ; - :hasReificationConcept "hasManner" ; - :hasReificationDomain "ARG1" ; - :hasReificationRange "ARG2" ; - :hasRelationName "manner" . - -:relation_mod a owl:Class ; - rdfs:subClassOf :AMR_Relation ; - :hasReification false ; - :hasRelationName "mod" . - -:relation_name a owl:Class ; - rdfs:subClassOf :AMR_Relation ; - :hasReification false ; - :hasRelationName "name" . - -:relation_part a owl:Class ; - rdfs:subClassOf :AMR_Relation ; - :hasReification true ; - :hasReificationConcept "hasPart" ; - :hasReificationDomain "ARG1" ; - :hasReificationRange "ARG2" ; - :hasRelationName "part" . - -:relation_polarity a owl:Class ; - rdfs:subClassOf :AMR_Relation ; - :hasReification false ; - :hasRelationName "polarity" . - -:relation_quant a owl:Class ; - rdfs:subClassOf :AMR_Relation ; - :hasReification false ; - :hasRelationName "quant" . - -:role_ARG3 a owl:Class ; - rdfs:subClassOf :AMR_Core_Role ; - :label "ARG3" . - -:role_ARG4 a owl:Class ; - rdfs:subClassOf :AMR_Core_Role ; - :label "ARG4" . - -:role_ARG5 a owl:Class ; - rdfs:subClassOf :AMR_Core_Role ; - :label "ARG5" . - -:role_ARG6 a owl:Class ; - rdfs:subClassOf :AMR_Core_Role ; - :label "ARG6" . - -:role_ARG7 a owl:Class ; - rdfs:subClassOf :AMR_Core_Role ; - :label "ARG7" . - -:role_ARG8 a owl:Class ; - rdfs:subClassOf :AMR_Core_Role ; - :label "ARG8" . - -:role_ARG9 a owl:Class ; - rdfs:subClassOf :AMR_Core_Role ; - :label "ARG9" . - -:role_domain a owl:Class ; - rdfs:subClassOf :AMR_NonCore_Role ; - :hasRelationName "domain" ; - :label "domain" ; - :toReifyAsConcept "domain" ; - :toReifyWithBaseEdge "ARG0" ; - :toReifyWithHeadEdge "ARG1" . - -:role_have-degree-91 a owl:Class ; - rdfs:subClassOf :AMR_Specific_Role ; - :getPropertyType <net:specificProperty> . - -:role_manner a owl:Class ; - rdfs:subClassOf :AMR_NonCore_Role ; - :getDirectPropertyName "manner" ; - :getPropertyType owl:DataProperty ; - :label "manner" ; - :toReifyAsConcept "manner" ; - :toReifyWithBaseEdge "ARG0" ; - :toReifyWithHeadEdge "ARG1" . - -:role_name a owl:Class ; - rdfs:subClassOf :AMR_NonCore_Role ; - :label "name" . - -:role_op3 a owl:Class ; - rdfs:subClassOf :AMR_Op_Role ; - :label "op3" . - -:role_op4 a owl:Class ; - rdfs:subClassOf :AMR_Op_Role ; - :label "op4" . - -:role_op5 a owl:Class ; - rdfs:subClassOf :AMR_Op_Role ; - :label "op5" . - -:role_op6 a owl:Class ; - rdfs:subClassOf :AMR_Op_Role ; - :label "op6" . - -:role_op7 a owl:Class ; - rdfs:subClassOf :AMR_Op_Role ; - :label "op7" . - -:role_op8 a owl:Class ; - rdfs:subClassOf :AMR_Op_Role ; - :label "op8" . - -:role_op9 a owl:Class ; - rdfs:subClassOf :AMR_Op_Role ; - :label "op9" . - -:role_part a owl:Class ; - rdfs:subClassOf :AMR_NonCore_Role ; - :getDirectPropertyName "hasPart"^^xsd:string ; - :getInversePropertyName "partOf"^^xsd:string ; - :getPropertyType owl:ObjectProperty ; - :toReifyAsConcept "part" ; - :toReifyWithBaseEdge "ARG0" ; - :toReifyWithHeadEdge "ARG1" . - -:role_quant a owl:Class ; - rdfs:subClassOf :AMR_Specific_Role ; - :label "quant" . - -:root_cc-sentence-examples-03 a :AMR_Root ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#root01> ; - :hasRootLeaf :leaf_grant-01_g ; - :hasSentenceID "cc-sentence-examples-03" ; - :hasSentenceStatement "This Public License grants You a license to produce and reproduce, but not Share, Adapted Material." . - -:toReifyAsConcept a owl:AnnotationProperty ; - rdfs:subPropertyOf :toReify . - -:toReifyWithBaseEdge a owl:AnnotationProperty ; - rdfs:subPropertyOf :toReify . - -:toReifyWithHeadEdge a owl:AnnotationProperty ; - rdfs:subPropertyOf :toReify . - -<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology . - -sys:Event a owl:Class ; - rdfs:subClassOf sys:Out_Structure . - -sys:Undetermined_Thing a owl:Class ; - rdfs:subClassOf sys:Out_Structure . - -sys:fromStructure a owl:AnnotationProperty ; - rdfs:subPropertyOf sys:Out_AnnotationProperty . - -sys:hasDegree a owl:ObjectProperty ; - rdfs:subPropertyOf sys:Out_ObjectProperty . - -sys:hasFeature a owl:ObjectProperty ; - rdfs:subPropertyOf sys:Out_ObjectProperty . - -<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology . - -cprm:Config_Parameters a owl:Class ; - cprm:baseURI "https://tenet.tetras-libre.fr/" ; - cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ; - cprm:newClassRef "new-class#" ; - cprm:newPropertyRef "new-relation#" ; - cprm:objectRef "object_" ; - cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" . - -cprm:baseURI a rdf:Property ; - rdfs:label "Base URI" ; - rdfs:domain cprm:Frame ; - rdfs:range xsd:string ; - rdfs:subPropertyOf cprm:configParamProperty . - -cprm:netURI a rdf:Property ; - rdfs:label "Net URI" ; - rdfs:domain cprm:Frame ; - rdfs:range xsd:string ; - rdfs:subPropertyOf cprm:configParamProperty . - -cprm:newClassRef a rdf:Property ; - rdfs:label "Reference for a new class" ; - rdfs:subPropertyOf cprm:configParamProperty . - -cprm:newPropertyRef a rdf:Property ; - rdfs:label "Reference for a new property" ; - rdfs:subPropertyOf cprm:configParamProperty . - -cprm:objectRef a rdf:Property ; - rdfs:label "Object Reference" ; - rdfs:subPropertyOf cprm:configParamProperty . - -cprm:targetOntologyURI a rdf:Property ; - rdfs:label "URI of classes in target ontology" ; - rdfs:domain cprm:Frame ; - rdfs:range xsd:string ; - rdfs:subPropertyOf cprm:configParamProperty . - -<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology . - -net:Instance a owl:Class ; - rdfs:label "Semantic Net Instance" ; - rdfs:subClassOf net:Net_Structure . - -net:Object a owl:Class ; - rdfs:label "Object using in semantic net instance" ; - rdfs:subClassOf net:Net_Structure . - -net:Property_Axiom_Net a owl:Class ; - rdfs:subClassOf net:Axiom_Net . - -net:Property_Direction a owl:Class ; - rdfs:subClassOf net:Feature . - -net:abstractionClass a owl:AnnotationProperty ; - rdfs:label "abstraction class" ; - rdfs:subPropertyOf net:objectValue . - -net:atom a owl:Class ; - rdfs:label "atom" ; - rdfs:subClassOf net:Type . - -net:atomOf a owl:AnnotationProperty ; - rdfs:label "atom of" ; - rdfs:subPropertyOf net:typeProperty . - -net:atomProperty_adapt_a2 a net:Atom_Property_Net ; - :role_ARG1 net:atomClass_material_m ; - net:coverBaseNode :leaf_adapt-01_a2 ; - net:coverNode :leaf_adapt-01_a2 ; - net:hasNaming "adapt" ; - net:hasPropertyName "adapt" ; - net:hasPropertyName01 "adapting" ; - net:hasPropertyName10 "adapt-by" ; - net:hasPropertyName12 "adapt-of" ; - net:hasPropertyType owl:ObjectProperty ; - net:hasStructure "cc-sentence-examples-03" ; - net:isCoreRoleLinked true ; - net:targetArgumentNode :leaf_material_m ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:atomProperty_grant_g a net:Atom_Property_Net ; - :role_ARG0 net:atomProperty_license_l ; - :role_ARG1 net:phenomena_conjunction_c ; - :role_ARG2 net:atomClass_you_y, - net:compositeClass_you-produceing-material_y, - net:compositeClass_you-reproduceing-material_y, - net:compositeClass_you-shareing-material_y, - net:individual_you-produceing-material_fromClass, - net:individual_you-reproduceing-material_fromClass, - net:individual_you-shareing-material_fromClass, - net:individual_you_fromClass ; - net:coverBaseNode :leaf_grant-01_g ; - net:coverNode :leaf_grant-01_g ; - net:hasNaming "grant" ; - net:hasPropertyName "grant" ; - net:hasPropertyName01 "granting" ; - net:hasPropertyName10 "grant-by" ; - net:hasPropertyName12 "grant-of" ; - net:hasPropertyType owl:ObjectProperty ; - net:hasStructure "cc-sentence-examples-03" ; - net:isCoreRoleLinked true ; - net:targetArgumentNode :leaf_contrast-01_c, - :leaf_license-01_l, - :leaf_you_y ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:atomProperty_public_p a net:Atom_Property_Net ; - :role_ARG1 net:atomProperty_license_l ; - net:coverBaseNode :leaf_public-02_p ; - net:coverNode :leaf_public-02_p ; - net:hasNaming "public" ; - net:hasPropertyName "public" ; - net:hasPropertyName01 "publicing" ; - net:hasPropertyName10 "public-by" ; - net:hasPropertyName12 "public-of" ; - net:hasPropertyType owl:ObjectProperty ; - net:hasStructure "cc-sentence-examples-03" ; - net:isCoreRoleLinked true ; - net:targetArgumentNode :leaf_license-01_l ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:atomType a owl:AnnotationProperty ; - rdfs:label "atom type" ; - rdfs:subPropertyOf net:objectType . - -net:class a owl:Class ; - rdfs:label "class" ; - rdfs:subClassOf net:Type . - -net:composite a owl:Class ; - rdfs:label "composite" ; - rdfs:subClassOf net:Type . - -net:compositeProperty_public-license a net:Composite_Property_Net ; - :role_ARG1 net:atomProperty_license_l ; - net:coverArgNode :leaf_license-01_l ; - net:coverBaseNode :leaf_public-02_p ; - net:coverNode :leaf_license-01_l, - :leaf_public-02_p ; - net:hasMotherClassNet net:atomProperty_license_l ; - net:hasNaming "public-license" ; - net:hasPropertyName "public-license" ; - net:hasPropertyType owl:ObjectProperty ; - net:hasStructure "cc-sentence-examples-03" ; - net:isCoreRoleLinked true . - -net:conjunctive_list a owl:Class ; - rdfs:label "conjunctive-list" ; - rdfs:subClassOf net:list . - -net:disjunctive_list a owl:Class ; - rdfs:label "disjunctive-list" ; - rdfs:subClassOf net:list . - -net:entityClass a owl:AnnotationProperty ; - rdfs:label "entity class" ; - rdfs:subPropertyOf net:objectValue . - -net:entity_class_list a owl:Class ; - rdfs:label "entityClassList" ; - rdfs:subClassOf net:class_list . - -net:event a owl:Class ; - rdfs:label "event" ; - rdfs:subClassOf net:Type . - -net:featureClass a owl:AnnotationProperty ; - rdfs:label "feature class" ; - rdfs:subPropertyOf net:objectValue . - -net:has_atom a owl:AnnotationProperty ; - rdfs:label "has atom" ; - rdfs:subPropertyOf net:has_object . - -net:has_class a owl:AnnotationProperty ; - rdfs:label "is class" ; - rdfs:subPropertyOf net:objectValue . - -net:has_class_name a owl:AnnotationProperty ; - rdfs:subPropertyOf net:has_value . - -net:has_class_uri a owl:AnnotationProperty ; - rdfs:label "class uri" ; - rdfs:subPropertyOf net:objectValue . - -net:has_concept a owl:AnnotationProperty ; - rdfs:label "concept "@fr ; - rdfs:subPropertyOf net:objectValue . - -net:has_entity a owl:AnnotationProperty ; - rdfs:label "has entity" ; - rdfs:subPropertyOf net:has_object . - -net:has_feature a owl:AnnotationProperty ; - rdfs:label "has feature" ; - rdfs:subPropertyOf net:has_object . - -net:has_instance a owl:AnnotationProperty ; - rdfs:label "entity instance" ; - rdfs:subPropertyOf net:objectValue . - -net:has_instance_uri a owl:AnnotationProperty ; - rdfs:label "instance uri" ; - rdfs:subPropertyOf net:objectValue . - -net:has_item a owl:AnnotationProperty ; - rdfs:label "has item" ; - rdfs:subPropertyOf net:has_object . - -net:has_mother_class a owl:AnnotationProperty ; - rdfs:label "has mother class" ; - rdfs:subPropertyOf net:objectValue . - -net:has_mother_class_uri a owl:AnnotationProperty ; - rdfs:label "parent class uri" ; - rdfs:subPropertyOf net:objectValue . - -net:has_node a owl:AnnotationProperty ; - rdfs:label "UNL Node" ; - rdfs:subPropertyOf net:netProperty . - -net:has_parent a owl:AnnotationProperty ; - rdfs:label "has parent" ; - rdfs:subPropertyOf net:has_object . - -net:has_parent_class a owl:AnnotationProperty ; - rdfs:label "parent class" ; - rdfs:subPropertyOf net:objectValue . - -net:has_parent_class_uri a owl:AnnotationProperty ; - rdfs:label "parent class uri" ; - rdfs:subPropertyOf net:objectValue . - -net:has_possible_domain a owl:AnnotationProperty ; - rdfs:label "has possible domain" ; - rdfs:subPropertyOf net:has_object . - -net:has_possible_range a owl:AnnotationProperty ; - rdfs:label "has possible range" ; - rdfs:subPropertyOf net:has_object . - -net:has_relation a owl:AnnotationProperty ; - rdfs:label "has relation" ; - rdfs:subPropertyOf net:has_relation_value . -net:has_source a owl:AnnotationProperty ; - rdfs:label "has source" ; - rdfs:subPropertyOf net:has_relation_value . +### https://amr.tetras-libre.fr/rdf/schema#edge_g_ARG2_y +:edge_g_ARG2_y rdf:type owl:AnnotationProperty . -net:has_structure a owl:AnnotationProperty ; - rdfs:label "Linguistic Structure (in UNL Document)" ; - rdfs:subPropertyOf net:netProperty . -net:has_target a owl:AnnotationProperty ; - rdfs:label "has target" ; - rdfs:subPropertyOf net:has_relation_value . +### https://amr.tetras-libre.fr/rdf/schema#edge_l2_ARG1_a +:edge_l2_ARG1_a rdf:type owl:AnnotationProperty . -net:individual_this_t a net:Individual_Net ; - net:coverBaseNode :leaf_this_t ; - net:coverNode :leaf_this_t ; - net:hasBaseClassName "Feature" ; - net:hasIndividualLabel "this" ; - net:hasMotherClassNet net:atomClass_this_t ; - net:hasStructure "cc-sentence-examples-03" ; - net:trackMainNetComposante net:atomClass_this_t ; - net:trackNetComposante net:atomClass_this_t ; - net:trackProgress net:initialized . -net:inverse_direction a owl:NamedIndividual . +### https://amr.tetras-libre.fr/rdf/schema#edge_l2_ARG2_y +:edge_l2_ARG2_y rdf:type owl:AnnotationProperty . -net:listBy a owl:AnnotationProperty ; - rdfs:label "list by" ; - rdfs:subPropertyOf net:typeProperty . -net:listGuiding a owl:AnnotationProperty ; - rdfs:label "Guiding connector of a list (or, and)" ; - rdfs:subPropertyOf net:objectValue . +### https://amr.tetras-libre.fr/rdf/schema#edge_l_mod_t +:edge_l_mod_t rdf:type owl:AnnotationProperty . -net:listOf a owl:AnnotationProperty ; - rdfs:label "list of" ; - rdfs:subPropertyOf net:typeProperty . - -net:modCat1 a owl:AnnotationProperty ; - rdfs:label "Modality Category (level 1)" ; - rdfs:subPropertyOf net:objectValue . - -net:modCat2 a owl:AnnotationProperty ; - rdfs:label "Modality Category (level 2)" ; - rdfs:subPropertyOf net:objectValue . - -net:normal_direction a owl:NamedIndividual . -net:relation a owl:Class ; - rdfs:label "relation" ; - rdfs:subClassOf net:Type . +### https://amr.tetras-libre.fr/rdf/schema#edge_p2_ARG0_y +:edge_p2_ARG0_y rdf:type owl:AnnotationProperty . -net:relationOf a owl:AnnotationProperty ; - rdfs:label "relation of" ; - rdfs:subPropertyOf net:typeProperty . -net:state_property a owl:Class ; - rdfs:label "stateProperty" ; - rdfs:subClassOf net:Type . +### https://amr.tetras-libre.fr/rdf/schema#edge_p2_ARG1_m +:edge_p2_ARG1_m rdf:type owl:AnnotationProperty . -net:type a owl:AnnotationProperty ; - rdfs:label "type "@fr ; - rdfs:subPropertyOf net:netProperty . -net:unary_list a owl:Class ; - rdfs:label "unary-list" ; - rdfs:subClassOf net:list . +### https://amr.tetras-libre.fr/rdf/schema#edge_p_ARG1_l +:edge_p_ARG1_l rdf:type owl:AnnotationProperty . -net:verbClass a owl:AnnotationProperty ; - rdfs:label "verb class" ; - rdfs:subPropertyOf net:objectValue . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a2> a ns11:adapt-01 ; - ns11:adapt-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; - rdfs:subClassOf :AMR_Linked_Data . +### https://amr.tetras-libre.fr/rdf/schema#edge_r_ARG0_y +:edge_r_ARG0_y rdf:type owl:AnnotationProperty . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p> a ns11:public-02 ; - ns11:public-02.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> ; - rdfs:subClassOf :AMR_Linked_Data . -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#root01> a ns3:AMR ; - ns3:has-id "cc-sentence-examples-03" ; - ns3:has-sentence "This Public License grants You a license to produce and reproduce, but not Share, Adapted Material." ; - ns3:root <http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> . +### https://amr.tetras-libre.fr/rdf/schema#edge_r_ARG1_m +:edge_r_ARG1_m rdf:type owl:AnnotationProperty . -<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> . -<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" . +### https://amr.tetras-libre.fr/rdf/schema#edge_s_ARG0_y +:edge_s_ARG0_y rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_s_ARG1_m +:edge_s_ARG1_m rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_s_polarity_negative +:edge_s_polarity_negative rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#fromAmrLk +:fromAmrLk rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :AMR_AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#fromAmrLkFramerole +:fromAmrLkFramerole rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :fromAmrLk . + + +### https://amr.tetras-libre.fr/rdf/schema#fromAmrLkRole +:fromAmrLkRole rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :fromAmrLk . + + +### https://amr.tetras-libre.fr/rdf/schema#fromAmrLkRoot +:fromAmrLkRoot rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :fromAmrLk . + + +### https://amr.tetras-libre.fr/rdf/schema#getDirectPropertyName +:getDirectPropertyName rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :getProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#getInversePropertyName +:getInversePropertyName rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :getProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#getProperty +:getProperty rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :AMR_AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#getPropertyType +:getPropertyType rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :getProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#hasAmrRole +:hasAmrRole rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#hasConceptLink +:hasConceptLink rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :hasLink . + + +### https://amr.tetras-libre.fr/rdf/schema#hasEdgeLink +:hasEdgeLink rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :hasLink . + + +### https://amr.tetras-libre.fr/rdf/schema#hasLink +:hasLink rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :AMR_AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#hasPhenomenaLink +:hasPhenomenaLink rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#hasReification +:hasReification rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :AMR_AnnotationProperty ; + rdfs:range xsd:boolean . + + +### https://amr.tetras-libre.fr/rdf/schema#hasReificationConcept +:hasReificationConcept rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :hasReificationDefinition . + + +### https://amr.tetras-libre.fr/rdf/schema#hasReificationDefinition +:hasReificationDefinition rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :AMR_AnnotationProperty ; + rdfs:range rdfs:Literal . + + +### https://amr.tetras-libre.fr/rdf/schema#hasReificationDomain +:hasReificationDomain rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :hasReificationDefinition . + + +### https://amr.tetras-libre.fr/rdf/schema#hasReificationRange +:hasReificationRange rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :hasReificationDefinition . + + +### https://amr.tetras-libre.fr/rdf/schema#hasRelationName +:hasRelationName rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :AMR_AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#hasSentenceID +:hasSentenceID rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :AMR_AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#hasSentenceStatement +:hasSentenceStatement rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :AMR_AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#label +:label rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :AMR_AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG0 +:role_ARG0 rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG1 +:role_ARG1 rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG2 +:role_ARG2 rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#role_mod +:role_mod rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op1 +:role_op1 rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op2 +:role_op2 rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#role_polarity +:role_polarity rdf:type owl:AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#toReify +:toReify rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :AMR_AnnotationProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#toReifyAsConcept +:toReifyAsConcept rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :toReify . + + +### https://amr.tetras-libre.fr/rdf/schema#toReifyWithBaseEdge +:toReifyWithBaseEdge rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :toReify . + + +### https://amr.tetras-libre.fr/rdf/schema#toReifyWithHeadEdge +:toReifyWithHeadEdge rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf :toReify . + + +### https://tenet.tetras-libre.fr/base-ontology#Out_AnnotationProperty +sys:Out_AnnotationProperty rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/base-ontology#fromStructure +sys:fromStructure rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf sys:Out_AnnotationProperty . + + +### https://tenet.tetras-libre.fr/config/parameters#baseURI +cprm:baseURI rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf cprm:configParamProperty ; + rdfs:domain cprm:Frame . + + +### https://tenet.tetras-libre.fr/config/parameters#configParamProperty +cprm:configParamProperty rdf:type owl:AnnotationProperty ; + rdfs:label "Config Parameter Property" . + + +### https://tenet.tetras-libre.fr/config/parameters#netURI +cprm:netURI rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf cprm:configParamProperty ; + rdfs:domain cprm:Frame . + + +### https://tenet.tetras-libre.fr/config/parameters#newClassRef +cprm:newClassRef rdfs:label "Reference for a new class" ; + rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf cprm:configParamProperty . + + +### https://tenet.tetras-libre.fr/config/parameters#newPropertyRef +cprm:newPropertyRef rdfs:label "Reference for a new property" ; + rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf cprm:configParamProperty . + + +### https://tenet.tetras-libre.fr/config/parameters#objectRef +cprm:objectRef rdfs:label "Object Reference" ; + rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf cprm:configParamProperty . + + +### https://tenet.tetras-libre.fr/config/parameters#targetOntologyURI +cprm:targetOntologyURI rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf cprm:configParamProperty ; + rdfs:domain cprm:Frame . + + +### https://tenet.tetras-libre.fr/semantic-net#abstractionClass +net:abstractionClass rdf:type owl:AnnotationProperty ; + rdfs:label "abstraction class" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#atomOf +net:atomOf rdf:type owl:AnnotationProperty ; + rdfs:label "atom of" ; + rdfs:subPropertyOf net:typeProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#atomType +net:atomType rdf:type owl:AnnotationProperty ; + rdfs:label "atom type" ; + rdfs:subPropertyOf net:objectType . + + +### https://tenet.tetras-libre.fr/semantic-net#bindPropertyNet +net:bindPropertyNet rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#containsNet +net:containsNet rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#containsNet1 +net:containsNet1 rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#containsNet2 +net:containsNet2 rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#coverArgNode +net:coverArgNode rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#coverBaseNode +net:coverBaseNode rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#coverNode +net:coverNode rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#coverNodeCount +net:coverNodeCount rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#coverTargetNode +net:coverTargetNode rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#entityClass +net:entityClass rdf:type owl:AnnotationProperty ; + rdfs:label "entity class" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#featureClass +net:featureClass rdf:type owl:AnnotationProperty ; + rdfs:label "feature class" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#fromClassNet +net:fromClassNet rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasBaseClassName +net:hasBaseClassName rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasClassName +net:hasClassName rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasClassType +net:hasClassType rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasIndividualLabel +net:hasIndividualLabel rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasLogicalConstraint +net:hasLogicalConstraint rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasMotherClassNet +net:hasMotherClassNet rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasNaming +net:hasNaming rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasPhenomenaRef +net:hasPhenomenaRef rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasPhenomenaType +net:hasPhenomenaType rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasPropertyName +net:hasPropertyName rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasPropertyName01 +net:hasPropertyName01 rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasPropertyName10 +net:hasPropertyName10 rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasPropertyName12 +net:hasPropertyName12 rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasPropertyType +net:hasPropertyType rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasRestriction01 +net:hasRestriction01 rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasRestrictionNetValue +net:hasRestrictionNetValue rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasRestrictionOnProperty +net:hasRestrictionOnProperty rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasStructure +net:hasStructure rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#hasValueLabel +net:hasValueLabel rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#has_atom +net:has_atom rdf:type owl:AnnotationProperty ; + rdfs:label "has atom" ; + rdfs:subPropertyOf net:has_object . + + +### https://tenet.tetras-libre.fr/semantic-net#has_class +net:has_class rdf:type owl:AnnotationProperty ; + rdfs:label "is class" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#has_class_name +net:has_class_name rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf net:has_value . + + +### https://tenet.tetras-libre.fr/semantic-net#has_class_uri +net:has_class_uri rdf:type owl:AnnotationProperty ; + rdfs:label "class uri" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#has_concept +net:has_concept rdf:type owl:AnnotationProperty ; + rdfs:label "concept "@fr ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#has_entity +net:has_entity rdf:type owl:AnnotationProperty ; + rdfs:label "has entity" ; + rdfs:subPropertyOf net:has_object . + + +### https://tenet.tetras-libre.fr/semantic-net#has_feature +net:has_feature rdf:type owl:AnnotationProperty ; + rdfs:label "has feature" ; + rdfs:subPropertyOf net:has_object . + + +### https://tenet.tetras-libre.fr/semantic-net#has_instance +net:has_instance rdf:type owl:AnnotationProperty ; + rdfs:label "entity instance" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#has_instance_uri +net:has_instance_uri rdf:type owl:AnnotationProperty ; + rdfs:label "instance uri" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#has_item +net:has_item rdf:type owl:AnnotationProperty ; + rdfs:label "has item" ; + rdfs:subPropertyOf net:has_object . + + +### https://tenet.tetras-libre.fr/semantic-net#has_mother_class +net:has_mother_class rdf:type owl:AnnotationProperty ; + rdfs:label "has mother class" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#has_mother_class_uri +net:has_mother_class_uri rdf:type owl:AnnotationProperty ; + rdfs:label "parent class uri" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#has_node +net:has_node rdf:type owl:AnnotationProperty ; + rdfs:label "UNL Node" ; + rdfs:subPropertyOf net:netProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#has_object +net:has_object rdf:type owl:AnnotationProperty ; + rdfs:label "relation" ; + rdfs:subPropertyOf net:netProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#has_parent +net:has_parent rdf:type owl:AnnotationProperty ; + rdfs:label "has parent" ; + rdfs:subPropertyOf net:has_object . + + +### https://tenet.tetras-libre.fr/semantic-net#has_parent_class +net:has_parent_class rdf:type owl:AnnotationProperty ; + rdfs:label "parent class" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#has_parent_class_uri +net:has_parent_class_uri rdf:type owl:AnnotationProperty ; + rdfs:label "parent class uri" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#has_possible_domain +net:has_possible_domain rdf:type owl:AnnotationProperty ; + rdfs:label "has possible domain" ; + rdfs:subPropertyOf net:has_object . + + +### https://tenet.tetras-libre.fr/semantic-net#has_possible_range +net:has_possible_range rdf:type owl:AnnotationProperty ; + rdfs:label "has possible range" ; + rdfs:subPropertyOf net:has_object . + + +### https://tenet.tetras-libre.fr/semantic-net#has_relation +net:has_relation rdf:type owl:AnnotationProperty ; + rdfs:label "has relation" ; + rdfs:subPropertyOf net:has_relation_value . + + +### https://tenet.tetras-libre.fr/semantic-net#has_relation_value +net:has_relation_value rdf:type owl:AnnotationProperty ; + rdfs:label "has relation value" ; + rdfs:subPropertyOf net:has_object . + + +### https://tenet.tetras-libre.fr/semantic-net#has_source +net:has_source rdf:type owl:AnnotationProperty ; + rdfs:label "has source" ; + rdfs:subPropertyOf net:has_relation_value . + + +### https://tenet.tetras-libre.fr/semantic-net#has_structure +net:has_structure rdf:type owl:AnnotationProperty ; + rdfs:label "Linguistic Structure (in UNL Document)" ; + rdfs:subPropertyOf net:netProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#has_target +net:has_target rdf:type owl:AnnotationProperty ; + rdfs:label "has target" ; + rdfs:subPropertyOf net:has_relation_value . + + +### https://tenet.tetras-libre.fr/semantic-net#has_value +net:has_value rdf:type owl:AnnotationProperty ; + rdfs:subPropertyOf net:netProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#isCoreRoleLinked +net:isCoreRoleLinked rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#listBy +net:listBy rdf:type owl:AnnotationProperty ; + rdfs:label "list by" ; + rdfs:subPropertyOf net:typeProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#listGuiding +net:listGuiding rdf:type owl:AnnotationProperty ; + rdfs:label "Guiding connector of a list (or, and)" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#listOf +net:listOf rdf:type owl:AnnotationProperty ; + rdfs:label "list of" ; + rdfs:subPropertyOf net:typeProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#modCat1 +net:modCat1 rdf:type owl:AnnotationProperty ; + rdfs:label "Modality Category (level 1)" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#modCat2 +net:modCat2 rdf:type owl:AnnotationProperty ; + rdfs:label "Modality Category (level 2)" ; + rdfs:subPropertyOf net:objectValue . + + +### https://tenet.tetras-libre.fr/semantic-net#netProperty +net:netProperty rdf:type owl:AnnotationProperty ; + rdfs:label "netProperty" . + + +### https://tenet.tetras-libre.fr/semantic-net#objectProperty +net:objectProperty rdf:type owl:AnnotationProperty ; + rdfs:label "object attribute" . + + +### https://tenet.tetras-libre.fr/semantic-net#objectType +net:objectType rdf:type owl:AnnotationProperty ; + rdfs:label "object type" ; + rdfs:subPropertyOf net:objectProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#objectValue +net:objectValue rdf:type owl:AnnotationProperty ; + rdfs:label "valuations"@fr ; + rdfs:subPropertyOf net:objectProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#relationOf +net:relationOf rdf:type owl:AnnotationProperty ; + rdfs:label "relation of" ; + rdfs:subPropertyOf net:typeProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#targetArgumentNode +net:targetArgumentNode rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#trackMainNetComposante +net:trackMainNetComposante rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#trackNetComposante +net:trackNetComposante rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#trackProgress +net:trackProgress rdf:type owl:AnnotationProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#type +net:type rdf:type owl:AnnotationProperty ; + rdfs:label "type "@fr ; + rdfs:subPropertyOf net:netProperty . + + +### https://tenet.tetras-libre.fr/semantic-net#typeProperty +net:typeProperty rdf:type owl:AnnotationProperty ; + rdfs:label "type property" . + + +### https://tenet.tetras-libre.fr/semantic-net#verbClass +net:verbClass rdf:type owl:AnnotationProperty ; + rdfs:label "verb class" ; + rdfs:subPropertyOf net:objectValue . + + +################################################################# +# Object Properties +################################################################# + +### https://amr.tetras-libre.fr/rdf/schema#AMR_ObjectProperty +:AMR_ObjectProperty rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf owl:topObjectProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#hasConcept +:hasConcept rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf :AMR_ObjectProperty ; + rdfs:domain :AMR_Leaf . + + +### https://amr.tetras-libre.fr/rdf/schema#hasRoleID +:hasRoleID rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf :AMR_ObjectProperty ; + rdfs:domain :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#hasRoleTag +:hasRoleTag rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf :AMR_ObjectProperty ; + rdfs:domain :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#hasRolesetID +:hasRolesetID rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf :AMR_ObjectProperty ; + rdfs:domain :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#hasRootLeaf +:hasRootLeaf rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf :AMR_ObjectProperty . + + +### https://amr.tetras-libre.fr/rdf/schema#hasVariable +:hasVariable rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf :AMR_ObjectProperty ; + rdfs:domain :AMR_Leaf . + + +### https://tenet.tetras-libre.fr/base-ontology#Out_ObjectProperty +sys:Out_ObjectProperty rdf:type owl:ObjectProperty . + + +### https://tenet.tetras-libre.fr/base-ontology#hasDegree +sys:hasDegree rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf sys:Out_ObjectProperty . + + +### https://tenet.tetras-libre.fr/base-ontology#hasFeature +sys:hasFeature rdf:type owl:ObjectProperty ; + rdfs:subPropertyOf sys:Out_ObjectProperty . + + +################################################################# +# Data properties +################################################################# + +### https://amr.tetras-libre.fr/rdf/schema#AMR_DataProperty +:AMR_DataProperty rdf:type owl:DatatypeProperty . + + +### https://tenet.tetras-libre.fr/config/parameters#baseURI +cprm:baseURI rdf:type owl:DatatypeProperty ; + rdfs:range xsd:string . + + +### https://tenet.tetras-libre.fr/config/parameters#netURI +cprm:netURI rdf:type owl:DatatypeProperty ; + rdfs:range xsd:string . + + +### https://tenet.tetras-libre.fr/config/parameters#targetOntologyURI +cprm:targetOntologyURI rdf:type owl:DatatypeProperty ; + rdfs:range xsd:string . + + +################################################################# +# Classes +################################################################# + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#a +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#a2 +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a2> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#c +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#g +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#l +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2 +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#m +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#p +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2 +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#r +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#s +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#t +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#t> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#y +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/frames/ld/v1.2.2/FrameRole +ns11:FrameRole rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/frames/ld/v1.2.2/adapt-01 +ns11:adapt-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/frames/ld/v1.2.2/contrast-01 +ns11:contrast-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/frames/ld/v1.2.2/grant-01 +ns11:grant-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/frames/ld/v1.2.2/license-01 +ns11:license-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/frames/ld/v1.2.2/produce-01 +ns11:produce-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/frames/ld/v1.2.2/public-02 +ns11:public-02 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/frames/ld/v1.2.2/reproduce-01 +ns11:reproduce-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/frames/ld/v1.2.2/share-01 +ns11:share-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/rdf/amr-terms#material +ns2:material rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/rdf/amr-terms#this +ns2:this rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/rdf/amr-terms#you +ns2:you rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/rdf/core-amr#AMR +ns3:AMR rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/rdf/core-amr#Concept +ns3:Concept rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data ; + rdfs:label "AMR-Concept" . + + +### http://amr.isi.edu/rdf/core-amr#Frame +ns3:Frame rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/rdf/core-amr#NamedEntity +ns3:NamedEntity rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://amr.isi.edu/rdf/core-amr#Role +ns3:Role rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data ; + rdfs:label "AMR-Role" . + + +### http://amr.isi.edu/rdf/core-amr#and +ns3:and rdf:type owl:Class ; + rdfs:subClassOf :AMR_Linked_Data . + + +### http://www.w3.org/1999/02/22-rdf-syntax-ns#Property +rdf:Property rdf:type owl:Class . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Concept +:AMR_Concept rdf:type owl:Class ; + rdfs:subClassOf :AMR_Element . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Core_Role +:AMR_Core_Role rdf:type owl:Class ; + rdfs:subClassOf :AMR_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Edge +:AMR_Edge rdf:type owl:Class ; + rdfs:subClassOf :AMR_Structure . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Element +:AMR_Element rdf:type owl:Class ; + rdfs:subClassOf :AMR_Structure . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Leaf +:AMR_Leaf rdf:type owl:Class ; + rdfs:subClassOf :AMR_Structure . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Linked_Data +:AMR_Linked_Data rdf:type owl:Class . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_NonCore_Role +:AMR_NonCore_Role rdf:type owl:Class ; + rdfs:subClassOf :AMR_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Op_Role +:AMR_Op_Role rdf:type owl:Class ; + rdfs:subClassOf :AMR_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Phenomena +:AMR_Phenomena rdf:type owl:Class ; + rdfs:subClassOf :AMR_Structure . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Predicat_Concept +:AMR_Predicat_Concept rdf:type owl:Class ; + rdfs:subClassOf :AMR_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Prep_Role +:AMR_Prep_Role rdf:type owl:Class ; + rdfs:subClassOf :AMR_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Relation +:AMR_Relation rdf:type owl:Class ; + rdfs:subClassOf :AMR_Structure . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Relation_Concept +:AMR_Relation_Concept rdf:type owl:Class ; + rdfs:subClassOf :AMR_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Role +:AMR_Role rdf:type owl:Class ; + rdfs:subClassOf :AMR_Element . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Root +:AMR_Root rdf:type owl:Class ; + rdfs:subClassOf :AMR_Structure . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Specific_Role +:AMR_Specific_Role rdf:type owl:Class ; + rdfs:subClassOf :AMR_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Structure +:AMR_Structure rdf:type owl:Class . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Term_Concept +:AMR_Term_Concept rdf:type owl:Class ; + rdfs:subClassOf :AMR_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Value +:AMR_Value rdf:type owl:Class ; + rdfs:subClassOf :AMR_Element . + + +### https://amr.tetras-libre.fr/rdf/schema#AMR_Variable +:AMR_Variable rdf:type owl:Class ; + rdfs:subClassOf :AMR_Element . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_adapt-01 +:concept_adapt-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Predicat_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_and +:concept_and rdf:type owl:Class ; + rdfs:subClassOf :AMR_Relation_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_contrast-01 +:concept_contrast-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Relation_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_grant-01 +:concept_grant-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Predicat_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_license-01 +:concept_license-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Predicat_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_material +:concept_material rdf:type owl:Class ; + rdfs:subClassOf :AMR_Term_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_produce-01 +:concept_produce-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Predicat_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_public-02 +:concept_public-02 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Predicat_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_reproduce-01 +:concept_reproduce-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Predicat_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_share-01 +:concept_share-01 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Predicat_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_this +:concept_this rdf:type owl:Class ; + rdfs:subClassOf :AMR_Term_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_you +:concept_you rdf:type owl:Class ; + rdfs:subClassOf :AMR_Term_Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#phenomena_conjunction +:phenomena_conjunction rdf:type owl:Class ; + rdfs:subClassOf :AMR_Phenomena ; + :hasConceptLink "contrast-01" , + "either" , + "neither" ; + :label "conjunction" . + + +### https://amr.tetras-libre.fr/rdf/schema#phenomena_conjunction_and +:phenomena_conjunction_and rdf:type owl:Class ; + rdfs:subClassOf :phenomena_conjunction ; + :hasConceptLink "and" ; + :label "conjunction-AND" . + + +### https://amr.tetras-libre.fr/rdf/schema#phenomena_conjunction_or +:phenomena_conjunction_or rdf:type owl:Class ; + rdfs:subClassOf :phenomena_conjunction ; + :hasConceptLink "or" ; + :label "conjunction-OR" . + + +### https://amr.tetras-libre.fr/rdf/schema#phenomena_degree +:phenomena_degree rdf:type owl:Class ; + rdfs:subClassOf :AMR_Phenomena ; + :hasConceptLink "have-degree-91" ; + :label "degree" . + + +### https://amr.tetras-libre.fr/rdf/schema#relation_domain +:relation_domain rdf:type owl:Class ; + rdfs:subClassOf :AMR_Relation ; + :hasReification "false"^^xsd:boolean ; + :hasRelationName "domain" . + + +### https://amr.tetras-libre.fr/rdf/schema#relation_manner +:relation_manner rdf:type owl:Class ; + rdfs:subClassOf :AMR_Relation ; + :hasReification "true"^^xsd:boolean ; + :hasReificationConcept "hasManner" ; + :hasReificationDomain "ARG1" ; + :hasReificationRange "ARG2" ; + :hasRelationName "manner" . + + +### https://amr.tetras-libre.fr/rdf/schema#relation_mod +:relation_mod rdf:type owl:Class ; + rdfs:subClassOf :AMR_Relation ; + :hasReification "false"^^xsd:boolean ; + :hasRelationName "mod" . + + +### https://amr.tetras-libre.fr/rdf/schema#relation_name +:relation_name rdf:type owl:Class ; + rdfs:subClassOf :AMR_Relation ; + :hasReification "false"^^xsd:boolean ; + :hasRelationName "name" . + + +### https://amr.tetras-libre.fr/rdf/schema#relation_part +:relation_part rdf:type owl:Class ; + rdfs:subClassOf :AMR_Relation ; + :hasReification "true"^^xsd:boolean ; + :hasReificationConcept "hasPart" ; + :hasReificationDomain "ARG1" ; + :hasReificationRange "ARG2" ; + :hasRelationName "part" . + + +### https://amr.tetras-libre.fr/rdf/schema#relation_polarity +:relation_polarity rdf:type owl:Class ; + rdfs:subClassOf :AMR_Relation ; + :hasReification "false"^^xsd:boolean ; + :hasRelationName "polarity" . + + +### https://amr.tetras-libre.fr/rdf/schema#relation_quant +:relation_quant rdf:type owl:Class ; + rdfs:subClassOf :AMR_Relation ; + :hasReification "false"^^xsd:boolean ; + :hasRelationName "quant" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG0 +:role_ARG0 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Core_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG1 +:role_ARG1 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Core_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG2 +:role_ARG2 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Core_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG3 +:role_ARG3 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Core_Role ; + :label "ARG3" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG4 +:role_ARG4 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Core_Role ; + :label "ARG4" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG5 +:role_ARG5 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Core_Role ; + :label "ARG5" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG6 +:role_ARG6 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Core_Role ; + :label "ARG6" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG7 +:role_ARG7 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Core_Role ; + :label "ARG7" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG8 +:role_ARG8 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Core_Role ; + :label "ARG8" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG9 +:role_ARG9 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Core_Role ; + :label "ARG9" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_domain +:role_domain rdf:type owl:Class ; + rdfs:subClassOf :AMR_NonCore_Role ; + :hasRelationName "domain" ; + :label "domain" ; + :toReifyAsConcept "domain" ; + :toReifyWithBaseEdge "ARG0" ; + :toReifyWithHeadEdge "ARG1" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_have-degree-91 +:role_have-degree-91 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Specific_Role ; + :getPropertyType <net:specificProperty> . + + +### https://amr.tetras-libre.fr/rdf/schema#role_manner +:role_manner rdf:type owl:Class ; + rdfs:subClassOf :AMR_NonCore_Role ; + :getDirectPropertyName "manner" ; + :getPropertyType owl:DataProperty ; + :label "manner" ; + :toReifyAsConcept "manner" ; + :toReifyWithBaseEdge "ARG0" ; + :toReifyWithHeadEdge "ARG1" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_mod +:role_mod rdf:type owl:Class ; + rdfs:subClassOf :AMR_NonCore_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#role_name +:role_name rdf:type owl:Class ; + rdfs:subClassOf :AMR_NonCore_Role ; + :label "name" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op1 +:role_op1 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Op_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op2 +:role_op2 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Op_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op3 +:role_op3 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Op_Role ; + :label "op3" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op4 +:role_op4 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Op_Role ; + :label "op4" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op5 +:role_op5 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Op_Role ; + :label "op5" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op6 +:role_op6 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Op_Role ; + :label "op6" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op7 +:role_op7 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Op_Role ; + :label "op7" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op8 +:role_op8 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Op_Role ; + :label "op8" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op9 +:role_op9 rdf:type owl:Class ; + rdfs:subClassOf :AMR_Op_Role ; + :label "op9" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_part +:role_part rdf:type owl:Class ; + rdfs:subClassOf :AMR_NonCore_Role ; + :getDirectPropertyName "hasPart"^^xsd:string ; + :getInversePropertyName "partOf"^^xsd:string ; + :getPropertyType owl:ObjectProperty ; + :toReifyAsConcept "part" ; + :toReifyWithBaseEdge "ARG0" ; + :toReifyWithHeadEdge "ARG1" . + + +### https://amr.tetras-libre.fr/rdf/schema#role_polarity +:role_polarity rdf:type owl:Class ; + rdfs:subClassOf :AMR_Specific_Role . + + +### https://amr.tetras-libre.fr/rdf/schema#role_quant +:role_quant rdf:type owl:Class ; + rdfs:subClassOf :AMR_Specific_Role ; + :label "quant" . + + +### https://tenet.tetras-libre.fr/base-ontology#Degree +sys:Degree rdf:type owl:Class ; + rdfs:subClassOf sys:Out_Structure . + + +### https://tenet.tetras-libre.fr/base-ontology#Entity +sys:Entity rdf:type owl:Class ; + rdfs:subClassOf sys:Out_Structure . + + +### https://tenet.tetras-libre.fr/base-ontology#Event +sys:Event rdf:type owl:Class ; + rdfs:subClassOf sys:Out_Structure . + + +### https://tenet.tetras-libre.fr/base-ontology#Feature +sys:Feature rdf:type owl:Class ; + rdfs:subClassOf sys:Out_Structure . + + +### https://tenet.tetras-libre.fr/base-ontology#Out_Structure +sys:Out_Structure rdf:type owl:Class ; + rdfs:label "Output Ontology Structure" . + + +### https://tenet.tetras-libre.fr/base-ontology#Undetermined_Thing +sys:Undetermined_Thing rdf:type owl:Class ; + rdfs:subClassOf sys:Out_Structure . + + +### https://tenet.tetras-libre.fr/config/parameters#Config_Parameters +cprm:Config_Parameters rdf:type owl:Class . + + +### https://tenet.tetras-libre.fr/semantic-net#Atom_Class_Net +net:Atom_Class_Net rdf:type owl:Class ; + rdfs:subClassOf net:Class_Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Atom_Property_Net +net:Atom_Property_Net rdf:type owl:Class ; + rdfs:subClassOf net:Property_Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Axiom_Net +net:Axiom_Net rdf:type owl:Class ; + rdfs:subClassOf net:Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Class_Net +net:Class_Net rdf:type owl:Class ; + rdfs:subClassOf net:Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Composite_Class_Net +net:Composite_Class_Net rdf:type owl:Class ; + rdfs:subClassOf net:Class_Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Composite_Property_Net +net:Composite_Property_Net rdf:type owl:Class ; + rdfs:subClassOf net:Property_Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Deprecated_Net +net:Deprecated_Net rdf:type owl:Class ; + rdfs:subClassOf net:Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Feature +net:Feature rdf:type owl:Class ; + rdfs:subClassOf net:Net_Structure . + + +### https://tenet.tetras-libre.fr/semantic-net#Individual_Net +net:Individual_Net rdf:type owl:Class ; + rdfs:subClassOf net:Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Instance +net:Instance rdf:type owl:Class ; + rdfs:subClassOf net:Net_Structure ; + rdfs:label "Semantic Net Instance" . + + +### https://tenet.tetras-libre.fr/semantic-net#Logical_Set_Net +net:Logical_Set_Net rdf:type owl:Class ; + rdfs:subClassOf net:Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Net +net:Net rdf:type owl:Class ; + rdfs:subClassOf net:Net_Structure . + + +### https://tenet.tetras-libre.fr/semantic-net#Net_Structure +net:Net_Structure rdf:type owl:Class ; + rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." ; + rdfs:label "Semantic Net Structure" . + + +### https://tenet.tetras-libre.fr/semantic-net#Object +net:Object rdf:type owl:Class ; + rdfs:subClassOf net:Net_Structure ; + rdfs:label "Object using in semantic net instance" . + + +### https://tenet.tetras-libre.fr/semantic-net#Phenomena_Net +net:Phenomena_Net rdf:type owl:Class ; + rdfs:subClassOf net:Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Property_Axiom_Net +net:Property_Axiom_Net rdf:type owl:Class ; + rdfs:subClassOf net:Axiom_Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Property_Direction +net:Property_Direction rdf:type owl:Class ; + rdfs:subClassOf net:Feature . + + +### https://tenet.tetras-libre.fr/semantic-net#Property_Net +net:Property_Net rdf:type owl:Class ; + rdfs:subClassOf net:Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Relation +net:Relation rdf:type owl:Class ; + rdfs:subClassOf net:Net_Structure . + + +### https://tenet.tetras-libre.fr/semantic-net#Restriction_Net +net:Restriction_Net rdf:type owl:Class ; + rdfs:subClassOf net:Net . + + +### https://tenet.tetras-libre.fr/semantic-net#Type +net:Type rdf:type owl:Class ; + rdfs:subClassOf net:Net_Structure ; + rdfs:label "Semantic Net Type" . + + +### https://tenet.tetras-libre.fr/semantic-net#Value_Net +net:Value_Net rdf:type owl:Class ; + rdfs:subClassOf net:Net . + + +### https://tenet.tetras-libre.fr/semantic-net#atom +net:atom rdf:type owl:Class ; + rdfs:subClassOf net:Type ; + rdfs:label "atom" . + + +### https://tenet.tetras-libre.fr/semantic-net#class +net:class rdf:type owl:Class ; + rdfs:subClassOf net:Type ; + rdfs:label "class" . + + +### https://tenet.tetras-libre.fr/semantic-net#class_list +net:class_list rdf:type owl:Class ; + rdfs:subClassOf net:Type ; + rdfs:label "classList" . + + +### https://tenet.tetras-libre.fr/semantic-net#composite +net:composite rdf:type owl:Class ; + rdfs:subClassOf net:Type ; + rdfs:label "composite" . + + +### https://tenet.tetras-libre.fr/semantic-net#conjunctive_list +net:conjunctive_list rdf:type owl:Class ; + rdfs:subClassOf net:list ; + rdfs:label "conjunctive-list" . + + +### https://tenet.tetras-libre.fr/semantic-net#disjunctive_list +net:disjunctive_list rdf:type owl:Class ; + rdfs:subClassOf net:list ; + rdfs:label "disjunctive-list" . + + +### https://tenet.tetras-libre.fr/semantic-net#entity_class_list +net:entity_class_list rdf:type owl:Class ; + rdfs:subClassOf net:class_list ; + rdfs:label "entityClassList" . + + +### https://tenet.tetras-libre.fr/semantic-net#event +net:event rdf:type owl:Class ; + rdfs:subClassOf net:Type ; + rdfs:label "event" . + + +### https://tenet.tetras-libre.fr/semantic-net#list +net:list rdf:type owl:Class ; + rdfs:subClassOf net:Type ; + rdfs:label "list" . + + +### https://tenet.tetras-libre.fr/semantic-net#relation +net:relation rdf:type owl:Class ; + rdfs:subClassOf net:Type ; + rdfs:label "relation" . + + +### https://tenet.tetras-libre.fr/semantic-net#state_property +net:state_property rdf:type owl:Class ; + rdfs:subClassOf net:Type ; + rdfs:label "stateProperty" . + + +### https://tenet.tetras-libre.fr/semantic-net#unary_list +net:unary_list rdf:type owl:Class ; + rdfs:subClassOf net:list ; + rdfs:label "unary-list" . + + +################################################################# +# Individuals +################################################################# + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#a +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> rdf:type owl:NamedIndividual , + ns3:and . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#a2 +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a2> rdf:type owl:NamedIndividual , + ns11:adapt-01 . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#c +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> rdf:type owl:NamedIndividual , + ns11:contrast-01 . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#g +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> rdf:type owl:NamedIndividual , + ns11:grant-01 . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#l +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> rdf:type owl:NamedIndividual , + ns11:license-01 . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2 +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> rdf:type owl:NamedIndividual , + ns11:license-01 . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#m +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> rdf:type owl:NamedIndividual , + ns2:material . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#p +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p> rdf:type owl:NamedIndividual , + ns11:public-02 . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2 +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> rdf:type owl:NamedIndividual , + ns11:produce-01 . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#r +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> rdf:type owl:NamedIndividual , + ns11:reproduce-01 . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#root01 +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#root01> rdf:type owl:NamedIndividual , + ns3:AMR ; + ns3:has-id "cc-sentence-examples-03" ; + ns3:has-sentence "This Public License grants You a license to produce and reproduce, but not Share, Adapted Material." ; + ns3:root <http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#s +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> rdf:type owl:NamedIndividual , + ns11:share-01 . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#t +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#t> rdf:type owl:NamedIndividual , + ns2:this . + + +### http://amr.isi.edu/amr_data/cc-sentence-examples-03#y +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> rdf:type owl:NamedIndividual , + ns2:you . + + +### http://amr.isi.edu/frames/ld/v1.2.2/FrameRole +ns11:FrameRole rdf:type owl:NamedIndividual , + ns3:Role . + + +### http://amr.isi.edu/frames/ld/v1.2.2/adapt-01 +ns11:adapt-01 rdf:type owl:NamedIndividual , + ns3:Frame . + + +### http://amr.isi.edu/frames/ld/v1.2.2/adapt-01.ARG1 +ns11:adapt-01.ARG1 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/contrast-01 +ns11:contrast-01 rdf:type owl:NamedIndividual , + ns3:Frame . + + +### http://amr.isi.edu/frames/ld/v1.2.2/contrast-01.ARG1 +ns11:contrast-01.ARG1 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/contrast-01.ARG2 +ns11:contrast-01.ARG2 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/grant-01 +ns11:grant-01 rdf:type owl:NamedIndividual , + ns3:Frame . + + +### http://amr.isi.edu/frames/ld/v1.2.2/grant-01.ARG0 +ns11:grant-01.ARG0 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/grant-01.ARG1 +ns11:grant-01.ARG1 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/grant-01.ARG2 +ns11:grant-01.ARG2 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/license-01 +ns11:license-01 rdf:type owl:NamedIndividual , + ns3:Frame . + + +### http://amr.isi.edu/frames/ld/v1.2.2/license-01.ARG1 +ns11:license-01.ARG1 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/license-01.ARG2 +ns11:license-01.ARG2 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/produce-01 +ns11:produce-01 rdf:type owl:NamedIndividual , + ns3:Frame . + + +### http://amr.isi.edu/frames/ld/v1.2.2/produce-01.ARG0 +ns11:produce-01.ARG0 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/produce-01.ARG1 +ns11:produce-01.ARG1 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/public-02 +ns11:public-02 rdf:type owl:NamedIndividual , + ns3:Frame . + + +### http://amr.isi.edu/frames/ld/v1.2.2/public-02.ARG1 +ns11:public-02.ARG1 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/reproduce-01 +ns11:reproduce-01 rdf:type owl:NamedIndividual , + ns3:Frame . + + +### http://amr.isi.edu/frames/ld/v1.2.2/reproduce-01.ARG0 +ns11:reproduce-01.ARG0 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/reproduce-01.ARG1 +ns11:reproduce-01.ARG1 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/share-01 +ns11:share-01 rdf:type owl:NamedIndividual , + ns3:Frame . + + +### http://amr.isi.edu/frames/ld/v1.2.2/share-01.ARG0 +ns11:share-01.ARG0 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/frames/ld/v1.2.2/share-01.ARG1 +ns11:share-01.ARG1 rdf:type owl:NamedIndividual , + ns11:FrameRole . + + +### http://amr.isi.edu/rdf/amr-terms#domain +ns2:domain rdf:type owl:NamedIndividual , + ns3:Role . + + +### http://amr.isi.edu/rdf/amr-terms#material +ns2:material rdf:type owl:NamedIndividual , + ns3:Concept . + + +### http://amr.isi.edu/rdf/amr-terms#mod +ns2:mod rdf:type owl:NamedIndividual , + ns3:Role . + + +### http://amr.isi.edu/rdf/amr-terms#op1 +ns2:op1 rdf:type owl:NamedIndividual , + ns3:Role . + + +### http://amr.isi.edu/rdf/amr-terms#op2 +ns2:op2 rdf:type owl:NamedIndividual , + ns3:Role . + + +### http://amr.isi.edu/rdf/amr-terms#this +ns2:this rdf:type owl:NamedIndividual , + ns3:Concept . + + +### http://amr.isi.edu/rdf/amr-terms#you +ns2:you rdf:type owl:NamedIndividual , + ns3:Concept . + + +### http://amr.isi.edu/rdf/core-amr#Frame +ns3:Frame rdf:type owl:NamedIndividual , + ns3:Concept . + + +### http://amr.isi.edu/rdf/core-amr#NamedEntity +ns3:NamedEntity rdf:type owl:NamedIndividual , + ns3:Concept . + + +### http://amr.isi.edu/rdf/core-amr#and +ns3:and rdf:type owl:NamedIndividual , + ns3:Concept . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_adapt-01 +:concept_adapt-01 rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_and +:concept_and rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_contrast-01 +:concept_contrast-01 rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_grant-01 +:concept_grant-01 rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_license-01 +:concept_license-01 rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_material +:concept_material rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_produce-01 +:concept_produce-01 rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_public-02 +:concept_public-02 rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_reproduce-01 +:concept_reproduce-01 rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_share-01 +:concept_share-01 rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_this +:concept_this rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#concept_you +:concept_you rdf:type owl:NamedIndividual . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_a2_ARG1_m +:edge_a2_ARG1_m rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_a_op1_p2 +:edge_a_op1_p2 rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_a_op2_r +:edge_a_op2_r rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_c_ARG1_l2 +:edge_c_ARG1_l2 rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_c_ARG2_s +:edge_c_ARG2_s rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_g_ARG0_l +:edge_g_ARG0_l rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_g_ARG1_c +:edge_g_ARG1_c rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_g_ARG2_y +:edge_g_ARG2_y rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_l2_ARG1_a +:edge_l2_ARG1_a rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_l2_ARG2_y +:edge_l2_ARG2_y rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_l_mod_t +:edge_l_mod_t rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_p2_ARG0_y +:edge_p2_ARG0_y rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_p2_ARG1_m +:edge_p2_ARG1_m rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_p_ARG1_l +:edge_p_ARG1_l rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_r_ARG0_y +:edge_r_ARG0_y rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_r_ARG1_m +:edge_r_ARG1_m rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_s_ARG0_y +:edge_s_ARG0_y rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_s_ARG1_m +:edge_s_ARG1_m rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#edge_s_polarity_negative +:edge_s_polarity_negative rdf:type owl:NamedIndividual , + :AMR_Edge . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_adapt-01_a2 +:leaf_adapt-01_a2 rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_adapt-01 ; + :hasVariable :variable_a2 ; + :edge_a2_ARG1_m :leaf_material_m . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_and_a +:leaf_and_a rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_and ; + :hasVariable :variable_a ; + :edge_a_op1_p2 :leaf_produce-01_p2 ; + :edge_a_op2_r :leaf_reproduce-01_r . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_contrast-01_c +:leaf_contrast-01_c rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_contrast-01 ; + :hasVariable :variable_c ; + :edge_c_ARG1_l2 :leaf_license-01_l2 ; + :edge_c_ARG2_s :leaf_share-01_s . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_grant-01_g +:leaf_grant-01_g rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_grant-01 ; + :hasVariable :variable_g ; + :edge_g_ARG0_l :leaf_license-01_l ; + :edge_g_ARG1_c :leaf_contrast-01_c ; + :edge_g_ARG2_y :leaf_you_y . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_license-01_l +:leaf_license-01_l rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_license-01 ; + :hasVariable :variable_l ; + :edge_l_mod_t :leaf_this_t . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_license-01_l2 +:leaf_license-01_l2 rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_license-01 ; + :hasVariable :variable_l2 ; + :edge_l2_ARG1_a :leaf_and_a ; + :edge_l2_ARG2_y :leaf_you_y . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_material_m +:leaf_material_m rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_material ; + :hasVariable :variable_m . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_produce-01_p2 +:leaf_produce-01_p2 rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_produce-01 ; + :hasVariable :variable_p2 ; + :edge_p2_ARG0_y :leaf_you_y ; + :edge_p2_ARG1_m :leaf_material_m . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_public-02_p +:leaf_public-02_p rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_public-02 ; + :hasVariable :variable_p ; + :edge_p_ARG1_l :leaf_license-01_l . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_reproduce-01_r +:leaf_reproduce-01_r rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_reproduce-01 ; + :hasVariable :variable_r ; + :edge_r_ARG0_y :leaf_you_y ; + :edge_r_ARG1_m :leaf_material_m . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_share-01_s +:leaf_share-01_s rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_share-01 ; + :hasVariable :variable_s ; + :edge_s_ARG0_y :leaf_you_y ; + :edge_s_ARG1_m :leaf_material_m ; + :edge_s_polarity_negative :value_negative . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_this_t +:leaf_this_t rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_this ; + :hasVariable :variable_t . + + +### https://amr.tetras-libre.fr/rdf/schema#leaf_you_y +:leaf_you_y rdf:type owl:NamedIndividual , + :AMR_Leaf ; + :hasConcept :concept_you ; + :hasVariable :variable_y . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG0 +:role_ARG0 rdf:type owl:NamedIndividual , + net:Relation . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG1 +:role_ARG1 rdf:type owl:NamedIndividual , + net:Relation . + + +### https://amr.tetras-libre.fr/rdf/schema#role_ARG2 +:role_ARG2 rdf:type owl:NamedIndividual , + net:Relation . + + +### https://amr.tetras-libre.fr/rdf/schema#role_mod +:role_mod rdf:type owl:NamedIndividual , + net:Relation . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op1 +:role_op1 rdf:type owl:NamedIndividual , + net:Relation . + + +### https://amr.tetras-libre.fr/rdf/schema#role_op2 +:role_op2 rdf:type owl:NamedIndividual , + net:Relation . + + +### https://amr.tetras-libre.fr/rdf/schema#role_polarity +:role_polarity rdf:type owl:NamedIndividual , + net:Relation . + + +### https://amr.tetras-libre.fr/rdf/schema#root_cc-sentence-examples-03 +:root_cc-sentence-examples-03 rdf:type owl:NamedIndividual , + :AMR_Root ; + :hasRootLeaf :leaf_grant-01_g ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#root01> ; + :hasSentenceID "cc-sentence-examples-03" ; + :hasSentenceStatement "This Public License grants You a license to produce and reproduce, but not Share, Adapted Material." . + + +### https://amr.tetras-libre.fr/rdf/schema#value_negative +:value_negative rdf:type owl:NamedIndividual , + :AMR_Value ; + rdfs:label "negative" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_a +:variable_a rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> ; + :label "a" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_a2 +:variable_a2 rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#a2> ; + :label "a2" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_c +:variable_c rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> ; + :label "c" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_g +:variable_g rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> ; + :label "g" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_l +:variable_l rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> ; + :label "l" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_l2 +:variable_l2 rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> ; + :label "l2" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_m +:variable_m rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; + :label "m" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_p +:variable_p rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#p> ; + :label "p" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_p2 +:variable_p2 rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> ; + :label "p2" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_r +:variable_r rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> ; + :label "r" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_s +:variable_s rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> ; + :label "s" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_t +:variable_t rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#t> ; + :label "t" . + + +### https://amr.tetras-libre.fr/rdf/schema#variable_y +:variable_y rdf:type owl:NamedIndividual , + :AMR_Variable ; + :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; + :label "y" . + + +### https://tenet.tetras-libre.fr/config/parameters#Config_Parameters +cprm:Config_Parameters rdf:type owl:NamedIndividual ; + cprm:baseURI "https://tenet.tetras-libre.fr/" ; + cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ; + cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" . + + +### https://tenet.tetras-libre.fr/semantic-net#atomClass_material_m +net:atomClass_material_m rdf:type owl:NamedIndividual , + net:Atom_Class_Net ; + net:coverBaseNode :leaf_material_m ; + net:coverNode :leaf_material_m ; + net:coverNodeCount 1 ; + net:hasClassName "material" ; + net:hasClassType sys:Entity ; + net:hasNaming "material" ; + net:hasStructure "cc-sentence-examples-03" ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#atomClass_this_t +net:atomClass_this_t rdf:type owl:NamedIndividual , + net:Atom_Class_Net , + net:Deprecated_Net ; + net:coverBaseNode :leaf_this_t ; + net:coverNode :leaf_this_t ; + net:coverNodeCount 1 ; + net:hasClassName "this" ; + net:hasNaming "this" ; + net:hasStructure "cc-sentence-examples-03" ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#atomClass_you_y +net:atomClass_you_y rdf:type owl:NamedIndividual , + net:Atom_Class_Net ; + net:coverBaseNode :leaf_you_y ; + net:coverNode :leaf_you_y ; + net:coverNodeCount 1 ; + net:hasClassName "you" ; + net:hasClassType sys:Entity ; + net:hasNaming "you" ; + net:hasStructure "cc-sentence-examples-03" ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#atomProperty_adapt_a2 +net:atomProperty_adapt_a2 rdf:type owl:NamedIndividual , + net:Atom_Property_Net ; + :role_ARG1 net:atomClass_material_m ; + net:coverBaseNode :leaf_adapt-01_a2 ; + net:coverNode :leaf_adapt-01_a2 ; + net:hasNaming "adapt" ; + net:hasPropertyName "adapt" ; + net:hasPropertyName01 "adapting" ; + net:hasPropertyName10 "adapt-by" ; + net:hasPropertyName12 "adapt-of" ; + net:hasPropertyType owl:ObjectProperty ; + net:hasStructure "cc-sentence-examples-03" ; + net:isCoreRoleLinked "true"^^xsd:boolean ; + net:targetArgumentNode :leaf_material_m ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#atomProperty_grant_g +net:atomProperty_grant_g rdf:type owl:NamedIndividual , + net:Atom_Property_Net ; + :role_ARG0 net:atomProperty_license_l ; + :role_ARG1 net:phenomena_conjunction_c ; + :role_ARG2 net:atomClass_you_y , + net:compositeClass_you-produceing-material_y , + net:compositeClass_you-reproduceing-material_y , + net:compositeClass_you-shareing-material_y , + net:individual_you-produceing-material_fromClass , + net:individual_you-reproduceing-material_fromClass , + net:individual_you-shareing-material_fromClass , + net:individual_you_fromClass ; + net:coverBaseNode :leaf_grant-01_g ; + net:coverNode :leaf_grant-01_g ; + net:hasNaming "grant" ; + net:hasPropertyName "grant" ; + net:hasPropertyName01 "granting" ; + net:hasPropertyName10 "grant-by" ; + net:hasPropertyName12 "grant-of" ; + net:hasPropertyType owl:ObjectProperty ; + net:hasStructure "cc-sentence-examples-03" ; + net:isCoreRoleLinked "true"^^xsd:boolean ; + net:targetArgumentNode :leaf_contrast-01_c , + :leaf_license-01_l , + :leaf_you_y ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#atomProperty_license_l +net:atomProperty_license_l rdf:type owl:NamedIndividual , + net:Atom_Property_Net ; + :role_mod net:atomClass_this_t ; + net:coverBaseNode :leaf_license-01_l ; + net:coverNode :leaf_license-01_l ; + net:hasNaming "license" ; + net:hasPropertyName "license" ; + net:hasPropertyName01 "licenseing" ; + net:hasPropertyName10 "license-by" ; + net:hasPropertyName12 "license-of" ; + net:hasPropertyType owl:ObjectProperty ; + net:hasStructure "cc-sentence-examples-03" ; + net:isCoreRoleLinked "true"^^xsd:boolean ; + net:targetArgumentNode :leaf_this_t ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#atomProperty_license_l2 +net:atomProperty_license_l2 rdf:type owl:NamedIndividual , + net:Atom_Property_Net ; + :role_ARG1 net:logicalSet_and_a , + net:phenomena_conjunction-AND_a ; + :role_ARG2 net:atomClass_you_y , + net:compositeClass_you-produceing-material_y , + net:compositeClass_you-reproduceing-material_y , + net:compositeClass_you-shareing-material_y , + net:individual_you-produceing-material_fromClass , + net:individual_you-reproduceing-material_fromClass , + net:individual_you-shareing-material_fromClass , + net:individual_you_fromClass ; + net:coverBaseNode :leaf_license-01_l2 ; + net:coverNode :leaf_license-01_l2 ; + net:hasNaming "license" ; + net:hasPropertyName "license" ; + net:hasPropertyName01 "licenseing" ; + net:hasPropertyName10 "license-by" ; + net:hasPropertyName12 "license-of" ; + net:hasPropertyType owl:ObjectProperty ; + net:hasStructure "cc-sentence-examples-03" ; + net:isCoreRoleLinked "true"^^xsd:boolean ; + net:targetArgumentNode :leaf_and_a , + :leaf_you_y ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#atomProperty_produce_p2 +net:atomProperty_produce_p2 rdf:type owl:NamedIndividual , + net:Atom_Property_Net ; + :role_ARG0 net:atomClass_you_y , + net:compositeClass_you-produceing-material_y , + net:compositeClass_you-reproduceing-material_y , + net:compositeClass_you-shareing-material_y , + net:individual_you-produceing-material_fromClass , + net:individual_you-reproduceing-material_fromClass , + net:individual_you-shareing-material_fromClass , + net:individual_you_fromClass ; + :role_ARG1 net:atomClass_material_m ; + net:coverBaseNode :leaf_produce-01_p2 ; + net:coverNode :leaf_produce-01_p2 ; + net:hasNaming "produce" ; + net:hasPropertyName "produce" ; + net:hasPropertyName01 "produceing" ; + net:hasPropertyName10 "produce-by" ; + net:hasPropertyName12 "produce-of" ; + net:hasPropertyType owl:ObjectProperty ; + net:hasStructure "cc-sentence-examples-03" ; + net:isCoreRoleLinked "true"^^xsd:boolean ; + net:targetArgumentNode :leaf_material_m , + :leaf_you_y ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#atomProperty_public_p +net:atomProperty_public_p rdf:type owl:NamedIndividual , + net:Atom_Property_Net ; + :role_ARG1 net:atomProperty_license_l ; + net:coverBaseNode :leaf_public-02_p ; + net:coverNode :leaf_public-02_p ; + net:hasNaming "public" ; + net:hasPropertyName "public" ; + net:hasPropertyName01 "publicing" ; + net:hasPropertyName10 "public-by" ; + net:hasPropertyName12 "public-of" ; + net:hasPropertyType owl:ObjectProperty ; + net:hasStructure "cc-sentence-examples-03" ; + net:isCoreRoleLinked "true"^^xsd:boolean ; + net:targetArgumentNode :leaf_license-01_l ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#atomProperty_reproduce_r +net:atomProperty_reproduce_r rdf:type owl:NamedIndividual , + net:Atom_Property_Net ; + :role_ARG0 net:atomClass_you_y , + net:compositeClass_you-produceing-material_y , + net:compositeClass_you-reproduceing-material_y , + net:compositeClass_you-shareing-material_y , + net:individual_you-produceing-material_fromClass , + net:individual_you-reproduceing-material_fromClass , + net:individual_you-shareing-material_fromClass , + net:individual_you_fromClass ; + :role_ARG1 net:atomClass_material_m ; + net:coverBaseNode :leaf_reproduce-01_r ; + net:coverNode :leaf_reproduce-01_r ; + net:hasNaming "reproduce" ; + net:hasPropertyName "reproduce" ; + net:hasPropertyName01 "reproduceing" ; + net:hasPropertyName10 "reproduce-by" ; + net:hasPropertyName12 "reproduce-of" ; + net:hasPropertyType owl:ObjectProperty ; + net:hasStructure "cc-sentence-examples-03" ; + net:isCoreRoleLinked "true"^^xsd:boolean ; + net:targetArgumentNode :leaf_material_m , + :leaf_you_y ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#atomProperty_share_s +net:atomProperty_share_s rdf:type owl:NamedIndividual , + net:Atom_Property_Net ; + :role_ARG0 net:atomClass_you_y , + net:compositeClass_you-produceing-material_y , + net:compositeClass_you-reproduceing-material_y , + net:compositeClass_you-shareing-material_y , + net:individual_you-produceing-material_fromClass , + net:individual_you-reproduceing-material_fromClass , + net:individual_you-shareing-material_fromClass , + net:individual_you_fromClass ; + :role_ARG1 net:atomClass_material_m ; + :role_polarity net:value_negative_blankNode ; + net:coverBaseNode :leaf_share-01_s ; + net:coverNode :leaf_share-01_s ; + net:hasNaming "share" ; + net:hasPropertyName "share" ; + net:hasPropertyName01 "shareing" ; + net:hasPropertyName10 "share-by" ; + net:hasPropertyName12 "share-of" ; + net:hasPropertyType owl:ObjectProperty ; + net:hasStructure "cc-sentence-examples-03" ; + net:isCoreRoleLinked "true"^^xsd:boolean ; + net:targetArgumentNode :leaf_material_m , + :leaf_you_y , + :value_negative ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#compositeClass_you-produceing-material_y +net:compositeClass_you-produceing-material_y rdf:type owl:NamedIndividual , + net:Composite_Class_Net ; + net:coverBaseNode :leaf_you_y ; + net:coverNode :leaf_material_m , + :leaf_produce-01_p2 , + :leaf_you_y ; + net:coverNodeCount 3 ; + net:hasClassName "you-produceing-material" ; + net:hasClassType sys:Entity ; + net:hasMotherClassNet net:atomClass_you_y ; + net:hasRestriction01 net:restriction_produceing_material ; + net:hasStructure "cc-sentence-examples-03" ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#compositeClass_you-reproduceing-material_y +net:compositeClass_you-reproduceing-material_y rdf:type owl:NamedIndividual , + net:Composite_Class_Net ; + net:coverBaseNode :leaf_you_y ; + net:coverNode :leaf_material_m , + :leaf_reproduce-01_r , + :leaf_you_y ; + net:coverNodeCount 3 ; + net:hasClassName "you-reproduceing-material" ; + net:hasClassType sys:Entity ; + net:hasMotherClassNet net:atomClass_you_y ; + net:hasRestriction01 net:restriction_reproduceing_material ; + net:hasStructure "cc-sentence-examples-03" ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#compositeClass_you-shareing-material_y +net:compositeClass_you-shareing-material_y rdf:type owl:NamedIndividual , + net:Composite_Class_Net ; + net:coverBaseNode :leaf_you_y ; + net:coverNode :leaf_material_m , + :leaf_share-01_s , + :leaf_you_y ; + net:coverNodeCount 3 ; + net:hasClassName "you-shareing-material" ; + net:hasClassType sys:Entity ; + net:hasMotherClassNet net:atomClass_you_y ; + net:hasRestriction01 net:restriction_shareing_material ; + net:hasStructure "cc-sentence-examples-03" ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#compositeProperty_public-license +net:compositeProperty_public-license rdf:type owl:NamedIndividual , + net:Composite_Property_Net ; + :role_ARG1 net:atomProperty_license_l ; + net:coverArgNode :leaf_license-01_l ; + net:coverBaseNode :leaf_public-02_p ; + net:coverNode :leaf_license-01_l , + :leaf_public-02_p ; + net:hasMotherClassNet net:atomProperty_license_l ; + net:hasNaming "public-license" ; + net:hasPropertyName "public-license" ; + net:hasPropertyType owl:ObjectProperty ; + net:hasStructure "cc-sentence-examples-03" ; + net:isCoreRoleLinked "true"^^xsd:boolean . + + +### https://tenet.tetras-libre.fr/semantic-net#individual_this_t +net:individual_this_t rdf:type owl:NamedIndividual , + net:Individual_Net ; + net:coverBaseNode :leaf_this_t ; + net:coverNode :leaf_this_t ; + net:hasBaseClassName "Feature" ; + net:hasIndividualLabel "this" ; + net:hasMotherClassNet net:atomClass_this_t ; + net:hasStructure "cc-sentence-examples-03" ; + net:trackMainNetComposante net:atomClass_this_t ; + net:trackNetComposante net:atomClass_this_t ; + net:trackProgress net:initialized . + + +### https://tenet.tetras-libre.fr/semantic-net#individual_you-produceing-material_fromClass +net:individual_you-produceing-material_fromClass rdf:type owl:NamedIndividual , + net:Individual_Net ; + net:coverBaseNode :leaf_you_y ; + net:coverNode :leaf_you_y ; + net:fromClassNet net:compositeClass_you-produceing-material_y ; + net:hasBaseClassName "Feature" ; + net:hasIndividualLabel "you-produceing-material" ; + net:hasMotherClassNet net:atomClass_you_y , + net:compositeClass_you-produceing-material_y , + net:compositeClass_you-reproduceing-material_y , + net:compositeClass_you-shareing-material_y ; + net:hasStructure "cc-sentence-examples-03" . + + +### https://tenet.tetras-libre.fr/semantic-net#individual_you-reproduceing-material_fromClass +net:individual_you-reproduceing-material_fromClass rdf:type owl:NamedIndividual , + net:Individual_Net ; + net:coverBaseNode :leaf_you_y ; + net:coverNode :leaf_you_y ; + net:fromClassNet net:compositeClass_you-reproduceing-material_y ; + net:hasBaseClassName "Feature" ; + net:hasIndividualLabel "you-reproduceing-material" ; + net:hasMotherClassNet net:atomClass_you_y , + net:compositeClass_you-produceing-material_y , + net:compositeClass_you-reproduceing-material_y , + net:compositeClass_you-shareing-material_y ; + net:hasStructure "cc-sentence-examples-03" . + + +### https://tenet.tetras-libre.fr/semantic-net#individual_you-shareing-material_fromClass +net:individual_you-shareing-material_fromClass rdf:type owl:NamedIndividual , + net:Individual_Net ; + net:coverBaseNode :leaf_you_y ; + net:coverNode :leaf_you_y ; + net:fromClassNet net:compositeClass_you-shareing-material_y ; + net:hasBaseClassName "Feature" ; + net:hasIndividualLabel "you-shareing-material" ; + net:hasMotherClassNet net:atomClass_you_y , + net:compositeClass_you-produceing-material_y , + net:compositeClass_you-reproduceing-material_y , + net:compositeClass_you-shareing-material_y ; + net:hasStructure "cc-sentence-examples-03" . + + +### https://tenet.tetras-libre.fr/semantic-net#individual_you_fromClass +net:individual_you_fromClass rdf:type owl:NamedIndividual , + net:Individual_Net ; + net:coverBaseNode :leaf_you_y ; + net:coverNode :leaf_you_y ; + net:fromClassNet net:atomClass_you_y ; + net:hasBaseClassName "Feature" ; + net:hasIndividualLabel "you" ; + net:hasMotherClassNet net:atomClass_you_y , + net:compositeClass_you-produceing-material_y , + net:compositeClass_you-reproduceing-material_y , + net:compositeClass_you-shareing-material_y ; + net:hasStructure "cc-sentence-examples-03" . + + +### https://tenet.tetras-libre.fr/semantic-net#inverse_direction +net:inverse_direction rdf:type owl:NamedIndividual . + + +### https://tenet.tetras-libre.fr/semantic-net#logicalSet_and_a +net:logicalSet_and_a rdf:type owl:NamedIndividual , + net:Logical_Set_Net ; + :role_op1 net:atomProperty_produce_p2 ; + :role_op2 net:atomProperty_reproduce_r ; + net:bindPropertyNet net:atomProperty_license_l2 ; + net:containsNet net:atomProperty_produce_p2 , + net:atomProperty_reproduce_r ; + net:containsNet1 net:atomProperty_produce_p2 ; + net:containsNet2 net:atomProperty_reproduce_r ; + net:coverBaseNode :leaf_and_a ; + net:coverNode :leaf_and_a ; + net:hasLogicalConstraint "AND" ; + net:hasStructure "cc-sentence-examples-03" ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#normal_direction +net:normal_direction rdf:type owl:NamedIndividual . + + +### https://tenet.tetras-libre.fr/semantic-net#phenomena_conjunction-AND_a +net:phenomena_conjunction-AND_a rdf:type owl:NamedIndividual , + net:Phenomena_Net ; + :role_op1 net:atomProperty_produce_p2 ; + :role_op2 net:atomProperty_reproduce_r ; + net:coverBaseNode :leaf_and_a ; + net:coverNode :leaf_and_a ; + net:hasNaming "conjunction-AND" ; + net:hasPhenomenaRef "and" ; + net:hasPhenomenaType :phenomena_conjunction_and ; + net:hasStructure "cc-sentence-examples-03" ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#phenomena_conjunction_c +net:phenomena_conjunction_c rdf:type owl:NamedIndividual , + net:Phenomena_Net ; + :role_ARG1 net:atomProperty_license_l2 ; + :role_ARG2 net:atomProperty_share_s ; + net:coverBaseNode :leaf_contrast-01_c ; + net:coverNode :leaf_contrast-01_c ; + net:hasNaming "conjunction" ; + net:hasPhenomenaRef "contrast-01" ; + net:hasPhenomenaType :phenomena_conjunction ; + net:hasStructure "cc-sentence-examples-03" ; + net:trackProgress net:initialized , + net:relation_propagated . + + +### https://tenet.tetras-libre.fr/semantic-net#restriction_produceing_material +net:restriction_produceing_material rdf:type owl:NamedIndividual , + net:Restriction_Net ; + net:coverBaseNode :leaf_you_y ; + net:coverNode :leaf_material_m , + :leaf_produce-01_p2 , + :leaf_you_y ; + net:coverTargetNode :leaf_material_m , + :leaf_produce-01_p2 ; + net:hasNaming "you-produceing-material" ; + net:hasRestrictionNetValue net:atomClass_material_m ; + net:hasRestrictionOnProperty net:atomProperty_produce_p2 . + + +### https://tenet.tetras-libre.fr/semantic-net#restriction_reproduceing_material +net:restriction_reproduceing_material rdf:type owl:NamedIndividual , + net:Restriction_Net ; + net:coverBaseNode :leaf_you_y ; + net:coverNode :leaf_material_m , + :leaf_reproduce-01_r , + :leaf_you_y ; + net:coverTargetNode :leaf_material_m , + :leaf_reproduce-01_r ; + net:hasNaming "you-reproduceing-material" ; + net:hasRestrictionNetValue net:atomClass_material_m ; + net:hasRestrictionOnProperty net:atomProperty_reproduce_r . + + +### https://tenet.tetras-libre.fr/semantic-net#restriction_shareing_material +net:restriction_shareing_material rdf:type owl:NamedIndividual , + net:Restriction_Net ; + net:coverBaseNode :leaf_you_y ; + net:coverNode :leaf_material_m , + :leaf_share-01_s , + :leaf_you_y ; + net:coverTargetNode :leaf_material_m , + :leaf_share-01_s ; + net:hasNaming "you-shareing-material" ; + net:hasRestrictionNetValue net:atomClass_material_m ; + net:hasRestrictionOnProperty net:atomProperty_share_s . + + +### https://tenet.tetras-libre.fr/semantic-net#value_negative_blankNode +net:value_negative_blankNode rdf:type owl:NamedIndividual , + net:Value_Net ; + net:hasNaming "negative" ; + net:hasStructure "cc-sentence-examples-03" ; + net:hasValueLabel "negative" ; + net:trackProgress net:initialized , + net:relation_propagated . + + +################################################################# +# Annotations +################################################################# + +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> ns2:op2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> ; + ns2:op1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> . + + +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a2> ns11:adapt-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> . + + +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> ns11:contrast-01.ARG2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> ; + ns11:contrast-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> . + + +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> ns11:grant-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> ; + ns11:grant-01.ARG2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; + ns11:grant-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> . + + +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> ns2:mod <http://amr.isi.edu/amr_data/cc-sentence-examples-03#t> . + + +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> ns11:license-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> ; + ns11:license-01.ARG2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> . + + +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p> ns11:public-02.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> . + + +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> ns11:produce-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; + ns11:produce-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> . + + +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> ns11:reproduce-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; + ns11:reproduce-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> . + + +<http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> ns2:polarity "-" ; + ns11:share-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; + ns11:share-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> . + + +<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasSentence "The sun is a star." ; + ns3:hasID "test-1" ; + ns3:root <http://amr.isi.edu/amr_data/test-1#s> . + + +<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> . + + +<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" . + + +<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasSentence "Earth is a planet." ; + ns3:hasID "test-2" ; + ns3:root <http://amr.isi.edu/amr_data/test-2#p> . + + +ns11:FrameRole rdfs:label "AMR-PropBank-Role" . + + +ns3:Frame rdfs:label "AMR-PropBank-Frame" . + + +ns3:NamedEntity rdfs:label "AMR-Term" , + "AMR-EntityType" . + + +:concept_adapt-01 :fromAmrLk ns11:adapt-01 ; + :label "adapt-01" . + + +:concept_and :hasPhenomenaLink :phenomena_conjunction_and ; + :fromAmrLk ns3:and ; + :label "and" . + + +:concept_contrast-01 :hasPhenomenaLink :phenomena_conjunction ; + :fromAmrLk ns11:contrast-01 ; + :label "contrast-01" . + + +:concept_grant-01 :fromAmrLk ns11:grant-01 ; + :label "grant-01" . + + +:concept_license-01 :fromAmrLk ns11:license-01 ; + :label "license-01" . + + +:concept_material :label "material" ; + :fromAmrLk ns2:material . + + +:concept_produce-01 :fromAmrLk ns11:produce-01 ; + :label "produce-01" . + + +:concept_public-02 :label "public-02" ; + :fromAmrLk ns11:public-02 . + + +:concept_reproduce-01 :fromAmrLk ns11:reproduce-01 ; + :label "reproduce-01" . + + +:concept_share-01 :fromAmrLk ns11:share-01 ; + :label "share-01" . + + +:concept_this :fromAmrLk ns2:this ; + :label "this" . + + +:concept_you :label "you" ; + :fromAmrLk ns2:you . + + +:edge_a2_ARG1_m :hasRoleID "ARG1" ; + :hasAmrRole :role_ARG1 . + + +:edge_a_op1_p2 :hasAmrRole :role_op1 ; + :hasRoleID "op1" . + + +:edge_a_op2_r :hasAmrRole :role_op2 ; + :hasRoleID "op2" . + + +:edge_c_ARG1_l2 :hasRoleID "ARG1" ; + :hasAmrRole :role_ARG1 . + + +:edge_c_ARG2_s :hasRoleID "ARG2" ; + :hasAmrRole :role_ARG2 . + + +:edge_g_ARG0_l :hasAmrRole :role_ARG0 ; + :hasRoleID "ARG0" . + + +:edge_g_ARG1_c :hasAmrRole :role_ARG1 ; + :hasRoleID "ARG1" . + + +:edge_g_ARG2_y :hasRoleID "ARG2" ; + :hasAmrRole :role_ARG2 . + + +:edge_l2_ARG1_a :hasAmrRole :role_ARG1 ; + :hasRoleID "ARG1" . + + +:edge_l2_ARG2_y :hasRoleID "ARG2" ; + :hasAmrRole :role_ARG2 . + + +:edge_l_mod_t :hasRoleID "mod" ; + :hasAmrRole :role_mod . + + +:edge_p2_ARG0_y :hasRoleID "ARG0" ; + :hasAmrRole :role_ARG0 . + + +:edge_p2_ARG1_m :hasAmrRole :role_ARG1 ; + :hasRoleID "ARG1" . + + +:edge_p_ARG1_l :hasAmrRole :role_ARG1 ; + :hasRoleID "ARG1" . + + +:edge_r_ARG0_y :hasRoleID "ARG0" ; + :hasAmrRole :role_ARG0 . + + +:edge_r_ARG1_m :hasRoleID "ARG1" ; + :hasAmrRole :role_ARG1 . + + +:edge_s_ARG0_y :hasAmrRole :role_ARG0 ; + :hasRoleID "ARG0" . + + +:edge_s_ARG1_m :hasRoleID "ARG1" ; + :hasAmrRole :role_ARG1 . + + +:edge_s_polarity_negative :hasAmrRole :role_polarity ; + :hasRoleID "polarity" . + + +:role_ARG0 :label "ARG0" . + + +:role_ARG1 :label "ARG1" . + + +:role_ARG2 :label "ARG2" . + + +:role_mod :toReifyWithHeadEdge "ARG1" ; + :getDirectPropertyName "hasFeature"^^xsd:string ; + :getPropertyType owl:ObjectProperty , + rdfs:subClassOf ; + :label "mod" ; + :toReifyAsConcept "mod" ; + :toReifyWithBaseEdge "ARG0" . + + +:role_op1 :label "op1" . + + +:role_op2 :label "op2" . + + +:role_polarity :label "polarity" . + + +cprm:Config_Parameters cprm:newPropertyRef "new-relation#" ; + cprm:objectRef "object_" ; + cprm:newClassRef "new-class#" . + + +cprm:baseURI rdfs:label "Base URI" . + + +cprm:netURI rdfs:label "Net URI" . -ns3:AMR a owl:Class ; - rdfs:subClassOf :AMR_Linked_Data . - -:AMR_Root a owl:Class ; - rdfs:subClassOf :AMR_Structure . - -:AMR_Value a owl:Class ; - rdfs:subClassOf :AMR_Element . - -:concept_adapt-01 rdfs:subClassOf :AMR_Predicat_Concept ; - :fromAmrLk ns11:adapt-01 ; - :label "adapt-01" . - -:concept_and rdfs:subClassOf :AMR_Relation_Concept ; - :fromAmrLk ns3:and ; - :hasPhenomenaLink :phenomena_conjunction_and ; - :label "and" . - -:concept_contrast-01 rdfs:subClassOf :AMR_Relation_Concept ; - :fromAmrLk ns11:contrast-01 ; - :hasPhenomenaLink :phenomena_conjunction ; - :label "contrast-01" . - -:concept_grant-01 rdfs:subClassOf :AMR_Predicat_Concept ; - :fromAmrLk ns11:grant-01 ; - :label "grant-01" . - -:concept_material rdfs:subClassOf :AMR_Term_Concept ; - :fromAmrLk ns2:material ; - :label "material" . - -:concept_produce-01 rdfs:subClassOf :AMR_Predicat_Concept ; - :fromAmrLk ns11:produce-01 ; - :label "produce-01" . - -:concept_public-02 rdfs:subClassOf :AMR_Predicat_Concept ; - :fromAmrLk ns11:public-02 ; - :label "public-02" . - -:concept_reproduce-01 rdfs:subClassOf :AMR_Predicat_Concept ; - :fromAmrLk ns11:reproduce-01 ; - :label "reproduce-01" . - -:concept_share-01 rdfs:subClassOf :AMR_Predicat_Concept ; - :fromAmrLk ns11:share-01 ; - :label "share-01" . -:concept_this rdfs:subClassOf :AMR_Term_Concept ; - :fromAmrLk ns2:this ; - :label "this" . +cprm:targetOntologyURI rdfs:label "URI of classes in target ontology" . -:concept_you rdfs:subClassOf :AMR_Term_Concept ; - :fromAmrLk ns2:you ; - :label "you" . -:role_mod a owl:Class, - net:Relation ; - rdfs:subClassOf :AMR_NonCore_Role ; - :getDirectPropertyName "hasFeature"^^xsd:string ; - :getPropertyType rdfs:subClassOf, - owl:ObjectProperty ; - :label "mod" ; - :toReifyAsConcept "mod" ; - :toReifyWithBaseEdge "ARG0" ; - :toReifyWithHeadEdge "ARG1" . +################################################################# +# General axioms +################################################################# -:role_op1 a owl:Class, - net:Relation ; - rdfs:subClassOf :AMR_Op_Role ; - :label "op1" . +[ rdf:type owl:AllDisjointClasses ; + owl:members ( sys:Degree + sys:Entity + sys:Feature + ) +] . -:role_op2 a owl:Class, - net:Relation ; - rdfs:subClassOf :AMR_Op_Role ; - :label "op2" . - -:role_polarity a owl:Class, - net:Relation ; - rdfs:subClassOf :AMR_Specific_Role ; - :label "polarity" . - -:variable_a a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> ; - :label "a" . - -:variable_a2 a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#a2> ; - :label "a2" . - -:variable_c a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> ; - :label "c" . - -:variable_g a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> ; - :label "g" . - -:variable_l a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> ; - :label "l" . - -:variable_l2 a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> ; - :label "l2" . - -:variable_m a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; - :label "m" . - -:variable_p a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#p> ; - :label "p" . - -:variable_p2 a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> ; - :label "p2" . - -:variable_r a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> ; - :label "r" . - -:variable_s a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> ; - :label "s" . - -:variable_t a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#t> ; - :label "t" . - -:variable_y a :AMR_Variable ; - :fromAmrLk <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; - :label "y" . - -sys:Degree a owl:Class ; - rdfs:subClassOf sys:Out_Structure . - -sys:Feature a owl:Class ; - rdfs:subClassOf sys:Out_Structure . - -sys:Out_AnnotationProperty a owl:AnnotationProperty . - -net:Axiom_Net a owl:Class ; - rdfs:subClassOf net:Net . - -net:Composite_Property_Net a owl:Class ; - rdfs:subClassOf net:Property_Net . - -net:Deprecated_Net a owl:Class ; - rdfs:subClassOf net:Net . - -net:Feature a owl:Class ; - rdfs:subClassOf net:Net_Structure . - -net:Logical_Set_Net a owl:Class ; - rdfs:subClassOf net:Net . - -net:Value_Net a owl:Class ; - rdfs:subClassOf net:Net . - -net:class_list a owl:Class ; - rdfs:label "classList" ; - rdfs:subClassOf net:Type . - -net:has_value a owl:AnnotationProperty ; - rdfs:subPropertyOf net:netProperty . - -net:logicalSet_and_a a net:Logical_Set_Net ; - :role_op1 net:atomProperty_produce_p2 ; - :role_op2 net:atomProperty_reproduce_r ; - net:bindPropertyNet net:atomProperty_license_l2 ; - net:containsNet net:atomProperty_produce_p2, - net:atomProperty_reproduce_r ; - net:containsNet1 net:atomProperty_produce_p2 ; - net:containsNet2 net:atomProperty_reproduce_r ; - net:coverBaseNode :leaf_and_a ; - net:coverNode :leaf_and_a ; - net:hasLogicalConstraint "AND" ; - net:hasStructure "cc-sentence-examples-03" ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:objectType a owl:AnnotationProperty ; - rdfs:label "object type" ; - rdfs:subPropertyOf net:objectProperty . - -net:phenomena_conjunction-AND_a a net:Phenomena_Net ; - :role_op1 net:atomProperty_produce_p2 ; - :role_op2 net:atomProperty_reproduce_r ; - net:coverBaseNode :leaf_and_a ; - net:coverNode :leaf_and_a ; - net:hasNaming "conjunction-AND" ; - net:hasPhenomenaRef "and" ; - net:hasPhenomenaType :phenomena_conjunction_and ; - net:hasStructure "cc-sentence-examples-03" ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:phenomena_conjunction_c a net:Phenomena_Net ; - :role_ARG1 net:atomProperty_license_l2 ; - :role_ARG2 net:atomProperty_share_s ; - net:coverBaseNode :leaf_contrast-01_c ; - net:coverNode :leaf_contrast-01_c ; - net:hasNaming "conjunction" ; - net:hasPhenomenaRef "contrast-01" ; - net:hasPhenomenaType :phenomena_conjunction ; - net:hasStructure "cc-sentence-examples-03" ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:restriction_produceing_material a net:Restriction_Net ; - net:coverBaseNode :leaf_you_y ; - net:coverNode :leaf_material_m, - :leaf_produce-01_p2, - :leaf_you_y ; - net:coverTargetNode :leaf_material_m, - :leaf_produce-01_p2 ; - net:hasNaming "you-produceing-material" ; - net:hasRestrictionNetValue net:atomClass_material_m ; - net:hasRestrictionOnProperty net:atomProperty_produce_p2 . - -net:restriction_reproduceing_material a net:Restriction_Net ; - net:coverBaseNode :leaf_you_y ; - net:coverNode :leaf_material_m, - :leaf_reproduce-01_r, - :leaf_you_y ; - net:coverTargetNode :leaf_material_m, - :leaf_reproduce-01_r ; - net:hasNaming "you-reproduceing-material" ; - net:hasRestrictionNetValue net:atomClass_material_m ; - net:hasRestrictionOnProperty net:atomProperty_reproduce_r . - -net:restriction_shareing_material a net:Restriction_Net ; - net:coverBaseNode :leaf_you_y ; - net:coverNode :leaf_material_m, - :leaf_share-01_s, - :leaf_you_y ; - net:coverTargetNode :leaf_material_m, - :leaf_share-01_s ; - net:hasNaming "you-shareing-material" ; - net:hasRestrictionNetValue net:atomClass_material_m ; - net:hasRestrictionOnProperty net:atomProperty_share_s . - -net:value_negative_blankNode a net:Value_Net ; - net:hasNaming "negative" ; - net:hasStructure "cc-sentence-examples-03" ; - net:hasValueLabel "negative" ; - net:trackProgress net:initialized, - net:relation_propagated . - -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> a ns3:and ; - ns2:op1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> ; - ns2:op2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> ; - rdfs:subClassOf :AMR_Linked_Data . - -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> a ns11:contrast-01 ; - ns11:contrast-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> ; - ns11:contrast-01.ARG2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> ; - rdfs:subClassOf :AMR_Linked_Data . - -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#g> a ns11:grant-01 ; - ns11:grant-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> ; - ns11:grant-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#c> ; - ns11:grant-01.ARG2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; - rdfs:subClassOf :AMR_Linked_Data . - -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l2> a ns11:license-01 ; - ns11:license-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#a> ; - ns11:license-01.ARG2 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; - rdfs:subClassOf :AMR_Linked_Data . - -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#p2> a ns11:produce-01 ; - ns11:produce-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; - ns11:produce-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; - rdfs:subClassOf :AMR_Linked_Data . - -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#r> a ns11:reproduce-01 ; - ns11:reproduce-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; - ns11:reproduce-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; - rdfs:subClassOf :AMR_Linked_Data . - -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#s> a ns11:share-01 ; - ns11:share-01.ARG0 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> ; - ns11:share-01.ARG1 <http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> ; - ns2:polarity "-" ; - rdfs:subClassOf :AMR_Linked_Data . - -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#t> a ns2:this ; - rdfs:subClassOf :AMR_Linked_Data . - -ns11:adapt-01 a ns3:Frame ; - rdfs:subClassOf :AMR_Linked_Data . - -ns11:contrast-01 a ns3:Frame ; - rdfs:subClassOf :AMR_Linked_Data . - -ns11:grant-01 a ns3:Frame ; - rdfs:subClassOf :AMR_Linked_Data . - -ns11:produce-01 a ns3:Frame ; - rdfs:subClassOf :AMR_Linked_Data . - -ns11:public-02 a ns3:Frame ; - rdfs:subClassOf :AMR_Linked_Data . - -ns11:reproduce-01 a ns3:Frame ; - rdfs:subClassOf :AMR_Linked_Data . - -ns11:share-01 a ns3:Frame ; - rdfs:subClassOf :AMR_Linked_Data . - -ns2:material a ns3:Concept ; - rdfs:subClassOf :AMR_Linked_Data . - -ns2:this a ns3:Concept ; - rdfs:subClassOf :AMR_Linked_Data . - -ns2:you a ns3:Concept ; - rdfs:subClassOf :AMR_Linked_Data . - -ns3:and a ns3:Concept ; - rdfs:subClassOf :AMR_Linked_Data . - -:AMR_Phenomena a owl:Class ; - rdfs:subClassOf :AMR_Structure . - -:AMR_Relation_Concept a owl:Class ; - rdfs:subClassOf :AMR_Concept . - -:concept_license-01 rdfs:subClassOf :AMR_Predicat_Concept ; - :fromAmrLk ns11:license-01 ; - :label "license-01" . - -:hasLink a owl:AnnotationProperty ; - rdfs:subPropertyOf :AMR_AnnotationProperty . - -:leaf_adapt-01_a2 a :AMR_Leaf ; - :edge_a2_ARG1_m :leaf_material_m ; - :hasConcept :concept_adapt-01 ; - :hasVariable :variable_a2 . - -:phenomena_conjunction_and a owl:Class ; - rdfs:subClassOf :phenomena_conjunction ; - :hasConceptLink "and" ; - :label "conjunction-AND" . - -:value_negative a :AMR_Value ; - rdfs:label "negative" . - -sys:Out_ObjectProperty a owl:ObjectProperty . - -net:Class_Net a owl:Class ; - rdfs:subClassOf net:Net . - -net:Phenomena_Net a owl:Class ; - rdfs:subClassOf net:Net . - -net:Property_Net a owl:Class ; - rdfs:subClassOf net:Net . - -net:atomProperty_license_l2 a net:Atom_Property_Net ; - :role_ARG1 net:atomProperty_produce_p2, - net:atomProperty_reproduce_r, - net:logicalSet_and_a, - net:phenomena_conjunction-AND_a ; - :role_ARG2 net:atomClass_you_y, - net:compositeClass_you-produceing-material_y, - net:compositeClass_you-reproduceing-material_y, - net:compositeClass_you-shareing-material_y, - net:individual_you-produceing-material_fromClass, - net:individual_you-reproduceing-material_fromClass, - net:individual_you-shareing-material_fromClass, - net:individual_you_fromClass ; - net:coverBaseNode :leaf_license-01_l2 ; - net:coverNode :leaf_license-01_l2 ; - net:hasNaming "license" ; - net:hasPropertyName "license" ; - net:hasPropertyName01 "licenseing" ; - net:hasPropertyName10 "license-by" ; - net:hasPropertyName12 "license-of" ; - net:hasPropertyType owl:ObjectProperty ; - net:hasStructure "cc-sentence-examples-03" ; - net:isCoreRoleLinked true ; - net:targetArgumentNode :leaf_and_a, - :leaf_you_y ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:atomProperty_share_s a net:Atom_Property_Net ; - :role_ARG0 net:atomClass_you_y, - net:compositeClass_you-produceing-material_y, - net:compositeClass_you-reproduceing-material_y, - net:compositeClass_you-shareing-material_y, - net:individual_you-produceing-material_fromClass, - net:individual_you-reproduceing-material_fromClass, - net:individual_you-shareing-material_fromClass, - net:individual_you_fromClass ; - :role_ARG1 net:atomClass_material_m ; - :role_polarity net:value_negative_blankNode ; - net:coverBaseNode :leaf_share-01_s ; - net:coverNode :leaf_share-01_s ; - net:hasNaming "share" ; - net:hasPropertyName "share" ; - net:hasPropertyName01 "shareing" ; - net:hasPropertyName10 "share-by" ; - net:hasPropertyName12 "share-of" ; - net:hasPropertyType owl:ObjectProperty ; - net:hasStructure "cc-sentence-examples-03" ; - net:isCoreRoleLinked true ; - net:targetArgumentNode :leaf_material_m, - :leaf_you_y, - :value_negative ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:objectProperty a owl:AnnotationProperty ; - rdfs:label "object attribute" . - -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#l> a ns11:license-01 ; - ns2:mod <http://amr.isi.edu/amr_data/cc-sentence-examples-03#t> ; - rdfs:subClassOf :AMR_Linked_Data . - -ns11:license-01 a ns3:Frame ; - rdfs:subClassOf :AMR_Linked_Data . - -:AMR_Concept a owl:Class ; - rdfs:subClassOf :AMR_Element . - -:AMR_Specific_Role a owl:Class ; - rdfs:subClassOf :AMR_Role . - -:AMR_Term_Concept a owl:Class ; - rdfs:subClassOf :AMR_Concept . - -:fromAmrLk a owl:AnnotationProperty ; - rdfs:subPropertyOf :AMR_AnnotationProperty . - -:getProperty a owl:AnnotationProperty ; - rdfs:subPropertyOf :AMR_AnnotationProperty . - -:hasReificationDefinition a owl:AnnotationProperty ; - rdfs:range rdfs:Literal ; - rdfs:subPropertyOf :AMR_AnnotationProperty . - -:leaf_grant-01_g a :AMR_Leaf ; - :edge_g_ARG0_l :leaf_license-01_l ; - :edge_g_ARG1_c :leaf_contrast-01_c ; - :edge_g_ARG2_y :leaf_you_y ; - :hasConcept :concept_grant-01 ; - :hasVariable :variable_g . - -:leaf_license-01_l2 a :AMR_Leaf ; - :edge_l2_ARG1_a :leaf_and_a ; - :edge_l2_ARG2_y :leaf_you_y ; - :hasConcept :concept_license-01 ; - :hasVariable :variable_l2 . - -:role_ARG2 a owl:Class, - net:Relation ; - rdfs:subClassOf :AMR_Core_Role ; - :label "ARG2" . - -:toReify a owl:AnnotationProperty ; - rdfs:subPropertyOf :AMR_AnnotationProperty . - -net:Atom_Class_Net a owl:Class ; - rdfs:subClassOf net:Class_Net . - -net:Composite_Class_Net a owl:Class ; - rdfs:subClassOf net:Class_Net . - -net:Restriction_Net a owl:Class ; - rdfs:subClassOf net:Net . - -net:has_relation_value a owl:AnnotationProperty ; - rdfs:label "has relation value" ; - rdfs:subPropertyOf net:has_object . - -net:list a owl:Class ; - rdfs:label "list" ; - rdfs:subClassOf net:Type . - -:AMR_Element a owl:Class ; - rdfs:subClassOf :AMR_Structure . - -:leaf_contrast-01_c a :AMR_Leaf ; - :edge_c_ARG1_l2 :leaf_license-01_l2 ; - :edge_c_ARG2_s :leaf_share-01_s ; - :hasConcept :concept_contrast-01 ; - :hasVariable :variable_c . - -:leaf_public-02_p a :AMR_Leaf ; - :edge_p_ARG1_l :leaf_license-01_l ; - :hasConcept :concept_public-02 ; - :hasVariable :variable_p . - -:phenomena_conjunction a owl:Class ; - rdfs:subClassOf :AMR_Phenomena ; - :hasConceptLink "contrast-01", - "either", - "neither" ; - :label "conjunction" . - -:role_ARG0 a owl:Class, - net:Relation ; - rdfs:subClassOf :AMR_Core_Role ; - :label "ARG0" . - -net:atomClass_this_t a net:Atom_Class_Net, - net:Deprecated_Net ; - net:coverBaseNode :leaf_this_t ; - net:coverNode :leaf_this_t ; - net:coverNodeCount 1 ; - net:hasClassName "this" ; - net:hasNaming "this" ; - net:hasStructure "cc-sentence-examples-03" ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:atomProperty_license_l a net:Atom_Property_Net ; - :role_mod net:atomClass_this_t ; - net:coverBaseNode :leaf_license-01_l ; - net:coverNode :leaf_license-01_l ; - net:hasNaming "license" ; - net:hasPropertyName "license" ; - net:hasPropertyName01 "licenseing" ; - net:hasPropertyName10 "license-by" ; - net:hasPropertyName12 "license-of" ; - net:hasPropertyType owl:ObjectProperty ; - net:hasStructure "cc-sentence-examples-03" ; - net:isCoreRoleLinked true ; - net:targetArgumentNode :leaf_this_t ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:typeProperty a owl:AnnotationProperty ; - rdfs:label "type property" . - -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#m> a ns2:material ; - rdfs:subClassOf :AMR_Linked_Data . - -:AMR_NonCore_Role a owl:Class ; - rdfs:subClassOf :AMR_Role . - -:AMR_Role a owl:Class ; - rdfs:subClassOf :AMR_Element . - -sys:Out_Structure a owl:Class ; - rdfs:label "Output Ontology Structure" . - -net:Individual_Net a owl:Class ; - rdfs:subClassOf net:Net . - -net:individual_you-produceing-material_fromClass a net:Individual_Net ; - net:coverBaseNode :leaf_you_y ; - net:coverNode :leaf_you_y ; - net:fromClassNet net:compositeClass_you-produceing-material_y ; - net:hasBaseClassName "Feature" ; - net:hasIndividualLabel "you-produceing-material" ; - net:hasMotherClassNet net:atomClass_you_y, - net:compositeClass_you-produceing-material_y, - net:compositeClass_you-reproduceing-material_y, - net:compositeClass_you-shareing-material_y ; - net:hasStructure "cc-sentence-examples-03" . - -net:individual_you-reproduceing-material_fromClass a net:Individual_Net ; - net:coverBaseNode :leaf_you_y ; - net:coverNode :leaf_you_y ; - net:fromClassNet net:compositeClass_you-reproduceing-material_y ; - net:hasBaseClassName "Feature" ; - net:hasIndividualLabel "you-reproduceing-material" ; - net:hasMotherClassNet net:atomClass_you_y, - net:compositeClass_you-produceing-material_y, - net:compositeClass_you-reproduceing-material_y, - net:compositeClass_you-shareing-material_y ; - net:hasStructure "cc-sentence-examples-03" . - -net:individual_you-shareing-material_fromClass a net:Individual_Net ; - net:coverBaseNode :leaf_you_y ; - net:coverNode :leaf_you_y ; - net:fromClassNet net:compositeClass_you-shareing-material_y ; - net:hasBaseClassName "Feature" ; - net:hasIndividualLabel "you-shareing-material" ; - net:hasMotherClassNet net:atomClass_you_y, - net:compositeClass_you-produceing-material_y, - net:compositeClass_you-reproduceing-material_y, - net:compositeClass_you-shareing-material_y ; - net:hasStructure "cc-sentence-examples-03" . - -net:individual_you_fromClass a net:Individual_Net ; - net:coverBaseNode :leaf_you_y ; - net:coverNode :leaf_you_y ; - net:fromClassNet net:atomClass_you_y ; - net:hasBaseClassName "Feature" ; - net:hasIndividualLabel "you" ; - net:hasMotherClassNet net:atomClass_you_y, - net:compositeClass_you-produceing-material_y, - net:compositeClass_you-reproduceing-material_y, - net:compositeClass_you-shareing-material_y ; - net:hasStructure "cc-sentence-examples-03" . - -net:netProperty a owl:AnnotationProperty ; - rdfs:label "netProperty" . - -<http://amr.isi.edu/amr_data/cc-sentence-examples-03#y> a ns2:you ; - rdfs:subClassOf :AMR_Linked_Data . - -:AMR_ObjectProperty a owl:ObjectProperty ; - rdfs:subPropertyOf owl:topObjectProperty . - -:AMR_Structure a owl:Class . - -:leaf_and_a a :AMR_Leaf ; - :edge_a_op1_p2 :leaf_produce-01_p2 ; - :edge_a_op2_r :leaf_reproduce-01_r ; - :hasConcept :concept_and ; - :hasVariable :variable_a . - -:leaf_produce-01_p2 a :AMR_Leaf ; - :edge_p2_ARG0_y :leaf_you_y ; - :edge_p2_ARG1_m :leaf_material_m ; - :hasConcept :concept_produce-01 ; - :hasVariable :variable_p2 . - -:leaf_reproduce-01_r a :AMR_Leaf ; - :edge_r_ARG0_y :leaf_you_y ; - :edge_r_ARG1_m :leaf_material_m ; - :hasConcept :concept_reproduce-01 ; - :hasVariable :variable_r . - -:leaf_share-01_s a :AMR_Leaf ; - :edge_s_ARG0_y :leaf_you_y ; - :edge_s_ARG1_m :leaf_material_m ; - :edge_s_polarity_negative :value_negative ; - :hasConcept :concept_share-01 ; - :hasVariable :variable_s . - -:leaf_this_t a :AMR_Leaf ; - :hasConcept :concept_this ; - :hasVariable :variable_t . - -sys:Entity a owl:Class ; - rdfs:subClassOf sys:Out_Structure . - -cprm:configParamProperty a rdf:Property ; - rdfs:label "Config Parameter Property" . - -net:Net_Structure a owl:Class ; - rdfs:label "Semantic Net Structure" ; - rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." . - -net:atomProperty_produce_p2 a net:Atom_Property_Net ; - :role_ARG0 net:atomClass_you_y, - net:compositeClass_you-produceing-material_y, - net:compositeClass_you-reproduceing-material_y, - net:compositeClass_you-shareing-material_y, - net:individual_you-produceing-material_fromClass, - net:individual_you-reproduceing-material_fromClass, - net:individual_you-shareing-material_fromClass, - net:individual_you_fromClass ; - :role_ARG1 net:atomClass_material_m ; - net:coverBaseNode :leaf_produce-01_p2 ; - net:coverNode :leaf_produce-01_p2 ; - net:hasNaming "produce" ; - net:hasPropertyName "produce" ; - net:hasPropertyName01 "produceing" ; - net:hasPropertyName10 "produce-by" ; - net:hasPropertyName12 "produce-of" ; - net:hasPropertyType owl:ObjectProperty ; - net:hasStructure "cc-sentence-examples-03" ; - net:isCoreRoleLinked true ; - net:targetArgumentNode :leaf_material_m, - :leaf_you_y ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:atomProperty_reproduce_r a net:Atom_Property_Net ; - :role_ARG0 net:atomClass_you_y, - net:compositeClass_you-produceing-material_y, - net:compositeClass_you-reproduceing-material_y, - net:compositeClass_you-shareing-material_y, - net:individual_you-produceing-material_fromClass, - net:individual_you-reproduceing-material_fromClass, - net:individual_you-shareing-material_fromClass, - net:individual_you_fromClass ; - :role_ARG1 net:atomClass_material_m ; - net:coverBaseNode :leaf_reproduce-01_r ; - net:coverNode :leaf_reproduce-01_r ; - net:hasNaming "reproduce" ; - net:hasPropertyName "reproduce" ; - net:hasPropertyName01 "reproduceing" ; - net:hasPropertyName10 "reproduce-by" ; - net:hasPropertyName12 "reproduce-of" ; - net:hasPropertyType owl:ObjectProperty ; - net:hasStructure "cc-sentence-examples-03" ; - net:isCoreRoleLinked true ; - net:targetArgumentNode :leaf_material_m, - :leaf_you_y ; - net:trackProgress net:initialized, - net:relation_propagated . - -rdf:Property a owl:Class . - -:AMR_Predicat_Concept a owl:Class ; - rdfs:subClassOf :AMR_Concept . - -:AMR_Relation a owl:Class ; - rdfs:subClassOf :AMR_Structure . - -net:Relation a owl:Class ; - rdfs:subClassOf net:Net_Structure . - -net:atomClass_material_m a net:Atom_Class_Net ; - net:coverBaseNode :leaf_material_m ; - net:coverNode :leaf_material_m ; - net:coverNodeCount 1 ; - net:hasClassName "material" ; - net:hasClassType sys:Entity ; - net:hasNaming "material" ; - net:hasStructure "cc-sentence-examples-03" ; - net:trackProgress net:initialized, - net:relation_propagated . - -ns3:Frame a ns3:Concept, - owl:Class, - owl:NamedIndividual ; - rdfs:label "AMR-PropBank-Frame" ; - rdfs:subClassOf :AMR_Linked_Data . - -:leaf_license-01_l a :AMR_Leaf ; - :edge_l_mod_t :leaf_this_t ; - :hasConcept :concept_license-01 ; - :hasVariable :variable_l . - -:role_ARG1 a owl:Class, - net:Relation ; - rdfs:subClassOf :AMR_Core_Role ; - :label "ARG1" . - -net:Atom_Property_Net a owl:Class ; - rdfs:subClassOf net:Property_Net . - -net:Type a owl:Class ; - rdfs:label "Semantic Net Type" ; - rdfs:subClassOf net:Net_Structure . - -net:has_object a owl:AnnotationProperty ; - rdfs:label "relation" ; - rdfs:subPropertyOf net:netProperty . - -:AMR_Op_Role a owl:Class ; - rdfs:subClassOf :AMR_Role . - -net:Net a owl:Class ; - rdfs:subClassOf net:Net_Structure . - -:AMR_AnnotationProperty a owl:AnnotationProperty . - -:AMR_Core_Role a owl:Class ; - rdfs:subClassOf :AMR_Role . - -net:compositeClass_you-produceing-material_y a net:Composite_Class_Net ; - net:coverBaseNode :leaf_you_y ; - net:coverNode :leaf_material_m, - :leaf_produce-01_p2, - :leaf_you_y ; - net:coverNodeCount 3 ; - net:hasClassName "you-produceing-material" ; - net:hasClassType sys:Entity ; - net:hasMotherClassNet net:atomClass_you_y ; - net:hasRestriction01 net:restriction_produceing_material ; - net:hasStructure "cc-sentence-examples-03" ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:compositeClass_you-reproduceing-material_y a net:Composite_Class_Net ; - net:coverBaseNode :leaf_you_y ; - net:coverNode :leaf_material_m, - :leaf_reproduce-01_r, - :leaf_you_y ; - net:coverNodeCount 3 ; - net:hasClassName "you-reproduceing-material" ; - net:hasClassType sys:Entity ; - net:hasMotherClassNet net:atomClass_you_y ; - net:hasRestriction01 net:restriction_reproduceing_material ; - net:hasStructure "cc-sentence-examples-03" ; - net:trackProgress net:initialized, - net:relation_propagated . - -net:compositeClass_you-shareing-material_y a net:Composite_Class_Net ; - net:coverBaseNode :leaf_you_y ; - net:coverNode :leaf_material_m, - :leaf_share-01_s, - :leaf_you_y ; - net:coverNodeCount 3 ; - net:hasClassName "you-shareing-material" ; - net:hasClassType sys:Entity ; - net:hasMotherClassNet net:atomClass_you_y ; - net:hasRestriction01 net:restriction_shareing_material ; - net:hasStructure "cc-sentence-examples-03" ; - net:trackProgress net:initialized, - net:relation_propagated . - -:AMR_Variable a owl:Class ; - rdfs:subClassOf :AMR_Element . - -net:atomClass_you_y a net:Atom_Class_Net ; - net:coverBaseNode :leaf_you_y ; - net:coverNode :leaf_you_y ; - net:coverNodeCount 1 ; - net:hasClassName "you" ; - net:hasClassType sys:Entity ; - net:hasNaming "you" ; - net:hasStructure "cc-sentence-examples-03" ; - net:trackProgress net:initialized, - net:relation_propagated . - -ns11:FrameRole a ns3:Role, - owl:Class, - owl:NamedIndividual ; - rdfs:label "AMR-PropBank-Role" ; - rdfs:subClassOf :AMR_Linked_Data . - -:AMR_Leaf a owl:Class ; - rdfs:subClassOf :AMR_Structure . - -net:objectValue a owl:AnnotationProperty ; - rdfs:label "valuations"@fr ; - rdfs:subPropertyOf net:objectProperty . - -:leaf_material_m a :AMR_Leaf ; - :hasConcept :concept_material ; - :hasVariable :variable_m . - -:AMR_Edge a owl:Class ; - rdfs:subClassOf :AMR_Structure . - -:AMR_Linked_Data a owl:Class . - -:leaf_you_y a :AMR_Leaf ; - :hasConcept :concept_you ; - :hasVariable :variable_y . - -[] a owl:AllDisjointClasses ; - owl:members ( sys:Degree sys:Entity sys:Feature ) . +### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi diff --git a/tests/dev_tests/test_rule_phenomena_and_analyzer.py b/tests/dev_tests/test_rule_phenomena_and_analyzer.py index c13a2a5cd42ac4d0ace1ff99967a2e1bf7262a26..0e8e64f91aeb6c4752aabd0b142b12cef2de97da 100644 --- a/tests/dev_tests/test_rule_phenomena_and_analyzer.py +++ b/tests/dev_tests/test_rule_phenomena_and_analyzer.py @@ -92,7 +92,7 @@ def test_search_pattern_1(graph): for selection in pattern_set: result_str = f'>>> ' result_str += f'{selection.property_net.n3(graph.namespace_manager)}' - result_str += f' {selection.class_net.n3(graph.namespace_manager)}' + result_str += f' {selection.relation_role.n3(graph.namespace_manager)}' result_str += f' {selection.phenomena_net.n3(graph.namespace_manager)}' print(result_str) return pattern_set @@ -111,12 +111,22 @@ def test_search_pattern_2(graph): return pattern_set -def test_search_operators(graph, phenomena_net_uri): +def test_search_operators_1(graph, phenomena_net_uri): print('\n *** DEVTEST *** Search for operators') - query_code = rule_2.__property_op_pattern_query_code(graph, phenomena_net_uri, 1) - print(f' -- query code for operator 1: \n{query_code}') - result_set = rule_2.__search_property_phenomena_operator(graph, phenomena_net_uri) - print(f'\n ----- number of selection found: {len(result_set)}') + query_code, result_set = rule_1.__search_phenomena_operator_class(graph, phenomena_net_uri) + print(f' -- query code: \n{query_code}') + print(f'\n ----- result number: {len(result_set)}') + for selection in result_set: + result_str = f'>>> ' + result_str += f'{selection.class_net.n3(graph.namespace_manager)}' + print(result_str) + + +def test_search_operators_2(graph, phenomena_net_uri): + print('\n *** DEVTEST *** Search for operators') + query_code, result_set = rule_1.__search_phenomena_operator_property(graph, phenomena_net_uri) + print(f' -- query code: \n{query_code}') + print(f'\n ----- result number: {len(result_set)}') for selection in result_set: result_str = f'>>> ' result_str += f'{selection.property_net.n3(graph.namespace_manager)}' @@ -158,7 +168,7 @@ if __name__ == '__main__': uriref = URIRef('net:compositeClass_orbit_hasManner_conjunction-OR') type_uriref = URIRef('net:Composite_Class_Net') triple = (uriref, RDF.type, type_uriref) - phenomena_net_uri = 'net:phenomena_conjunction-AND_o3' + phenomena_net_uri = 'net:phenomena_conjunction-AND_a' print('\n \n') @@ -168,6 +178,8 @@ if __name__ == '__main__': print('\n -- Step 1: Search Pattern') pattern_set = test_search_pattern_1(graph_1) + test_search_operators_1(graph_1, phenomena_net_uri) + test_search_operators_2(graph_1, phenomena_net_uri) print('\n \n') print('\n *** Unit Test ***') @@ -175,18 +187,18 @@ if __name__ == '__main__': print('\n \n') - print('\n ///////////////////// Extraction Rule 2') + # print('\n ///////////////////// Extraction Rule 2') - print('\n *** Step Test ***') + # print('\n *** Step Test ***') - print('\n -- Step 1: Search Pattern') - pattern_set = test_search_pattern_2(graph_2) - test_search_operators(graph_2, phenomena_net_uri) - print('\n \n') + # print('\n -- Step 1: Search Pattern') + # pattern_set = test_search_pattern_2(graph_2) + # test_search_operators(graph_2, phenomena_net_uri) + # print('\n \n') - print('\n *** Unit Test ***') - test_rule_application(TEST_FILE_NAME_2, graph_2, rule.analyze_phenomena_and_2) - print('\n \n') + # print('\n *** Unit Test ***') + # test_rule_application(TEST_FILE_NAME_2, graph_2, rule.analyze_phenomena_and_2) + # print('\n \n') print('\n *** - ***') \ No newline at end of file