-
Notifications
You must be signed in to change notification settings - Fork 0
/
meaw.ttl
3122 lines (2597 loc) · 293 KB
/
meaw.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#> .
<https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#> rdf:type owl:Ontology ;
rdfs:comment "Multimodal Emotion Annotation Ontology (MEAW) implemented for the MA thesis research \"Archiving Emotions: Conceptualizing Multimodal Emotion Recognition in Media Culture\"." .
#################################################################
# Annotation properties
#################################################################
### http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled
<http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://www.loa-cnr.it/ontologies/DUL.owl#directlyPrecedes
<http://www.loa-cnr.it/ontologies/DUL.owl#directlyPrecedes> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#precedes> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#follows>
] ;
rdfs:comment "The intransitive precedes relation. For example, Monday directly precedes Tuesday. Directness of precedence depends on the designer conceptualization." ;
rdfs:label "directly precedes"@en ,
"precede direttamente"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#follows
<http://www.loa-cnr.it/ontologies/DUL.owl#follows> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#precedes> ;
rdf:type owl:TransitiveProperty ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ,
:Shot ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ,
:Shot ;
rdfs:comment """A relation between entities, expressing a 'sequence' schema.
E.g. 'year 2000 follows 1999', 'preparing coffee' follows 'deciding what coffee to use', 'II World War follows I World War', etc.
It can be used between tasks, processes or time intervals, and subproperties would fit best in order to distinguish the different uses.""" ;
rdfs:label "follows"@en ,
"segue"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#hasParticipant
<http://www.loa-cnr.it/ontologies/DUL.owl#hasParticipant> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isParticipantIn> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Object> ;
rdfs:comment "A relation between an object and a process, e.g. 'John took part in the discussion', 'a large mass of snow fell during the avalanche', or 'a cook, some sugar, flour, etc. are all present in the cooking of a cake'." ;
rdfs:label "ha come partecipante"@it ,
"has participant"@en .
### http://www.loa-cnr.it/ontologies/DUL.owl#hasPostcondition
<http://www.loa-cnr.it/ontologies/DUL.owl#hasPostcondition> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#directlyPrecedes> ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ;
rdfs:comment """Direct succession applied to situations.
E.g., 'A postcondition of our Plan is to have things settled'.""" ;
rdfs:label "ha postcondizione"@it ,
"has postcondition"@en .
### http://www.loa-cnr.it/ontologies/DUL.owl#hasQuality
<http://www.loa-cnr.it/ontologies/DUL.owl#hasQuality> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isQualityOf> ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Quality> ;
rdfs:comment "A relation between entities and qualities, e.g. 'Dmitri's skin is yellowish'." ;
rdfs:label "ha qualità"@it ,
"has quality"@en .
### http://www.loa-cnr.it/ontologies/DUL.owl#hasSetting
<http://www.loa-cnr.it/ontologies/DUL.owl#hasSetting> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isSettingFor> ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ;
rdfs:comment "A relation between entities and situations, e.g. 'this morning I've prepared my coffee with a new fantastic Arabica', i.e.: (an amount of) a new fantastic Arabica hasSetting the preparation of my coffee this morning." ;
rdfs:label "has setting"@en ,
"è nel contesto di"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#isActionIncludedIn
<http://www.loa-cnr.it/ontologies/DUL.owl#isActionIncludedIn> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#isEventIncludedIn> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ;
rdfs:label "is action included in"@en ,
"è un'azione nel contesto di"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#isAgentIncludedIn
<http://www.loa-cnr.it/ontologies/DUL.owl#isAgentIncludedIn> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#isObjectIncludedIn> ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Agent> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ;
rdfs:label "is agent included in"@en ,
"è un agente nel contesto di"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#isEventIncludedIn
<http://www.loa-cnr.it/ontologies/DUL.owl#isEventIncludedIn> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#hasSetting> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isSettingFor>
] ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ;
rdfs:label "is event included in"@en ,
"è un evento nel contesto di"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#isObjectIncludedIn
<http://www.loa-cnr.it/ontologies/DUL.owl#isObjectIncludedIn> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#hasSetting> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isSettingFor>
] ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Object> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ;
rdfs:label "is object included in"@en ,
"è un oggetto nel contesto di"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#isParticipantIn
<http://www.loa-cnr.it/ontologies/DUL.owl#isParticipantIn> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Object> ;
rdfs:comment "A relation between an object and a process, e.g. 'John took part in the discussion', 'a large mass of snow fell during the avalanche', or 'a cook, some sugar, flour, etc. are all present in the cooking of a cake'." ;
rdfs:label "is participant in"@en ,
"è un partecipante a"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#isPreconditionOf
<http://www.loa-cnr.it/ontologies/DUL.owl#isPreconditionOf> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#directlyPrecedes> ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ;
rdfs:comment """Direct precedence applied to situations.
E.g., 'claiming to find nuclear weapons in a foreign country is a precondition to declare war against it'.""" ;
rdfs:label "is precondition of"@en ,
"è precondizione di"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#isQualityOf
<http://www.loa-cnr.it/ontologies/DUL.owl#isQualityOf> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Quality> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ;
rdfs:comment "A relation between entities and qualities, e.g. 'Dmitri's skin is yellowish'." ;
rdfs:label "is quality of"@en ,
"è una qualità di"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#isRealizedBy
<http://www.loa-cnr.it/ontologies/DUL.owl#isRealizedBy> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#realizes> ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#InformationObject> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#InformationRealization> ;
rdfs:comment "A relation between an information realization and an information object, e.g. the paper copy of the Italian Constitution realizes the text of the Constitution." ;
rdfs:label "is realized by"@en ,
"è realizzato da"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#isSettingFor
<http://www.loa-cnr.it/ontologies/DUL.owl#isSettingFor> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ,
:TalkShow ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ,
:EmotionAnnotation ;
rdfs:comment "A relation between situations and entities, e.g. 'this morning I've prepared my coffee with a new fantastic Arabica', i.e.: the preparation of my coffee this morning is the setting for (an amount of) a new fantastic Arabica." ;
rdfs:label "include"@it ,
"is setting for"@en .
### http://www.loa-cnr.it/ontologies/DUL.owl#isTimeIncludedIn
<http://www.loa-cnr.it/ontologies/DUL.owl#isTimeIncludedIn> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#hasSetting> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isSettingFor>
] ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ;
rdfs:label "is time included in"@en ,
"è un tempo nel contesto di"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#nearTo
<http://www.loa-cnr.it/ontologies/DUL.owl#nearTo> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#nearTo> ;
rdf:type owl:SymmetricProperty ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ;
rdfs:comment "Generic distance relation between any Entity(s). E.g. Rome is near to Florence, astronomy is near to physics." ;
rdfs:label "near to"@en .
### http://www.loa-cnr.it/ontologies/DUL.owl#overlaps
<http://www.loa-cnr.it/ontologies/DUL.owl#overlaps> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#overlaps> ;
rdf:type owl:SymmetricProperty ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ;
rdfs:comment """A schematic relation between any entities, e.g. 'the chest region overlaps with the abdomen region', 'my spoken words overlap with hers', 'the time of my leave overlaps with the time of your arrival', 'fibromyalgia overlaps with other conditions'.
Subproperties and restrictions can be used to specialize overlaps for objects, events, time intervals, etc.""" ;
rdfs:label "overlaps"@en ,
"sovrapposto a"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#precedes
<http://www.loa-cnr.it/ontologies/DUL.owl#precedes> rdf:type owl:ObjectProperty ,
owl:TransitiveProperty ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ,
:Shot ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ,
:Shot ;
rdfs:comment """A relation between entities, expressing a 'sequence' schema.
E.g. 'year 1999 precedes 2000', 'deciding what coffee to use' precedes 'preparing coffee', 'World War II follows World War I', 'in the Milan to Rome autoroute, Bologna precedes Florence', etc.
It can then be used between tasks, processes, time intervals, spatially locate objects, situations, etc.
Subproperties can be defined in order to distinguish the different uses.""" ;
rdfs:label "precede"@it ,
"precedes"@en .
### http://www.loa-cnr.it/ontologies/DUL.owl#realizes
<http://www.loa-cnr.it/ontologies/DUL.owl#realizes> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#InformationRealization> ,
:Shot ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#InformationObject> ,
:HumanVisualContent ;
rdfs:comment "A relation between an information realization and an information object, e.g. the paper copy of the Italian Constitution realizes the text of the Constitution." ;
rdfs:label "realizes"@en ,
"realizza"@it .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#be_emotion
:be_emotion rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :emotion ,
[ owl:inverseOf :expressedIn
] ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :BasicEmotion .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#broadcastedBy
:broadcastedBy rdf:type owl:ObjectProperty ;
rdfs:domain :TalkShow ;
rdfs:range :Broadcaster .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#emotion
:emotion rdf:type owl:ObjectProperty ;
owl:inverseOf :expressedIn ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :Emotion .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#es_emotion
:es_emotion rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :emotion ,
[ owl:inverseOf :expressedIn
] ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :EmotionState .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#experiencer
:experiencer rdf:type owl:ObjectProperty ;
owl:inverseOf :isExperiencerIn ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :Agent .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#expressedIn
:expressedIn rdf:type owl:ObjectProperty ;
rdfs:domain :Emotion ;
rdfs:range :EmotionAnnotation .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#framedBy
:framedBy rdf:type owl:ObjectProperty ;
owl:inverseOf :frames ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :Shot .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#frames
:frames rdf:type owl:ObjectProperty ;
rdfs:domain :Shot ;
rdfs:range :EmotionAnnotation .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasAngle
:hasAngle rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasFramingTechnique ;
rdfs:domain :Shot ;
rdfs:range :CameraAngle .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasAuralComposition
:hasAuralComposition rdf:type owl:ObjectProperty ;
rdfs:domain :Shot ;
rdfs:range :AuralComposition .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasAuralTrigger
:hasAuralTrigger rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasTrigger ,
[ owl:inverseOf :triggers
] ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :AuralTrigger .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasCameraFramingInterpretation
:hasCameraFramingInterpretation rdf:type owl:ObjectProperty ;
owl:inverseOf :isframingInterpretationOf ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :CameraFramingInterpretation .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasContext
:hasContext rdf:type owl:ObjectProperty ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :ConversationalContext .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasConversationContext
:hasConversationContext rdf:type owl:ObjectProperty ;
rdfs:domain :ConversationRolePlay ;
rdfs:range :TalkShow .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasConversationRolePlay
:hasConversationRolePlay rdf:type owl:ObjectProperty ;
owl:inverseOf :isRolePlayOf ;
rdfs:domain :Agent ;
rdfs:range :ConversationRolePlay .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasFramingTechnique
:hasFramingTechnique rdf:type owl:ObjectProperty ;
rdfs:domain :Shot ;
rdfs:range :FramingTechnique .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasGender
:hasGender rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#hasQuality> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isQualityOf>
] ;
rdfs:domain :Person ;
rdfs:range :Gender .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasInScope
:hasInScope rdf:type owl:ObjectProperty ;
owl:inverseOf :isInScopeOf ;
rdfs:domain :TalkShow ;
rdfs:range :EmotionAnnotation .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasMovement
:hasMovement rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasFramingTechnique ;
rdfs:domain :Shot ;
rdfs:range :CameraMovement .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasRole
:hasRole rdf:type owl:ObjectProperty ;
rdfs:domain :ConversationRolePlay ;
rdfs:range :Role .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasShotType
:hasShotType rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasFramingTechnique ;
rdfs:domain :Shot ;
rdfs:range :ShotType .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasTrigger
:hasTrigger rdf:type owl:ObjectProperty ;
owl:inverseOf :triggers ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :Trigger .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasVerbalTrigger
:hasVerbalTrigger rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasTrigger ,
[ owl:inverseOf :triggers
] ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :VerbalTrigger .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasVisualTrigger
:hasVisualTrigger rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasTrigger ,
[ owl:inverseOf :triggers
] ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :VisualTrigger .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#includes
:includes rdf:type owl:ObjectProperty ;
owl:inverseOf :isIncludedIn ;
rdfs:domain :BasicEmotion ;
rdfs:range :EmotionState .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#involvesAgent
:involvesAgent rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#hasParticipant> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isParticipantIn>
] ;
owl:inverseOf :isAgentInvolvedIn ;
rdfs:domain :TalkShow ;
rdfs:range <http://www.loa-cnr.it/ontologies/DUL.owl#Agent> .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#isAbout
:isAbout rdf:type owl:ObjectProperty ;
rdfs:domain :TalkShow ;
rdfs:range :Topic .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#isAgentInvolvedIn
:isAgentInvolvedIn rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#isParticipantIn> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#hasParticipant>
] ;
rdfs:domain <http://www.loa-cnr.it/ontologies/DUL.owl#Agent> ;
rdfs:range :TalkShow .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#isExperiencerIn
:isExperiencerIn rdf:type owl:ObjectProperty ;
rdfs:domain :Agent ;
rdfs:range :EmotionAnnotation .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#isInScopeOf
:isInScopeOf rdf:type owl:ObjectProperty ;
rdfs:domain :EmotionAnnotation ;
rdfs:range :TalkShow .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#isIncludedIn
:isIncludedIn rdf:type owl:ObjectProperty ;
rdfs:domain :EmotionState ;
rdfs:range :BasicEmotion .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#isRolePlayOf
:isRolePlayOf rdf:type owl:ObjectProperty .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#isframingInterpretationOf
:isframingInterpretationOf rdf:type owl:ObjectProperty ;
rdfs:domain :CameraFramingInterpretation ;
rdfs:range :EmotionAnnotation .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#realizesEyeMovement
:realizesEyeMovement rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#realizes> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isRealizedBy>
] ;
rdfs:domain :Shot ;
rdfs:range :EyeMovement .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#realizesFaceMovement
:realizesFaceMovement rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#realizes> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isRealizedBy>
] ;
rdfs:domain :Shot ;
rdfs:range :FaceMovement .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#realizesHandGesture
:realizesHandGesture rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#realizes> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isRealizedBy>
] ;
rdfs:domain :Shot ;
rdfs:range :Gesture ,
:HandGesture .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#realizesHeadGesture
:realizesHeadGesture rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#realizes> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isRealizedBy>
] ;
rdfs:domain :Shot ;
rdfs:range :HeadGesture .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#realizesMovement
:realizesMovement rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.loa-cnr.it/ontologies/DUL.owl#realizes> ,
[ owl:inverseOf <http://www.loa-cnr.it/ontologies/DUL.owl#isRealizedBy>
] ;
rdfs:domain :Shot ;
rdfs:range :KineticMovement .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#triggers
:triggers rdf:type owl:ObjectProperty .
#################################################################
# Data properties
#################################################################
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasDate
:hasDate rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :TalkShow ;
rdfs:range xsd:string .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasDescription
:hasDescription rdf:type owl:DatatypeProperty ;
rdfs:domain :TalkShow ;
rdfs:range xsd:string .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasEnd
:hasEnd rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :EmotionAnnotation ;
rdfs:range xsd:string .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasFileName
:hasFileName rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :TalkShow ;
rdfs:range xsd:string .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasGroupType
:hasGroupType rdf:type owl:DatatypeProperty ;
rdfs:domain :Group ;
rdfs:range xsd:string .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasIdentifier
:hasIdentifier rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :TalkShow ;
rdfs:range xsd:string .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasName
:hasName rdf:type owl:DatatypeProperty ;
rdfs:domain :NamedPerson ;
rdfs:range xsd:string .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasNameSource
:hasNameSource rdf:type owl:DatatypeProperty ;
rdfs:domain :NamedPerson ;
rdfs:range xsd:string ;
rdfs:comment "The source where the name of the speaker comes from, either the audio of the video, the overlaid captions or the annotator’s recognition." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasShotStart
:hasShotStart rdf:type owl:DatatypeProperty ;
rdfs:domain :Shot ;
rdfs:range xsd:string .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasStart
:hasStart rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :EmotionAnnotation ;
rdfs:range xsd:string .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasText
:hasText rdf:type owl:DatatypeProperty ;
rdfs:domain :EmotionAnnotation ;
rdfs:range xsd:string ;
rdfs:comment "the ASR transcript of the text of the utterance." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#hasTitle
:hasTitle rdf:type owl:DatatypeProperty ;
rdfs:domain :TalkShow ;
rdfs:range xsd:string .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#startsAtFrame
:startsAtFrame rdf:type owl:DatatypeProperty .
#################################################################
# Classes
#################################################################
### http://www.loa-cnr.it/ontologies/DUL.owl#Agent
<http://www.loa-cnr.it/ontologies/DUL.owl#Agent> rdf:type owl:Class ;
owl:equivalentClass :Agent ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#Object> ;
owl:disjointWith <http://www.loa-cnr.it/ontologies/DUL.owl#Quality> ,
:Gender ;
rdfs:comment "Additional comment: a computational agent can be considered as a PhysicalAgent that realizes a certain class of algorithms (that can be considered as instances of InformationObject) that allow to obtain some behaviors that are considered typical of agents in general. For an ontology of computational objects based on DOLCE see e.g. http://www.loa-cnr.it/COS/COS.owl, and http://www.loa-cnr.it/KCO/KCO.owl." ,
"Any agentive Object , either physical (e.g. a whale, a robot, an oak), or social (e.g. a corporation, an institution, a community)." ;
rdfs:label "Agent"@en ,
"Agente"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#Entity
<http://www.loa-cnr.it/ontologies/DUL.owl#Entity> rdf:type owl:Class ;
rdfs:comment "Anything: real, possible, or imaginary, which some modeller wants to talk about for some purpose." ;
rdfs:label "Entity"@en ,
"Entità"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#InformationEntity
<http://www.loa-cnr.it/ontologies/DUL.owl#InformationEntity> rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:unionOf ( <http://www.loa-cnr.it/ontologies/DUL.owl#InformationObject>
<http://www.loa-cnr.it/ontologies/DUL.owl#InformationRealization>
)
] ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ;
rdfs:comment "A piece of information, be it concretely realized or not." .
### http://www.loa-cnr.it/ontologies/DUL.owl#InformationObject
<http://www.loa-cnr.it/ontologies/DUL.owl#InformationObject> rdf:type owl:Class ;
owl:equivalentClass :HumanVisualContent ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#InformationEntity> ,
<http://www.loa-cnr.it/ontologies/DUL.owl#SocialObject> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://www.loa-cnr.it/ontologies/DUL.owl#isRealizedBy> ;
owl:someValuesFrom <http://www.loa-cnr.it/ontologies/DUL.owl#InformationRealization>
] ;
owl:disjointWith <http://www.loa-cnr.it/ontologies/DUL.owl#Quality> ,
<http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ,
:AppraisedEmotionAnnotation ,
:EmotionAnnotation ,
:ExperiencedEmotionAnnotation ,
:FutureEmotionAnnotation ,
:Gender ,
:PastEmotionAnnotation ,
:PresentEmotionAnnotation ,
:TalkShow ;
rdfs:comment "A piece of information, such as a musical composition, a text, a word, a picture, independently from how it is concretely realized." ;
rdfs:label "Information object"@en ,
"Oggetto informativo"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#InformationRealization
<http://www.loa-cnr.it/ontologies/DUL.owl#InformationRealization> rdf:type owl:Class ;
owl:equivalentClass :Shot ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#InformationEntity> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://www.loa-cnr.it/ontologies/DUL.owl#realizes> ;
owl:someValuesFrom <http://www.loa-cnr.it/ontologies/DUL.owl#InformationObject>
] ;
rdfs:comment "A concrete realization of an InformationObject, e.g. the written document containing the text of a law." ;
rdfs:label "Information realization"@en ,
"Informazione concreta"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#Object
<http://www.loa-cnr.it/ontologies/DUL.owl#Object> rdf:type owl:Class ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ;
owl:disjointWith <http://www.loa-cnr.it/ontologies/DUL.owl#Quality> ,
:Gender ;
rdfs:comment "Any physical, social, or mental object, or a substance" ;
rdfs:label "Object"@en ,
"Oggetto"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#Person
<http://www.loa-cnr.it/ontologies/DUL.owl#Person> rdf:type owl:Class ;
owl:equivalentClass :Person ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#Agent> ,
:Agent ;
owl:disjointWith <http://www.loa-cnr.it/ontologies/DUL.owl#Quality> ,
:Gender ,
:Group ;
rdfs:comment "Persons in commonsense intuition, which does not apparently distinguish between either natural or social persons." ;
rdfs:label "Person"@en ,
"Persona {it}" .
### http://www.loa-cnr.it/ontologies/DUL.owl#Quality
<http://www.loa-cnr.it/ontologies/DUL.owl#Quality> rdf:type owl:Class ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#Entity> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://www.loa-cnr.it/ontologies/DUL.owl#isQualityOf> ;
owl:someValuesFrom <http://www.loa-cnr.it/ontologies/DUL.owl#Entity>
] ;
owl:disjointWith <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ,
<http://www.loa-cnr.it/ontologies/DUL.owl#SocialObject> ,
:Agent ,
:AppraisedEmotionAnnotation ,
:EmotionAnnotation ,
:ExperiencedEmotionAnnotation ,
:EyeMovement ,
:FaceMovement ,
:FutureEmotionAnnotation ,
:Gesture ,
:Group ,
:HandGesture ,
:HeadGesture ,
:HumanVisualContent ,
:KineticMovement ,
:NamedPerson ,
:PastEmotionAnnotation ,
:Person ,
:PresentEmotionAnnotation ,
:TalkShow ;
rdfs:comment """Any aspect of an Entity (but not a part of it), which cannot exist without that Entity. For example, the way the surface of a specific PhysicalObject looks like is a Quality, while the encoding of that Quality into e.g. a PhysicalAttribute should be modeled as a Region.
From the design viewpoint, the Quality-Region distinction is useful only when individual aspects of an Entity are considered in a domain of discourse.
For example, in an automotive context, it would be irrelevant to consider the aspects of car windows for a specific car, unless the factory wants to check a specific window against design parameters (anomaly detection).
On the other hand, in an antiques context, the individual aspects for a specific piece of furniture are a major focus of attention, and may constitute the actual added value, because the design parameters for old furniture are often not fixed, and may not be viewed as 'anomalies'.""" ;
rdfs:label "Quality"@en ,
"Qualità"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#Situation
<http://www.loa-cnr.it/ontologies/DUL.owl#Situation> rdf:type owl:Class ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#SocialObject> ;
owl:disjointWith :EyeMovement ,
:FaceMovement ,
:Gender ,
:Gesture ,
:HandGesture ,
:HeadGesture ,
:HumanVisualContent ,
:KineticMovement ;
rdfs:comment """A view, consistent with ('satisfying') a Description, on a set of entities.
It can also be seen as a 'relational context' created by an observer on the basis of a 'frame' (i.e. a Description).
For example, a PlanExecution is a context including some actions executed by agents according to certain parameters and expected tasks to be achieved from a Plan; a DiagnosedSituation is a context of observed entities that is interpreted on the basis of a Diagnosis, etc.
Situation is also able to represent reified n-ary relations, where isSettingFor is the top-level relation for all binary projections of the n-ary relation. If used in a transformation pattern for n-ary relations, the designer should take care of creating only one subclass of Situation for each n-ary relation, otherwise the 'identification constraint' (Calvanese et al., IJCAI 2001) could be violated.""" ;
rdfs:label "Situation"@en ,
"Situazione"@it .
### http://www.loa-cnr.it/ontologies/DUL.owl#SocialObject
<http://www.loa-cnr.it/ontologies/DUL.owl#SocialObject> rdf:type owl:Class ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#Object> ;
owl:disjointWith :Gender ;
rdfs:comment """Any Object that exists only within some communication Event, in which at least one PhysicalObject participates in.
In other words, all objects that have been or are created in the process of social communication: for the sake of communication (InformationObject), for incorporating new individuals (SocialAgent, Place), for contextualizing existing entities (Situation), for collecting existing entities (Collection), or for describing existing entities (Description, Concept).
Being dependent on communication, all social objects need to be expressed by some information object (information object are self-expressing).""" ;
rdfs:label "Oggetto sociale"@it ,
"Social object"@en .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#Agent
:Agent rdf:type owl:Class ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#Object> ;
owl:disjointWith :Gender ;
rdfs:comment """The Agent can be either a person, in the intuitive meaning of the term, or a group of people. At least an agent needs to be recognized as participating in a talk show and also to be the speaker in an Emotion Annotation for this one to exist. This is because, logically, an emotion expression exists only if it is expressed by an agent.
Given the automatic subdivision into utterances of a video, which is based on ASR segmentation of speech, there might be more than one person talking in the same utterance and more people can express an emotion in the same utterance. Nonetheless, it is crucial to respect the unique connection between 1 agent expressing 1 emotion.
The speaker can be named, either by the host or by overlaid captions. If the annotator recognizes someone who is unnamed, they can integrate the name of the person. In either case, the provenance of the name must be provided by mean of the data property hasNameSource.""" .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#AppraisedEmotionAnnotation
:AppraisedEmotionAnnotation rdf:type owl:Class ;
rdfs:subClassOf :EmotionAnnotation ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasTrigger ;
owl:allValuesFrom :VerbalTrigger
] ;
owl:disjointWith :ExperiencedEmotionAnnotation ,
:EyeMovement ,
:FaceMovement ,
:Gender ,
:Gesture ,
:HandGesture ,
:HeadGesture ,
:HumanVisualContent ,
:KineticMovement ;
rdfs:comment "An emotion that is not experienced personally by the speaker but is appraised in a third person. The speaker reports that somebody else’s experiences an emotion. It can only be triggered by a verbal trigger." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#AuralComposition
:AuralComposition rdf:type owl:Class ;
rdfs:comment """Describes the way the audio composes with the video of the utterance. For example:
-The speaker is clearly framed and so the audio is aligned with what the viewer sees
-The speaker is framed but not clearly, as it is, for example, in the background of a long shot, or in positions where the viewer cannot clearly identify who’s speaking
-The audio is a voiceover and the video frames something else, such as the listener or the studio
-The audio is muddled, as two or more people are talking over each other. In this case regardless of who’s speaking, it is difficult to identify a unique relation between speaker and audio as well as understanding what people are saying.""" .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#AuralTrigger
:AuralTrigger rdf:type owl:Class ;
rdfs:subClassOf :Trigger ;
owl:disjointWith :VerbalTrigger ,
:VisualTrigger ;
rdfs:comment "A trigger that is observed in the audio, some characteristics in the way a person speak that can hint at the person’s emotion (such as tense articulation, startling, a laughter etc)." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#BasicEmotion
:BasicEmotion rdf:type owl:Class ;
rdfs:subClassOf :Emotion ;
owl:disjointWith :EmotionState ;
rdfs:comment "An Ekman basic emotion: anger, disgust, enjoyment, fear, sadness, surprise. Defined in www.atlasofemotions.org." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#Broadcaster
:Broadcaster rdf:type owl:Class ;
rdfs:comment "The class representing the broadcaster that aired the talk show." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#CameraAngle
:CameraAngle rdf:type owl:Class ;
rdfs:subClassOf :FramingTechnique ;
rdfs:comment "Camera angle in cinema refers to the specific position of the camera in relation to the subject, influencing the viewer's perspective and emotional engagement." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#CameraFramingInterpretation
:CameraFramingInterpretation rdf:type owl:Class ;
rdfs:comment "It’s the perspective conveyed by the way the talk show is filmed (on the basis of Tan, 2009). This information is based on the assumptions that the syntax of the visual modality influences the perception and understanding of meanings and emotional aspects. A Visual framing is considered at an utterance level: each emotion relation is framed visually in a unique way." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#CameraMovement
:CameraMovement rdf:type owl:Class ;
rdfs:subClassOf :FramingTechnique ;
rdfs:comment "The physical displacement of the camera during filming, contributing to the visual storytelling and emotional impact of a scene (ex. tilt, pan, zoom...)." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#ConversationRolePlay
:ConversationRolePlay rdf:type owl:Class ;
rdfs:comment "The Class that connects a Role covered by a person to the Talk Show in which the person had that role. The naming convention for instances of this class is: id of the archival item + type of role, ex: 2101608040029452931_guest." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#ConversationalContext
:ConversationalContext rdf:type owl:Class ;
rdfs:comment "Considering talk shows as a predefined setting where there are specific conversational conventions, roles and patterns (in other words, a “genre” as defined by van Leeuwen: “Genres link the text with a special context and regulate the adequate selection of semiotic means dependent on that context.” A conversational frame is the identified conversational block in which the emotion is expressed." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#Emotion
:Emotion rdf:type owl:Class ;
rdfs:comment "Represents the emotion identified and annotated in a multimodal utterance by an annotator. A taxonomy of emotions is given, where each of the five Ekman basic emotions include a variety of emotional states, as defined by http://atlasofemotions.org/" .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#EmotionAnnotation
:EmotionAnnotation rdf:type owl:Class ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#Situation> ,
[ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty :emotion ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :BasicEmotion
]
[ rdf:type owl:Restriction ;
owl:onProperty :emotion ;
owl:maxQualifiedCardinality "2"^^xsd:nonNegativeInteger ;
owl:onClass :EmotionState
]
) ;
rdf:type owl:Class
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :emotion ;
owl:someValuesFrom :Emotion
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasTrigger ;
owl:someValuesFrom :Trigger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :framedBy ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :Shot
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :experiencer ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :Agent
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasEnd ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasStart ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ;
owl:disjointWith :EyeMovement ,
:FaceMovement ,
:Gender ,
:Gesture ,
:HandGesture ,
:HeadGesture ,
:HumanVisualContent ,
:KineticMovement ;
rdfs:comment """The n-ary relation class that represents the expression of an emotion in an utterance. It is time indexed, since the utterance is the smallest sub-clip of a talk show video, defined by start and end timecodes, where an emotion, expressed by three modalities (audio, video, and text in the form of Automatic Speech Recognition transcript), needs to be annotated. It is a subclass of dul:Situation and it is also defined by a unique identifier.
The naming convention for instances of this class is: id of the archival item + numeric reference to the talk show segment + sequence number. The mp4 files of the utterances are named in the same way, ex: 2101608050034534331_9_175.""" .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#EmotionState
:EmotionState rdf:type owl:Class ;
rdfs:subClassOf :Emotion ;
rdfs:comment """A fine-grained emotion that can be considered an emotional state belonging to one of Ekman's basic emotion, as defined in www.atlasofemotions.org
They are organized according to intensity level.""" .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#ExperiencedEmotionAnnotation
:ExperiencedEmotionAnnotation rdf:type owl:Class ;
rdfs:subClassOf :EmotionAnnotation ;
owl:disjointWith :EyeMovement ,
:FaceMovement ,
:Gender ,
:Gesture ,
:HandGesture ,
:HeadGesture ,
:HumanVisualContent ,
:KineticMovement ;
rdfs:comment "An emotion that is experienced by the speaker personally." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#EyeMovement
:EyeMovement rdf:type owl:Class ;
rdfs:subClassOf :FaceMovement ;
owl:disjointWith :FutureEmotionAnnotation ,
:Gender ,
:PastEmotionAnnotation ,
:PresentEmotionAnnotation ,
:TalkShow .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#FaceMovement
:FaceMovement rdf:type owl:Class ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#InformationObject> ,
:HumanVisualContent ;
owl:disjointWith :FutureEmotionAnnotation ,
:Gender ,
:PastEmotionAnnotation ,
:PresentEmotionAnnotation ,
:TalkShow ;
rdfs:comment "The facial expressions on the basis of Ekman and Friesen's Facial Action Coding System (FACS). This class encompasses a series of facial movements that one can interpret as emotional triggers. It is to be noted that, even though in Ekman and Friesen's study facial expressions are related to emotional expressions, in the present study, this univoque relation is overlooked, and facial movements are only collected as a vocabulary for annotation. When the annotator identifies an emotion they can freely indicate the facial movement they recognise as visual trigger of the emotion." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#FramingTechnique
:FramingTechnique rdf:type owl:Class ;
rdfs:comment "The technical “grammatical” aspects with which one can describe a frame. These are three main aspects taken from cinema theory: camera angle (the positioning of the camera with respect to the content that is filmed), camera movement and type of shot." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#FutureEmotionAnnotation
:FutureEmotionAnnotation rdf:type owl:Class ;
rdfs:subClassOf :EmotionAnnotation ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasTrigger ;
owl:allValuesFrom :VerbalTrigger
] ;
owl:disjointWith :Gender ,
:Gesture ,
:HandGesture ,
:HeadGesture ,
:HumanVisualContent ,
:KineticMovement ,
:PastEmotionAnnotation ,
:PresentEmotionAnnotation ;
rdfs:comment "An emotion expressed conditionally, as a state that will occur in the future. For instance: “if you do this, it will hurt me”. It can only be triggered by a verbal trigger." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#Gender
:Gender rdf:type owl:Class ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#Quality> ;
owl:disjointWith :Gesture ,
:Group ,
:HandGesture ,
:HeadGesture ,
:HumanVisualContent ,
:KineticMovement ,
:NamedPerson ,
:PastEmotionAnnotation ,
:Person ,
:PresentEmotionAnnotation ,
:TalkShow ;
rdfs:comment "The gender, as recognized by the annotator, of the agent who's speaking in the utterance and that expresses the emotion." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#Gesture
:Gesture rdf:type owl:Class ;
rdfs:subClassOf <http://www.loa-cnr.it/ontologies/DUL.owl#InformationObject> ,
:HumanVisualContent ;
owl:disjointWith :PastEmotionAnnotation ,
:PresentEmotionAnnotation ,
:TalkShow ;
rdfs:comment "Head and hand gestures. Vocabularies are taken respectively from FACS and https://www.indiabix.com/body-language/hand-to-face-gestures/, they can be expanded." .
### https://raw.githubusercontent.com/MaddaGh/DataProcessing_EmoAnnotation/main/meaw.ttl#Group