forked from texttheater/pmb2tsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtatoeba-dev75-gosse.drs.clf
1446 lines (1372 loc) · 68.2 KB
/
tatoeba-dev75-gosse.drs.clf
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
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0771/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0771/en.drs.clf
%%% ø Maria has ø long hair .
b1 REF x1 % Maria [0...5]
b1 Name x1 "maria" % Maria [0...5]
b1 PRESUPPOSITION b2 % Maria [0...5]
b1 female "n.02" x1 % Maria [0...5]
b2 REF e1 % has [6...9]
b2 REF t1 % has [6...9]
b2 EQU t1 "now" % has [6...9]
b2 Pivot e1 x1 % has [6...9]
b2 Theme e1 x2 % has [6...9]
b2 Time e1 t1 % has [6...9]
b2 have "v.02" e1 % has [6...9]
b2 time "n.08" t1 % has [6...9]
b2 REF s1 % long [10...14]
b2 REF x2 % long [10...14]
b2 Attribute x2 s1 % long [10...14]
b2 Value s1 "+" % long [10...14]
b2 long "a.02" s1 % long [10...14]
b2 hair "n.01" x2 % hair [15...19]
% . [19...20]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0778/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0778/en.drs.clf
%%% How slow you are !
% How [0...3]
b1 REF s1 % slow [4...8]
b1 Attribute "hearer" s1 % slow [4...8]
b1 slow "a.03" s1 % slow [4...8]
% you [9...12]
b1 REF t1 % are [13...16]
b1 EQU t1 "now" % are [13...16]
b1 Time s1 t1 % are [13...16]
b1 time "n.08" t1 % are [13...16]
% ! [16...17]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0780/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0780/en.drs.clf
%%% The astronauts went up to the moon in a rocket .
b1 REF x1 % The [0...3]
b1 REF x2 % astronauts [4...14]
b1 PRESUPPOSITION b2 % astronauts [4...14]
b1 Role x1 x2 % astronauts [4...14]
b1 astronaut "n.01" x2 % astronauts [4...14]
b1 person "n.01" x1 % astronauts [4...14]
b2 REF e1 % went [15...19]
b2 REF t1 % went [15...19]
b2 TPR t1 "now" % went [15...19]
b2 Theme e1 x1 % went [15...19]
b2 Time e1 t1 % went [15...19]
b2 go_up "v.07" e1 % went [15...19]
b2 time "n.08" t1 % went [15...19]
% up [20...22]
b2 Destination e1 x3 % to [23...25]
b3 REF x3 % the [26...29]
b3 PRESUPPOSITION b2 % the [26...29]
b3 moon "n.01" x3 % moon [30...34]
b2 Instrument e1 x4 % in [35...37]
b2 REF x4 % a [38...39]
b2 rocket "n.01" x4 % rocket [40...46]
% . [46...47]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0781/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0781/en.drs.clf
%%% We stood at the door and waited .
% We [0...2]
b1 REF e1 % stood [3...8]
b1 Theme e1 "speaker" % stood [3...8]
b1 Time e1 t1 % stood [3...8]
b1 stand "v.03" e1 % stood [3...8]
b1 REF t1 % stood [3...8] waited [25...31]
b1 TPR t1 "now" % stood [3...8] waited [25...31]
b1 time "n.08" t1 % stood [3...8] waited [25...31]
b1 Location e1 x1 % at [9...11]
b2 REF x1 % the [12...15]
b2 PRESUPPOSITION b1 % the [12...15]
b2 door "n.01" x1 % door [16...20]
b1 CONTINUATION b3 % and [21...24]
b3 REF e2 % waited [25...31]
b3 Theme e2 "speaker" % waited [25...31]
b3 Time e2 t1 % waited [25...31]
b3 wait "v.01" e2 % waited [25...31]
% . [31...32]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0784/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0784/en.drs.clf
%%% ø Bob is popular at ø school .
b1 REF x1 % Bob [0...3]
b1 Name x1 "bob" % Bob [0...3]
b1 PRESUPPOSITION b2 % Bob [0...3]
b1 male "n.02" x1 % Bob [0...3]
b2 REF t1 % is [4...6]
b2 EQU t1 "now" % is [4...6]
b2 Time s1 t1 % is [4...6]
b2 time "n.08" t1 % is [4...6]
b2 REF s1 % popular [7...14]
b2 Stimulus s1 x1 % popular [7...14]
b2 popular "a.01" s1 % popular [7...14]
b2 Context s1 x2 % at [15...17]
b2 REF x2 % school [18...24]
b2 school "n.06" x2 % school [18...24]
% . [24...25]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0785/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0785/en.drs.clf
%%% ø Bill was killed by an intruder .
b1 REF x1 % Bill [0...4]
b1 Name x1 "bill" % Bill [0...4]
b1 PRESUPPOSITION b2 % Bill [0...4]
b1 male "n.02" x1 % Bill [0...4]
b2 REF t1 % was [5...8]
b2 TPR t1 "now" % was [5...8]
b2 Time e1 t1 % was [5...8]
b2 time "n.08" t1 % was [5...8]
b2 REF e1 % killed [9...15]
b2 Patient e1 x1 % killed [9...15]
b2 kill "v.01" e1 % killed [9...15]
b2 Agent e1 x2 % by [16...18]
b2 REF x2 % an [19...21]
b2 REF x3 % intruder [22...30]
b2 Role x2 x3 % intruder [22...30]
b2 intruder "n.01" x3 % intruder [22...30]
b2 person "n.01" x2 % intruder [22...30]
% . [30...31]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0798/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0798/en.drs.clf
%%% It took me ø two hours to memorize this sentence .
% It [0...2]
b1 REF t1 % took [3...7]
b1 Duration e1 x1 % took [3...7]
b1 TPR t1 "now" % took [3...7]
b1 Time e1 t1 % took [3...7]
b1 time "n.08" t1 % took [3...7]
% me [8...10]
b1 REF x1 % two [11...14]
b1 Quantity x1 "2" % two [11...14]
b1 Unit x1 "hour" % hours [15...20]
b1 measure "n.02" x1 % hours [15...20]
% to [21...23]
b1 REF e1 % memorize [24...32]
b1 Agent e1 "speaker" % memorize [24...32]
b1 Topic e1 x2 % memorize [24...32]
b1 memorize "v.01" e1 % memorize [24...32]
b2 REF x2 % this [33...37]
b2 PRESUPPOSITION b1 % this [33...37]
b2 sentence "n.01" x2 % sentence [38...46]
% . [46...47]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0801/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0801/en.drs.clf
%%% I 'm calling because I 've lost my credit~card .
% I [0...1]
b1 REF t1 % 'm [1...3]
b1 EQU t1 "now" % 'm [1...3]
b1 Time e1 t1 % 'm [1...3]
b1 time "n.08" t1 % 'm [1...3]
b1 REF e1 % calling [4...11]
b1 Agent e1 "speaker" % calling [4...11]
b1 call "v.03" e1 % calling [4...11]
b1 EXPLANATION b3 % because [12...19]
% I [20...21]
% 've [21...24]
b1 REF t2 % lost [25...29]
b1 TPR t2 "now" % lost [25...29]
b1 time "n.08" t2 % lost [25...29]
b3 REF e2 % lost [25...29]
b3 Agent e2 "speaker" % lost [25...29]
b3 Theme e2 x1 % lost [25...29]
b3 Time e2 t2 % lost [25...29]
b3 lose "v.05" e2 % lost [25...29]
b2 REF x1 % my [30...32]
b2 PRESUPPOSITION b3 % my [30...32]
b2 User x1 "speaker" % my [30...32]
b2 credit_card "n.01" x1 % credit~card [33...44]
% . [44...45]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0802/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0802/en.drs.clf
%%% Let 's have ø sushi .
b1 REF t1 % Let [0...3]
b1 TPR "now" t1 % Let [0...3]
b1 Time e1 t1 % Let [0...3]
b1 time "n.08" t1 % Let [0...3]
% 's [3...5]
b1 REF e1 % have [6...10]
b1 Agent e1 "speaker" % have [6...10]
b1 Patient e1 x1 % have [6...10]
b1 have "v.06" e1 % have [6...10]
b1 REF x1 % sushi [11...16]
b1 sushi "n.01" x1 % sushi [11...16]
% . [16...17]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0809/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0809/en.drs.clf
%%% The dog attacked the little boy .
b1 REF x1 % The [0...3]
b1 PRESUPPOSITION b3 % The [0...3]
b1 dog "n.01" x1 % dog [4...7]
b3 REF e1 % attacked [8...16]
b3 REF t1 % attacked [8...16]
b3 Agent e1 x1 % attacked [8...16]
b3 Patient e1 x2 % attacked [8...16]
b3 TPR t1 "now" % attacked [8...16]
b3 Time e1 t1 % attacked [8...16]
b3 attack "v.04" e1 % attacked [8...16]
b3 time "n.08" t1 % attacked [8...16]
b2 REF x2 % the [17...20]
b2 REF s1 % little [21...27]
b2 Attribute x2 s1 % little [21...27]
b2 PRESUPPOSITION b3 % little [21...27]
b2 little "a.03" s1 % little [21...27]
b2 boy "n.01" x2 % boy [28...31]
% . [31...32]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0810/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0810/en.drs.clf
%%% Think about it .
b1 REF e1 % Think [0...5]
b1 Agent e1 "hearer" % Think [0...5]
b1 think "v.03" e1 % Think [0...5]
b1 Theme e1 x1 % about [6...11]
b2 REF x1 % it [12...14]
b2 PRESUPPOSITION b1 % it [12...14]
b2 entity "n.01" x1 % it [12...14]
% . [14...15]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0818/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0818/en.drs.clf
%%% I like the actor .
% I [0...1]
b2 REF e1 % like [2...6]
b2 REF t1 % like [2...6]
b2 EQU t1 "now" % like [2...6]
b2 Experiencer e1 "speaker" % like [2...6]
b2 Stimulus e1 x1 % like [2...6]
b2 Time e1 t1 % like [2...6]
b2 like "v.03" e1 % like [2...6]
b2 time "n.08" t1 % like [2...6]
b1 REF x1 % the [7...10]
b1 REF x2 % actor [11...16]
b1 PRESUPPOSITION b2 % actor [11...16]
b1 Role x1 x2 % actor [11...16]
b1 actor "n.01" x2 % actor [11...16]
b1 person "n.01" x1 % actor [11...16]
% . [16...17]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0819/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0819/en.drs.clf
%%% I gave it to my mommy .
% I [0...1]
b2 REF e1 % gave [2...6]
b2 REF t1 % gave [2...6]
b2 Agent e1 "speaker" % gave [2...6]
b2 TPR t1 "now" % gave [2...6]
b2 Theme e1 x1 % gave [2...6]
b2 Time e1 t1 % gave [2...6]
b2 give "v.03" e1 % gave [2...6]
b2 time "n.08" t1 % gave [2...6]
b1 REF x1 % it [7...9]
b1 PRESUPPOSITION b2 % it [7...9]
b1 entity "n.01" x1 % it [7...9]
b2 Recipient e1 x2 % to [10...12]
b3 REF x2 % my [13...15]
b3 Of x3 "speaker" % my [13...15]
b3 REF x3 % mommy [16...21]
b3 PRESUPPOSITION b2 % mommy [16...21]
b3 Role x2 x3 % mommy [16...21]
b3 mommy "n.01" x3 % mommy [16...21]
b3 person "n.01" x2 % mommy [16...21]
% . [21...22]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0824/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0824/en.drs.clf
%%% I bought a few eggs and a little milk .
% I [0...1]
b1 REF e1 % bought [2...8]
b1 REF t1 % bought [2...8]
b1 Agent e1 "speaker" % bought [2...8]
b1 TPR t1 "now" % bought [2...8]
b1 Theme e1 x1 % bought [2...8]
b1 Time e1 t1 % bought [2...8]
b1 buy "v.01" e1 % bought [2...8]
b1 time "n.08" t1 % bought [2...8]
b1 REF x2 % a [9...10]
b1 Quantity x2 "-" % few [11...14]
b1 egg "n.02" x2 % eggs [15...19]
b1 REF x1 % and [20...23]
b1 Sub x1 x2 % and [20...23]
b1 Sub x1 x3 % and [20...23]
b1 entity "n.01" x1 % and [20...23]
b1 REF x3 % a [24...25]
b1 Quantity x3 "-" % little [26...32]
b1 milk "n.01" x3 % milk [33...37]
% . [37...38]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0826/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0826/en.drs.clf
%%% My uncle bought me this book .
b1 REF x1 % My [0...2]
b1 Of x2 "speaker" % My [0...2]
b1 REF x2 % uncle [3...8]
b1 PRESUPPOSITION b3 % uncle [3...8]
b1 Role x1 x2 % uncle [3...8]
b1 person "n.01" x1 % uncle [3...8]
b1 uncle "n.01" x2 % uncle [3...8]
b3 REF e1 % bought [9...15]
b3 REF t1 % bought [9...15]
b3 Agent e1 x1 % bought [9...15]
b3 Beneficiary e1 "speaker" % bought [9...15]
b3 TPR t1 "now" % bought [9...15]
b3 Theme e1 x3 % bought [9...15]
b3 Time e1 t1 % bought [9...15]
b3 buy "v.01" e1 % bought [9...15]
b3 time "n.08" t1 % bought [9...15]
% me [16...18]
b2 REF x3 % this [19...23]
b2 PRESUPPOSITION b3 % this [19...23]
b2 book "n.02" x3 % book [24...28]
% . [28...29]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0827/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0827/en.drs.clf
%%% I 'll buy a new one .
% I [0...1]
b1 REF t1 % 'll [1...4]
b1 TPR "now" t1 % 'll [1...4]
b1 Time e1 t1 % 'll [1...4]
b1 time "n.08" t1 % 'll [1...4]
b1 REF e1 % buy [5...8]
b1 Agent e1 "speaker" % buy [5...8]
b1 Theme e1 x1 % buy [5...8]
b1 buy "v.01" e1 % buy [5...8]
b1 REF x1 % a [9...10]
b1 REF s1 % new [11...14]
b1 Attribute x1 s1 % new [11...14]
b1 new "a.05" s1 % new [11...14]
b1 one "n.02" x1 % one [15...18]
% . [18...19]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0828/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0828/en.drs.clf
%%% It 's nice .
b1 REF x1 % It [0...2]
b1 PRESUPPOSITION b2 % It [0...2]
b1 entity "n.01" x1 % It [0...2]
b2 REF t1 % 's [2...4]
b2 EQU t1 "now" % 's [2...4]
b2 Time s1 t1 % 's [2...4]
b2 time "n.08" t1 % 's [2...4]
b2 REF s1 % nice [5...9]
b2 Attribute x1 s1 % nice [5...9]
b2 nice "a.01" s1 % nice [5...9]
% . [9...10]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0835/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0835/en.drs.clf
%%% His brother was nasty to me .
b1 REF x1 % His [0...3]
b1 PRESUPPOSITION b2 % His [0...3]
b1 male "n.02" x1 % His [0...3]
b2 REF x2 % His [0...3]
b2 Of x3 x1 % His [0...3]
b2 REF x3 % brother [4...11]
b2 PRESUPPOSITION b3 % brother [4...11]
b2 Role x2 x3 % brother [4...11]
b2 brother "n.01" x3 % brother [4...11]
b2 person "n.01" x2 % brother [4...11]
b3 REF t1 % was [12...15]
b3 TPR t1 "now" % was [12...15]
b3 Time s1 t1 % was [12...15]
b3 time "n.08" t1 % was [12...15]
b3 REF s1 % nasty [16...21]
b3 Stimulus s1 x2 % nasty [16...21]
b3 nasty "a.01" s1 % nasty [16...21]
b3 Experiencer s1 "speaker" % to [22...24]
% me [25...27]
% . [27...28]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0836/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0836/en.drs.clf
%%% He 's not like us .
b1 REF x1 % He [0...2]
b1 PRESUPPOSITION b2 % He [0...2]
b1 male "n.02" x1 % He [0...2]
b2 REF t1 % 's [2...4]
b2 EQU t1 "now" % 's [2...4]
b2 time "n.08" t1 % 's [2...4]
b3 Time s1 t1 % 's [2...4]
b2 NEGATION b3 % not [5...8]
b3 REF s1 % like [9...13]
b3 Co-Theme s1 "speaker" % like [9...13]
b3 Theme s1 x1 % like [9...13]
b3 like "a.01" s1 % like [9...13]
% us [14...16]
% . [16...17]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0839/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0839/en.drs.clf
%%% He can swim .
b2 REF x1 % He [0...2]
b2 PRESUPPOSITION b3 % He [0...2]
b2 male "n.02" x1 % He [0...2]
b1 POSSIBILITY b3 % can [3...6]
b3 REF e1 % swim [7...11]
b3 Theme e1 x1 % swim [7...11]
b3 swim "v.01" e1 % swim [7...11]
% . [11...12]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0849/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0849/en.drs.clf
%%% She waved ø good-bye to me .
b1 REF x1 % She [0...3]
b1 PRESUPPOSITION b2 % She [0...3]
b1 female "n.02" x1 % She [0...3]
b2 REF e1 % waved [4...9]
b2 REF t1 % waved [4...9]
b2 Agent e1 x1 % waved [4...9]
b2 TPR t1 "now" % waved [4...9]
b2 Theme e1 x2 % waved [4...9]
b2 Time e1 t1 % waved [4...9]
b2 time "n.08" t1 % waved [4...9]
b2 wave "v.01" e1 % waved [4...9]
b2 REF x2 % good-bye [10...18]
b2 good-bye "n.01" x2 % good-bye [10...18]
b2 Recipient e1 "speaker" % to [19...21]
% me [22...24]
% . [24...25]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0850/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0850/en.drs.clf
%%% She used to play ø tennis every Sunday .
b3 REF x1 % She [0...3]
b3 PRESUPPOSITION b4 % She [0...3]
b3 female "n.02" x1 % She [0...3]
b2 TPR t1 "now" % used [4...8]
b2 REF t1 % used [4...8] every [24...29]
b4 Time e1 t1 % used [4...8] every [24...29]
b2 time "n.08" t1 % used [4...8] Sunday [30...36]
% to [9...11]
b4 REF e1 % play [12...16]
b4 Agent e1 x1 % play [12...16]
b4 Theme e1 x2 % play [12...16]
b4 play "v.01" e1 % play [12...16]
b4 REF x2 % tennis [17...23]
b4 tennis "n.01" x2 % tennis [17...23]
b1 CONDITION b2 % every [24...29]
b2 CONSEQUENCE b4 % every [24...29]
b2 DayOfWeek t1 "sunday" % Sunday [30...36]
% . [36...37]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0852/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0852/en.drs.clf
%%% ø Oil has been discovered under the North~Sea .
b1 REF x1 % Oil [0...3]
b1 oil "n.03" x1 % Oil [0...3]
% has [4...7]
b1 REF t1 % been [8...12]
b1 TPR t1 "now" % been [8...12]
b1 Time e1 t1 % been [8...12]
b1 time "n.08" t1 % been [8...12]
b1 REF e1 % discovered [13...23]
b1 Theme e1 x1 % discovered [13...23]
b1 discover "v.03" e1 % discovered [13...23]
b1 REF x3 % under [24...29]
b1 Location e1 x3 % under [24...29]
b1 SZP x2 x3 % under [24...29]
b1 location "n.01" x3 % under [24...29]
b2 REF x2 % the [30...33]
b2 PRESUPPOSITION b1 % the [30...33]
b2 Name x2 "north~sea" % North~Sea [34...43]
b2 sea "n.01" x2 % North~Sea [34...43]
% . [43...44]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0856/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0856/en.drs.clf
%%% Who is he ?
b1 REF x1 % Who [0...3]
b1 Name x1 "?" % Who [0...3]
b1 person "n.01" x1 % Who [0...3]
b1 REF e1 % is [4...6]
b1 REF t1 % is [4...6]
b1 Co-Theme e1 x1 % is [4...6]
b1 EQU t1 "now" % is [4...6]
b1 Theme e1 x2 % is [4...6]
b1 Time e1 t1 % is [4...6]
b1 be "v.02" e1 % is [4...6]
b1 time "n.08" t1 % is [4...6]
b2 REF x2 % he [7...9]
b2 PRESUPPOSITION b1 % he [7...9]
b2 male "n.02" x2 % he [7...9]
% ? [9...10]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0858/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0858/en.drs.clf
%%% I do n't remember your name .
% I [0...1]
b1 REF t1 % do [2...4]
b1 EQU t1 "now" % do [2...4]
b1 time "n.08" t1 % do [2...4]
b3 Time e1 t1 % do [2...4]
b1 NEGATION b3 % n't [4...7]
b3 REF e1 % remember [8...16]
b3 Agent e1 "speaker" % remember [8...16]
b3 Theme e1 x1 % remember [8...16]
b3 remember "v.01" e1 % remember [8...16]
b2 REF x1 % your [17...21]
b2 Bearer x1 "hearer" % your [17...21]
b2 PRESUPPOSITION b3 % your [17...21]
b2 name "n.01" x1 % name [22...26]
% . [26...27]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0865/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0865/en.drs.clf
%%% I threw up .
% I [0...1]
b1 REF e1 % threw [2...7]
b1 REF t1 % threw [2...7]
b1 Agent e1 "speaker" % threw [2...7]
b1 TPR t1 "now" % threw [2...7]
b1 Time e1 t1 % threw [2...7]
b1 throw_up "v.01" e1 % threw [2...7]
b1 time "n.08" t1 % threw [2...7]
% up [8...10]
% . [10...11]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0867/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0867/en.drs.clf
%%% I want to pay with a check .
% I [0...1]
b1 REF e1 % want [2...6]
b1 REF p1 % want [2...6]
b1 REF t1 % want [2...6]
b1 ATTRIBUTION b2 % want [2...6]
b1 EQU t1 "now" % want [2...6]
b1 Pivot e1 "speaker" % want [2...6]
b1 Theme e1 p1 % want [2...6]
b1 Time e1 t1 % want [2...6]
b1 proposition "n.01" p1 % want [2...6]
b1 time "n.08" t1 % want [2...6]
b1 want "v.01" e1 % want [2...6]
% to [7...9]
b2 REF e2 % pay [10...13]
b2 Agent e2 "speaker" % pay [10...13]
b2 pay "v.01" e2 % pay [10...13]
b2 Instrument e2 x1 % with [14...18]
b2 REF x1 % a [19...20]
b2 check "n.01" x1 % check [21...26]
% . [26...27]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0869/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0869/en.drs.clf
%%% The customer is always right .
b3 REF x1 % The [0...3]
b3 REF x2 % customer [4...12]
b3 PRESUPPOSITION b4 % customer [4...12]
b3 Role x1 x2 % customer [4...12]
b3 customer "n.01" x2 % customer [4...12]
b3 person "n.01" x1 % customer [4...12]
b2 EQU t1 "now" % is [13...15]
b4 Time s1 t1 % is [13...15]
b2 REF t1 % is [13...15] always [16...22]
b2 time "n.08" t1 % is [13...15] always [16...22]
b1 CONDITION b2 % always [16...22]
b2 CONSEQUENCE b4 % always [16...22]
b4 REF s1 % right [23...28]
b4 Attribute x1 s1 % right [23...28]
b4 right "a.02" s1 % right [23...28]
% . [28...29]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0874/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0874/en.drs.clf
%%% One plus two is equal to three .
% One [0...3]
b1 REF x1 % plus [4...8]
b1 Co-Theme x1 "2" % plus [4...8]
b1 Theme x1 "1" % plus [4...8]
b1 plus "n.02" x1 % plus [4...8]
% two [9...12]
% is [13...15]
b1 REF s1 % equal [16...21]
b1 Theme s1 x1 % equal [16...21]
b1 equal "a.01" s1 % equal [16...21]
b1 Co-Theme s1 "3" % to [22...24]
% three [25...30]
% . [30...31]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0881/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0881/en.drs.clf
%%% ø Nice suit .
b1 REF e1 %
b1 Participant e1 x1 %
b1 event "v.01" e1 %
b1 REF s1 % Nice [0...4]
b1 REF x1 % Nice [0...4]
b1 Attribute x1 s1 % Nice [0...4]
b1 nice "a.01" s1 % Nice [0...4]
b1 suit "n.01" x1 % suit [5...9]
% . [9...10]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0888/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0888/en.drs.clf
%%% The book is big .
b1 REF x1 % The [0...3]
b1 PRESUPPOSITION b2 % The [0...3]
b1 book "n.02" x1 % book [4...8]
b2 REF t1 % is [9...11]
b2 EQU t1 "now" % is [9...11]
b2 Time s1 t1 % is [9...11]
b2 time "n.08" t1 % is [9...11]
b2 REF s1 % big [12...15]
b2 Attribute x1 s1 % big [12...15]
b2 Value s1 "+" % big [12...15]
b2 big "a.01" s1 % big [12...15]
% . [15...16]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0889/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0889/en.drs.clf
%%% I have to hurry !
% I [0...1]
b1 NECESSITY b2 % have [2...6]
% to [7...9]
b2 REF e1 % hurry [10...15]
b2 Theme e1 "speaker" % hurry [10...15]
b2 hurry "v.01" e1 % hurry [10...15]
% ! [15...16]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0892/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0892/en.drs.clf
%%% This is the woman whose cars were stolen .
b1 REF x1 % This [0...4]
b1 PRESUPPOSITION b2 % This [0...4]
b1 entity "n.01" x1 % This [0...4]
b2 REF e2 % is [5...7]
b2 REF t2 % is [5...7]
b2 Co-Theme e2 x2 % is [5...7]
b2 EQU t2 "now" % is [5...7]
b2 Theme e2 x1 % is [5...7]
b2 Time e2 t2 % is [5...7]
b2 be "v.02" e2 % is [5...7]
b2 time "n.08" t2 % is [5...7]
b2 REF x2 % the [8...11]
b2 woman "n.01" x2 % woman [12...17]
b2 REF x3 % whose [18...23]
b2 Owner x3 x2 % whose [18...23]
b2 car "n.01" x3 % cars [24...28]
b2 REF t1 % were [29...33]
b2 TPR t1 "now" % were [29...33]
b2 Time e1 t1 % were [29...33]
b2 time "n.08" t1 % were [29...33]
b2 REF e1 % stolen [34...40]
b2 Theme e1 x3 % stolen [34...40]
b2 steal "v.01" e1 % stolen [34...40]
% . [40...41]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0895/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0895/en.drs.clf
%%% Where are the parking~metres ?
b2 REF x2 % Where [0...5]
b2 EQU x2 "?" % Where [0...5]
b2 Location e1 x2 % Where [0...5]
b2 location "n.01" x2 % Where [0...5]
b2 REF e1 % are [6...9]
b2 REF t1 % are [6...9]
b2 EQU t1 "now" % are [6...9]
b2 Theme e1 x1 % are [6...9]
b2 Time e1 t1 % are [6...9]
b2 be "v.03" e1 % are [6...9]
b2 time "n.08" t1 % are [6...9]
b1 REF x1 % the [10...13]
b1 PRESUPPOSITION b2 % the [10...13]
b1 parking_meter "n.01" x1 % parking~metres [14...28]
% ? [28...29]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0896/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0896/en.drs.clf
%%% He is opening the window .
b1 REF x1 % He [0...2]
b1 PRESUPPOSITION b3 % He [0...2]
b1 male "n.02" x1 % He [0...2]
b3 REF t1 % is [3...5]
b3 EQU t1 "now" % is [3...5]
b3 Time e1 t1 % is [3...5]
b3 time "n.08" t1 % is [3...5]
b3 REF e1 % opening [6...13]
b3 Agent e1 x1 % opening [6...13]
b3 Patient e1 x2 % opening [6...13]
b3 open "v.01" e1 % opening [6...13]
b2 REF x2 % the [14...17]
b2 PRESUPPOSITION b3 % the [14...17]
b2 window "n.01" x2 % window [18...24]
% . [24...25]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0907/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0907/en.drs.clf
%%% My parents come from ø China .
b1 REF x1 % My [0...2]
b1 Of x2 "speaker" % My [0...2]
b1 REF x2 % parents [3...10]
b1 PRESUPPOSITION b2 % parents [3...10]
b1 Role x1 x2 % parents [3...10]
b1 parent "n.01" x2 % parents [3...10]
b1 person "n.01" x1 % parents [3...10]
b2 REF e1 % come [11...15]
b2 REF t1 % come [11...15]
b2 EQU t1 "now" % come [11...15]
b2 Theme e1 x1 % come [11...15]
b2 Time e1 t1 % come [11...15]
b2 come "v.08" e1 % come [11...15]
b2 time "n.08" t1 % come [11...15]
b2 Location e1 x3 % from [16...20]
b3 REF x3 % China [21...26]
b3 Name x3 "china" % China [21...26]
b3 PRESUPPOSITION b2 % China [21...26]
b3 country "n.02" x3 % China [21...26]
% . [26...27]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0908/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0908/en.drs.clf
%%% I won the gold~medal .
% I [0...1]
b2 REF e1 % won [2...5]
b2 REF t1 % won [2...5]
b2 Agent e1 "speaker" % won [2...5]
b2 TPR t1 "now" % won [2...5]
b2 Theme e1 x1 % won [2...5]
b2 Time e1 t1 % won [2...5]
b2 time "n.08" t1 % won [2...5]
b2 win "v.01" e1 % won [2...5]
b1 REF x1 % the [6...9]
b1 PRESUPPOSITION b2 % the [6...9]
b1 gold_medal "n.01" x1 % gold~medal [10...20]
% . [20...21]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0910/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0910/en.drs.clf
%%% What a beautiful rainbow !
b1 REF e1 % What [0...4]
b1 Co-Theme e1 x1 % What [0...4]
b1 Theme e1 x2 % What [0...4]
b1 be "v.01" e1 % What [0...4]
b2 REF x2 % What [0...4]
b2 PRESUPPOSITION b1 % What [0...4]
b2 entity "n.01" x2 % What [0...4]
b1 REF x1 % a [5...6]
b1 REF s1 % beautiful [7...16]
b1 Attribute x1 s1 % beautiful [7...16]
b1 beautiful "a.01" s1 % beautiful [7...16]
b1 rainbow "n.01" x1 % rainbow [17...24]
% ! [24...25]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0913/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0913/en.drs.clf
%%% The garden was full of ø beautiful yellow flowers .
b1 REF x1 % The [0...3]
b1 PRESUPPOSITION b2 % The [0...3]
b1 garden "n.01" x1 % garden [4...10]
b2 REF t1 % was [11...14]
b2 TPR t1 "now" % was [11...14]
b2 Time s1 t1 % was [11...14]
b2 time "n.08" t1 % was [11...14]
b2 REF s1 % full [15...19]
b2 Attribute x1 s1 % full [15...19]
b2 full "a.01" s1 % full [15...19]
b2 Theme s1 x2 % of [20...22]
b2 REF s2 % beautiful [23...32]
b2 REF x2 % beautiful [23...32]
b2 Attribute x2 s2 % beautiful [23...32]
b2 beautiful "a.01" s2 % beautiful [23...32]
b2 REF s3 % yellow [33...39]
b2 Colour x2 s3 % yellow [33...39]
b2 yellow "a.01" s3 % yellow [33...39]
b2 flower "n.01" x2 % flowers [40...47]
% . [47...48]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0914/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0914/en.drs.clf
%%% She is the Prime~Minister of ø Finland .
b1 REF x1 % She [0...3]
b1 PRESUPPOSITION b2 % She [0...3]
b1 female "n.02" x1 % She [0...3]
b2 REF e1 % is [4...6]
b2 REF t1 % is [4...6]
b2 Co-Theme e1 x2 % is [4...6]
b2 EQU t1 "now" % is [4...6]
b2 Theme e1 x1 % is [4...6]
b2 Time e1 t1 % is [4...6]
b2 be "v.02" e1 % is [4...6]
b2 time "n.08" t1 % is [4...6]
b2 REF x2 % the [7...10]
b2 REF x3 % Prime~Minister [11...25]
b2 Role x2 x3 % Prime~Minister [11...25]
b2 person "n.01" x2 % Prime~Minister [11...25]
b2 prime_minister "n.01" x3 % Prime~Minister [11...25]
b2 Of x3 x4 % of [26...28]
b3 REF x4 % Finland [29...36]
b3 Name x4 "finland" % Finland [29...36]
b3 PRESUPPOSITION b2 % Finland [29...36]
b3 state "n.04" x4 % Finland [29...36]
% . [36...37]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0916/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0916/en.drs.clf
%%% My mother told me to mow the lawn .
b1 REF x1 % My [0...2]
b1 Of x2 "speaker" % My [0...2]
b1 REF x2 % mother [3...9]
b1 PRESUPPOSITION b2 % mother [3...9]
b1 Role x1 x2 % mother [3...9]
b1 mother "n.01" x2 % mother [3...9]
b1 person "n.01" x1 % mother [3...9]
b2 REF e1 % told [10...14]
b2 REF p1 % told [10...14]
b2 REF t1 % told [10...14]
b2 ATTRIBUTION b4 % told [10...14]
b2 Agent e1 x1 % told [10...14]
b2 Recipient e1 "speaker" % told [10...14]
b2 TPR t1 "now" % told [10...14]
b2 Time e1 t1 % told [10...14]
b2 Topic e1 p1 % told [10...14]
b2 proposition "n.01" p1 % told [10...14]
b2 tell "v.04" e1 % told [10...14]
b2 time "n.08" t1 % told [10...14]
% me [15...17]
% to [18...20]
b4 REF e2 % mow [21...24]
b4 Agent e2 "speaker" % mow [21...24]
b4 Patient e2 x3 % mow [21...24]
b4 mow "v.01" e2 % mow [21...24]
b3 REF x3 % the [25...28]
b3 PRESUPPOSITION b4 % the [25...28]
b3 lawn "n.01" x3 % lawn [29...33]
% . [33...34]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0927/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0927/en.drs.clf
%%% ø Tom used a toothpick .
b1 REF x1 % Tom [0...3]
b1 Name x1 "tom" % Tom [0...3]
b1 PRESUPPOSITION b2 % Tom [0...3]
b1 male "n.02" x1 % Tom [0...3]
b2 REF e1 % used [4...8]
b2 REF t1 % used [4...8]
b2 Agent e1 x1 % used [4...8]
b2 TPR t1 "now" % used [4...8]
b2 Theme e1 x2 % used [4...8]
b2 Time e1 t1 % used [4...8]
b2 time "n.08" t1 % used [4...8]
b2 use "v.01" e1 % used [4...8]
b2 REF x2 % a [9...10]
b2 toothpick "n.01" x2 % toothpick [11...20]
% . [20...21]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0931/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0931/en.drs.clf
%%% I love ø Natasha .
% I [0...1]
b2 REF e1 % love [2...6]
b2 REF t1 % love [2...6]
b2 EQU t1 "now" % love [2...6]
b2 Experiencer e1 "speaker" % love [2...6]
b2 Stimulus e1 x1 % love [2...6]
b2 Time e1 t1 % love [2...6]
b2 love "v.01" e1 % love [2...6]
b2 time "n.08" t1 % love [2...6]
b1 REF x1 % Natasha [7...14]
b1 Name x1 "natasha" % Natasha [7...14]
b1 PRESUPPOSITION b2 % Natasha [7...14]
b1 female "n.02" x1 % Natasha [7...14]
% . [14...15]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0935/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0935/en.drs.clf
%%% This is nonsense .
b1 REF x1 % This [0...4]
b1 PRESUPPOSITION b2 % This [0...4]
b1 entity "n.01" x1 % This [0...4]
b2 REF t1 % is [5...7]
b2 EQU t1 "now" % is [5...7]
b2 Time s1 t1 % is [5...7]
b2 time "n.08" t1 % is [5...7]
b2 REF s1 % nonsense [8...16]
b2 Attribute x1 s1 % nonsense [8...16]
b2 nonsense "a.01" s1 % nonsense [8...16]
% . [16...17]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0942/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0942/en.drs.clf
%%% I do n't want ø pizza . I 'm not hungry .
% I [0...1]
b2 REF t1 % do [2...4]
b2 EQU t1 "now" % do [2...4]
b2 Time e1 t1 % do [2...4]
b2 time "n.08" t1 % do [2...4]
b1 NEGATION b2 % n't [4...7]
b2 REF e1 % want [8...12]
b2 Pivot e1 "speaker" % want [8...12]
b2 Theme e1 x1 % want [8...12]
b2 want "v.01" e1 % want [8...12]
b2 REF x1 % pizza [13...18]
b2 pizza "n.01" x1 % pizza [13...18]
% . [18...19]
b2 CONTINUATION b3 %
% I [20...21]
b3 REF t2 % 'm [21...23]
b3 EQU t2 "now" % 'm [21...23]
b3 time "n.08" t2 % 'm [21...23]
b4 Time s1 t2 % 'm [21...23]
b3 NEGATION b4 % not [24...27]
b4 REF s1 % hungry [28...34]
b4 Experiencer s1 "speaker" % hungry [28...34]
b4 hungry "a.01" s1 % hungry [28...34]
% . [34...35]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0952/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0952/en.drs.clf
%%% I lost my key .
% I [0...1]
b2 REF e1 % lost [2...6]
b2 REF t1 % lost [2...6]
b2 Agent e1 "speaker" % lost [2...6]
b2 TPR t1 "now" % lost [2...6]
b2 Theme e1 x1 % lost [2...6]
b2 Time e1 t1 % lost [2...6]
b2 lose "v.04" e1 % lost [2...6]
b2 time "n.08" t1 % lost [2...6]
b1 REF x1 % my [7...9]
b1 PRESUPPOSITION b2 % my [7...9]
b1 User x1 "speaker" % my [7...9]
b1 key "n.01" x1 % key [10...13]
% . [13...14]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d0959/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d0959/en.drs.clf
%%% I 'm sleepy !
% I [0...1]
b1 REF t1 % 'm [1...3]
b1 EQU t1 "now" % 'm [1...3]
b1 Time s1 t1 % 'm [1...3]
b1 time "n.08" t1 % 'm [1...3]
b1 REF s1 % sleepy [4...10]
b1 Attribute "speaker" s1 % sleepy [4...10]
b1 sleepy "a.01" s1 % sleepy [4...10]
% ! [10...11]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d1398/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d1398/en.drs.clf
%%% I 'm bored right now .
% I [0...1]
b1 REF t1 % 'm [1...3] now [16...19]
b1 EQU t1 "now" % 'm [1...3] now [16...19]
b1 Time s1 t1 % 'm [1...3] now [16...19]
b1 time "n.08" t1 % 'm [1...3] now [16...19]
b1 REF s1 % bored [4...9]
b1 Experiencer s1 "speaker" % bored [4...9]
b1 bored "a.02" s1 % bored [4...9]
% right [10...15]
% . [19...20]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d1424/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d1424/en.drs.clf
%%% They were satisfied .
b1 REF x1 % They [0...4]
b1 PRESUPPOSITION b2 % They [0...4]
b1 person "n.01" x1 % They [0...4]
b2 REF t1 % were [5...9]
b2 TPR t1 "now" % were [5...9]
b2 Time s1 t1 % were [5...9]
b2 time "n.08" t1 % were [5...9]
b2 REF s1 % satisfied [10...19]
b2 Attribute x1 s1 % satisfied [10...19]
b2 satisfied "a.01" s1 % satisfied [10...19]
% . [19...20]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d1427/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d1427/en.drs.clf
%%% ø Tom shrugged his shoulders .
b1 REF x1 % his [13...16]
b1 PRESUPPOSITION b2 % his [13...16]
b1 Name x1 "tom" % Tom [0...3]
b1 male "n.02" x1 % Tom [0...3] his [13...16]
b3 REF e1 % shrugged [4...12]
b3 REF t1 % shrugged [4...12]
b3 Agent e1 x1 % shrugged [4...12]
b3 Patient e1 x2 % shrugged [4...12]
b3 TPR t1 "now" % shrugged [4...12]
b3 Time e1 t1 % shrugged [4...12]
b3 shrug "v.01" e1 % shrugged [4...12]
b3 time "n.08" t1 % shrugged [4...12]
b2 REF x2 % his [13...16]
b2 PRESUPPOSITION b3 % his [13...16]
b2 PartOf x2 x1 % his [13...16]
b2 shoulder "n.01" x2 % shoulders [17...26]
% . [26...27]
%%% This output was generated by the following command:
%%% bin/boxer --input out/p00/d1436/en.parse.tags --semantics drg --resolve --tense --instantiate --modal --theory sdrt --copula false --nn --elimeq --roles verbnet --integrate --warnings false --output out/p00/d1436/en.drs.clf
%%% ø Tom is a fakir .
b1 REF x1 % Tom [0...3]