-
Notifications
You must be signed in to change notification settings - Fork 1
/
all-story-frames.lisp
40665 lines (40663 loc) · 566 KB
/
all-story-frames.lisp
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
(defparameter *ALL-STORY-FRAMES* '(
(
; story sentence text for lookup
("Tom had two dogs." "One dog was black." "One dog was white." "Tom's dogs were black and white." "The large dog was black." "The small one was white." "Did Tom see the dogs run?" "Did the cats run?" "No; the cats were on the steps." "The white cat was lying on the steps." "Did a black cat sit on a mat?" "No; that was my white one.")
; events
(
(0 Cardinal_numbers (2 2)
(
(Number (2 2) ())
(Entity (3 3) (1))
)
)
(1 Animals (3 3)
(
(Animal (0 0) ())
(Animal (3 3) ())
)
)
(2 Cardinal_numbers (5 5)
(
(Number (0 0) ())
(Entity (6 6) ())
)
)
(3 Color (8 8)
(
(Color (3 3) (1))
(Entity (6 6) ())
)
)
(4 Cardinal_numbers (10 10)
(
(Number (0 0) ())
(Entity (6 6) ())
)
)
(5 Color (13 13)
(
(Entity (6 6) ())
)
)
(6 Color (21 21)
(
(Entity (17 17) ())
)
)
(7 Color (19 19)
(
(Entity (17 17) ())
)
)
(8 Size (24 24)
(
(Entity (2 2) (0))
)
)
(9 Color (27 27)
(
(Entity (17 17) ())
)
)
(10 Size (30 30)
(
(Entity (2 2) (0))
)
)
(11 Color (33 33)
(
(Entity (17 17) ())
)
)
(12 Perception_experience (37 37)
(
(Perceiver_passive (6 6) ())
(Depictive (40 40) (13))
(Phenomenon (39 39) ())
)
)
(13 Self_motion (40 40)
(
(Self_mover (39 39) ())
)
)
(14 Self_motion (45 45)
(
(Self_mover (44 44) ())
)
)
(15 Connecting_architecture (54 54)
(
(Part (54 54) ())
)
)
(16 Posture (60 60)
(
(Point_of_contact (60 60) ())
(Location (63 63) (18))
(Agent (17 17) ())
)
)
(17 Color (57 57)
(
(Entity (2 2) (0))
(Color (6 6) ())
)
)
(18 Connecting_architecture (63 63)
(
(Part (54 54) (15))
)
)
(19 Color (67 67)
(
(Color (2 2) (0))
(Entity (3 3) (1))
)
)
(20 Posture (69 69)
(
(Point_of_contact (60 60) (16))
(Location (63 63) (18))
(Agent (68 68) (21))
)
)
(21 Animals (68 68)
(
(Descriptor (2 2) (0))
(Animal (3 3) (1))
)
)
(22 Color (79 79)
(
(Color (40 40) (13))
(Entity (80 80) ())
)
)
)
)
(
; story sentence text for lookup
("It was my son's first birthday." "I cannot believe how fast it has gone by." "He is getting so big." "He got a smash cake for himself." "He loved it.")
; events
(
(0 Commemorative (6 6)
(
(Dedicated_entity (2 4) (2))
)
)
(1 Ordinal_numbers (5 5)
(
(Type (6 6) (0))
)
)
(2 Kinship (3 3)
(
(Ego (2 2) ())
(Alter (3 3) ())
)
)
(3 Motion (16 16)
(
(Speed (13 13) (4))
(Theme (6 6) (0))
(Path (17 17) ())
)
)
(4 Speed_description (13 13)
(
(Speed (13 13) ())
(Degree (12 12) ())
(Entity (6 6) (0))
)
)
(5 Awareness (11 11)
(
(Cognizer (8 8) ())
(Content (13 13) (4))
)
)
(6 Transition_to_state (21 21)
(
(Entity (8 8) ())
(Final_quality (22 23) (7))
)
)
(7 Size (23 23)
(
(Entity (8 8) ())
(Degree (3 3) (2))
)
)
(8 Commerce_buy (26 26)
(
(Recipient (8 8) ())
(Goods (29 29) (9))
)
)
(9 Food (29 29)
(
(Descriptor (3 3) (2))
)
)
(10 Experiencer_focus (34 34)
(
(Experiencer (8 8) ())
(Content (2 2) ())
)
)
)
)
(
; story sentence text for lookup
("The boy ran into the kitchen." "His hand hit the cup on the table." "It hit the ground with a bounce." "The cup did not break." "The cup was made of plastic.")
; events
(
(0 Self_motion (2 2)
(
(Goal (5 5) (2))
(Self_mover (1 1) (1))
)
)
(1 People_by_age (1 1)
(
(Person (1 1) ())
)
)
(2 Building_subparts (5 5)
(
(Building_part (5 5) ())
)
)
(3 Cause_impact (9 9)
(
(Impactee (11 11) (5))
(Impactor (1 1) (1))
)
)
(4 Body_parts (8 8)
(
(Possessor (7 7) ())
(Body_part (1 1) (1))
)
)
(5 Containers (11 11)
(
(Container (11 11) ())
(Relative_location (14 14) ())
)
)
(6 Impact (17 17)
(
(Impactee (19 19) ())
(Impactor (7 7) ())
(Manner (22 22) (7))
)
)
(7 Motion_noise (22 22)
(
)
)
(8 Containers (25 25)
(
(Container (1 1) (1))
)
)
(9 Containers (31 31)
(
(Container (1 1) (1))
)
)
(10 Process_start (33 33)
(
(Place (35 35) ())
(Place (1 1) (1))
)
)
)
)
(
; story sentence text for lookup
("The monkey can climb a tree." "He climbs the tree and gets a cocoanut." "He drops the cocoanut to the ground." "He comes down and eats it." "The monkey likes to run and play." "Is Simeon afraid of the monkey?" "Luisa is afraid of large monkeys." "She is not afraid of this little monkey.")
; events
(
(0 Self_motion (3 3)
(
(Path (5 5) ())
(Self_mover (1 1) ())
)
)
(1 Capability (2 2)
(
(Entity (1 1) ())
(Event (5 5) ())
)
)
(2 Self_motion (8 8)
(
(Self_mover (7 7) ())
(Path (10 10) (4))
)
)
(3 Food (14 14)
(
)
)
(4 Biological_area (10 10)
(
(Locale (10 10) ())
)
)
(5 Getting (12 12)
(
(Recipient (7 7) ())
(Theme (14 14) (3))
)
)
(6 Cause_motion (17 17)
(
(Result (22 22) ())
(Agent (7 7) ())
(Theme (10 10) (4))
)
)
(7 Food (19 19)
(
)
)
(8 Ingestion (28 28)
(
(Ingestor (7 7) ())
(Ingestibles (29 29) ())
)
)
(9 Experiencer_focus (33 33)
(
(Experiencer (1 1) ())
(Content (34 37) (10))
)
)
(10 Self_motion (35 35)
(
(Self_mover (1 1) ())
)
)
(11 Experiencer_focus (41 41)
(
(Experiencer (40 40) ())
(Content (5 5) ())
)
)
(12 Size (50 50)
(
(Entity (29 29) ())
)
)
(13 Experiencer_focus (48 48)
(
(Content (5 5) ())
(Experiencer (7 7) ())
)
)
(14 Experiencer_focus (56 56)
(
(Experiencer (7 7) ())
(Content (60 60) ())
)
)
)
)
(
; story sentence text for lookup
("Susie loved clothes." "She got a striped shirt yesterday." "She did not like it." "Finally she liked it." "Susie was happy about it.")
; events
(
(0 Experiencer_focus (1 1)
(
(Content (2 2) (1))
(Experiencer (0 0) ())
)
)
(1 Clothing (2 2)
(
(Garment (2 2) ())
)
)
(2 Clothing (8 8)
(
(Garment (8 8) ())
(Descriptor (7 7) (4))
)
)
(3 Getting (5 5)
(
(Recipient (0 0) ())
(Time (9 9) ())
(Theme (8 8) (2))
)
)
(4 Color (7 7)
(
(Entity (8 8) (2))
(Color (7 7) ())
)
)
(5 Experiencer_focus (14 14)
(
(Experiencer (0 0) ())
(Content (8 8) (2))
)
)
(6 Experiencer_focus (19 19)
(
(Experiencer (18 18) ())
(Content (7 7) (4))
)
)
(7 Time_vector (17 17)
(
(Event (18 18) ())
)
)
(8 Emotion_directed (24 24)
(
(Topic (26 26) ())
(Experiencer (0 0) ())
)
)
)
)
(
; story sentence text for lookup
("I was sitting in my chair." "I leaned back a little too far." "I heard a tiny crack." "I looked down at my chair." "One of the legs had a crack.")
; events
(
(0 Posture (2 2)
(
(Agent (0 0) ())
(Point_of_contact (2 2) ())
(Location (5 5) ())
)
)
(1 Gradable_proximity (13 13)
(
(Directness (10 11) ())
(Figure (0 0) ())
(Directness (12 12) ())
)
)
(2 Change_posture (8 9)
(
(Protagonist (0 0) ())
(Result (10 13) (1))
(Direction (2 2) (0))
)
)
(3 Sounds (19 19)
(
(Manner (18 18) (5))
)
)
(4 Perception_experience (16 16)
(
(Perceiver_passive (0 0) ())
(Phenomenon (19 19) (3))
)
)
(5 Size (18 18)
(
(Entity (19 19) (3))
)
)
(6 Perception_active (22 22)
(
(Perceiver_agentive (0 0) ())
(Direction (2 2) (0))
(Phenomenon (5 5) ())
)
)
(7 Body_parts (31 31)
(
(Body_part (18 18) (5))
)
)
)
)
(
; story sentence text for lookup
("I was in high school." "I went to a park with a friend." "I lost my friend." "I was late for my curfew." "I got in trouble.")
; events
(
(0 Motion (7 7)
(
(Theme (6 6) ())
(Depictive (13 13) (2))
(Goal (10 10) (1))
)
)
(1 Locale_by_use (10 10)
(
(Locale (10 10) ())
)
)
(2 Personal_relationship (13 13)
(
(Partner_1 (13 13) ())
)
)
(3 Personal_relationship (18 18)
(
(Partner_2 (17 17) ())
(Partner_1 (18 18) ())
)
)
(4 Relative_time (22 22)
(
(Focal_participant (6 6) ())
(Landmark_occasion (25 25) ())
)
)
(5 Predicament (30 30)
(
(Experiencer (6 6) ())
(Situation (18 18) (3))
)
)
)
)
(
; story sentence text for lookup
("The man filled up his backpack." "He tried it on." "It felt too heavy." "He took the backpack off." "He took some of the stuff out of the backpack.")
; events
(
(0 Filling (2 3)
(
(Goal (5 5) (1))
(Agent (1 1) (2))
)
)
(1 Containers (5 5)
(
(Container (5 5) ())
(Owner (4 4) ())
)
)
(2 People (1 1)
(
(Person (1 1) ())
)
)
(3 Attempt (8 10)
(
(Agent (7 7) ())
(Goal (9 9) ())
)
)
(4 Give_impression (13 13)
(
(Characterization (14 15) (5))
(Phenomenon (7 7) ())
)
)
(5 Measurable_attributes (15 15)
(
(Entity (7 7) ())
(Degree (9 9) ())
)
)
(6 Removing (18 18)
(
(Agent (7 7) ())
(Source (4 4) ())
(Theme (14 15) (5))
)
)
(7 Undressing (20 21)
(
(Wearer (7 7) ())
(Clothing (14 15) (5))
)
)
(8 Removing (24 24)
(
(Agent (7 7) ())
(Source (32 32) (9))
(Theme (25 25) ())
)
)
(9 Containers (32 32)
(
(Container (32 32) ())
)
)
)
)
(
; story sentence text for lookup
("Andre was at a party." "He then lost his phone." "The whole party stopped." "People are all looking for it." "They found it.")
; events
(
(0 Spatial_co-location (2 2)
(
(Figure (0 0) ())
(Ground (4 4) (1))
)
)
(1 Social_event (4 4)
(
(Attendee (0 0) ())
(Social_event (4 4) ())
)
)
(2 Losing (8 8)
(
(Owner (0 0) ())
(Possession (10 10) (3))
)
)
(3 Accoutrements (10 10)
(
(Accoutrement (4 4) (1))
(Wearer (9 9) ())
)
)
(4 Social_event (14 14)
(
(Social_event (14 14) ())
)
)
(5 Ranked_expectation (13 13)
(
(Entity (14 14) (4))
)
)
(6 Process_stop (15 15)
(
(Process (14 14) (4))
)
)
(7 People (17 17)
(
(Person (0 0) ())
)
)
(8 Seeking (20 20)
(
(Cognizer_agent (0 0) ())
(Sought_entity (22 22) ())
)
)
(9 Locating (25 25)
(
(Perceiver (0 0) ())
(Sought_entity (14 14) (4))
)
)
)
)
(
; story sentence text for lookup
("John had his day off." "John wanted to go to the beach." "He got on his car and drove to the beach." "John swam in the water." "John had a good day.")
; events
(
(0 Exclude_member (1 4)
(
(Time (3 3) ())
(Member (0 0) ())
)
)
(1 Desiring (7 7)
(
(Experiencer (0 0) ())
(Event (12 12) (2))
)
)
(2 Natural_features (12 12)
(
(Locale (12 12) ())
)
)
(3 Motion (9 9)
(
(Theme (0 0) ())
(Goal (12 12) (2))
)
)
(4 Natural_features (23 23)
(
(Locale (23 23) ())
)
)
(5 Self_motion (15 15)
(
(Self_mover (0 0) ())
(Goal (18 18) (6))
)
)
(6 Vehicle (18 18)
(
(Vehicle (18 18) ())
(Possessor (17 17) ())
)
)
(7 Operate_vehicle (20 20)
(
(Driver (0 0) ())
(Goal (23 23) (4))
)
)
(8 Self_motion (26 26)
(
(Self_mover (0 0) ())
(Place (18 18) (6))
)
)
(9 Calendric_unit (35 35)
(
(Unit (18 18) (6))
)
)
(10 Desirability (34 34)
(
(Evaluee (18 18) (6))
)
)
)
)
(
; story sentence text for lookup
("Aaron had a slight cold." "His mother told him not to swim." "Aaron's mother went to the store." "He went and swam anyway." "Aaron got sick.")
; events
(
(0 Perception_body (4 4)
(
(Experiencer (0 0) ())
(Body_part (4 4) ())
)
)
(1 Telling (8 8)
(
(Message (10 12) (3))
(Addressee (9 9) ())
(Speaker (7 7) (2))
)
)
(2 Kinship (7 7)
(
(Ego (0 0) ())
(Alter (7 7) ())
)
)
(3 Self_motion (12 12)
(
(Self_mover (9 9) ())
)
)
(4 Motion (17 17)
(
(Theme (16 16) (5))
(Goal (10 12) (3))
)
)
(5 Kinship (16 16)
(
(Ego (7 7) (2))
(Alter (16 16) ())
)
)
(6 Businesses (20 20)
(
(Business (20 20) ())
)
)
(7 Motion (23 23)
(
(Theme (0 0) ())
)
)
(8 Self_motion (25 25)
(
(Self_mover (0 0) ())
)
)
(9 Biological_urge (30 30)
(
(Experiencer (0 0) ())
)
)
(10 Transition_to_state (29 29)
(
(Entity (0 0) ())
(Final_quality (16 16) (5))
)
)
)
)
(
; story sentence text for lookup
("Kitty and Berty are sisters." "They have been to the woods." "It is the month of May." "They have found some May flowers." "May flowers grow in the woods." "Here they come." "Little lucy is with them." "Their baskets are full." "Some flowers are pink and some are white." "These are apple blossoms." "Three blossoms are on one twig and four on the other." "There are eight bees.")
; events
(
(0 Kinship (4 4)
(
(Relatives (0 0) ())
)
)
(1 Calendric_unit (16 16)
(
(Unit (18 18) ())
(Unit (16 16) ())
)
)
(2 Locating (21 21)
(
(Perceiver (19 19) ())
(Sought_entity (24 24) ())
)
)
(3 Biological_area (31 31)
(
(Locale (31 31) ())
)
)
(4 Ontogeny (28 28)
(
(Place (24 24) ())
(Entity (27 27) ())
)
)
(5 Arriving (35 35)
(
(Goal (19 19) ())
(Theme (34 34) ())
)
)
(6 Size (37 37)
(
(Entity (34 34) ())
)
)
(7 Hair_configuration (40 40)
(
(Hair (27 27) ())
(Possessor (41 41) ())
)
)
(8 Containers (44 44)
(
(Container (34 34) ())
(Owner (19 19) ())
)
)
(9 Abounding_with (46 46)
(
(Location (27 27) ())
)
)
(10 Proportional_quantity (48 48)
(
(Denoted_quantity (19 19) ())
(Individuals (34 34) ())
)
)
(11 Color (55 55)
(
(Entity (31 31) (3))
)
)
(12 Color (51 51)
(
(Color (16 16) (1))
(Entity (27 27) ())
)
)
(13 Cardinal_numbers (69 69)
(
(Number (69 69) ())
)
)
(14 Cardinal_numbers (62 62)
(
(Number (19 19) ())
(Entity (34 34) ())
)
)
(15 Cardinal_numbers (66 66)
(
(Number (41 41) ())
(Entity (31 31) (3))
)
)
(16 Spatial_contact (65 65)
(
(Ground (18 18) ())
(Figure (27 27) ())
)
)
(17 Cardinal_numbers (76 76)
(
(Number (76 76) ())
(Entity (16 16) (1))
)
)
(18 Existence (74 75)
(
(Entity (76 77) (17))
)
)
)
)
(
; story sentence text for lookup
("A little baby was sleeping." "Her siblings tried to wake her up." "She didn't wake up." "She slept all day." "She stayed up all night.")
; events
(
(0 People_by_age (2 2)
(
(Person (2 2) ())
(Descriptor (1 1) (1))
)
)
(1 Size (1 1)
(
(Entity (2 2) (0))
)
)
(2 Sleep (4 4)
(
(Sleeper (2 2) (0))
)
)
(3 Cause_to_wake (10 12)
(
(Agent (7 7) (5))
(Sleeper (11 11) ())
)
)
(4 Attempt (8 8)
(
(Agent (7 7) (5))
(Goal (11 11) ())
)
)
(5 Kinship (7 7)
(
(Ego (6 6) ())
(Alter (1 1) (1))
)
)
(6 Waking_up (17 18)
(
(Sleeper (6 6) ())
)
)
(7 Sleep (21 21)
(
(Sleeper (6 6) ())
(Duration (22 23) (8))
)
)
(8 Calendric_unit (23 23)
(
(Unit (23 23) ())
)
)
(9 Temporary_stay (26 26)
(
(Guest (6 6) ())
)
)
(10 Calendric_unit (29 29)
(
(Unit (29 29) ())
)
)
)
)
(
; story sentence text for lookup
("This man is John's father." "The horse is Billy." "Billy is a good old horse." "He is a fine black horse." "Where do you see John?" "John likes to ride on Billy." "Billy will not go too fast with John." "John will not fall off." "Did you ever ride on a horse?" "Did you ever play horse?")
; events
(
(0 People (1 1)
(
(Person (1 1) ())
)
)
(1 Kinship (5 5)
(
(Ego (3 4) ())
)
)
(2 Animals (17 17)
(
(Animal (17 17) ())
(Animal (12 12) ())
(Descriptor (3 4) ())
)
)
(3 Age (16 16)
(