-
Notifications
You must be signed in to change notification settings - Fork 1
/
prince_en_1_4_5.conllulex
3274 lines (3123 loc) · 236 KB
/
prince_en_1_4_5.conllulex
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
# newdoc id = lpp_1943
# sent_id = lpp_1943-1
# text = Chapter 1 .
# mwe = Chapter 1 .
1 Chapter Chapter PROPN NNP Number=Sing 0 root _ _ _ N Chapter _ _ _ _ _ O-N
2 1 1 NUM CD NumForm=Digit|NumType=Card 1 dep _ _ _ NUM 1 _ _ _ _ _ O-NUM
3 . . PUNCT . _ 1 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-2
# text = Once when I was six years old I saw a magnificent picture in a book , called True Stories from Nature , about the primeval forest .
# mwe = Once when I was six years old I saw a magnificent picture in a book , called True Stories from Nature , about the primeval forest .
1 Once once ADV RB NumType=Mult 7 advmod _ _ _ ADV once _ _ _ _ _ O-ADV
2 when when ADV WRB PronType=Int 7 advmod _ _ _ ADV when _ _ _ _ _ O-ADV
3 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 7 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
4 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 7 cop _ _ _ AUX be _ _ _ _ _ O-AUX
5 six six NUM CD NumForm=Word|NumType=Card 6 nummod _ _ _ NUM six _ _ _ _ _ O-NUM
6 years year NOUN NNS Number=Plur 7 obl:tmod _ _ _ N year _ _ _ _ _ O-N
7 old old ADJ JJ Degree=Pos 9 advcl _ _ _ ADJ old _ _ _ _ _ O-ADJ
8 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 9 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
9 saw see VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 0 root _ _ _ V see _ _ _ _ _ O-V
10 a a DET DT Definite=Ind|PronType=Art 12 det _ _ _ DET a _ _ _ _ _ O-DET
11 magnificent magnificent ADJ JJ Degree=Pos 12 amod _ _ _ ADJ magnificent _ _ _ _ _ O-ADJ
12 picture picture NOUN NN Number=Sing 9 obj _ _ _ N picture _ _ _ _ _ O-N
13 in in ADP IN _ 15 case _ _ _ P in p.Locus p.Locus _ _ _ O-P-p.Locus
14 a a DET DT Definite=Ind|PronType=Art 15 det _ _ _ DET a _ _ _ _ _ O-DET
15 book book NOUN NN Number=Sing 12 nmod _ _ _ N book _ _ _ _ _ O-N
16 , , PUNCT , _ 17 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
17 called call VERB VBN Tense=Past|VerbForm=Part 15 acl _ _ _ V call _ _ _ _ _ O-V
18 True true ADJ NNP Degree=Pos 19 amod _ _ _ ADJ true _ _ _ _ _ O-ADJ
19 Stories story PROPN NNPS Number=Plur 17 xcomp _ _ _ N story _ _ _ _ _ O-N
20 from from ADP IN _ 21 case _ _ _ P from p.Source p.Source _ _ _ O-P-p.Source
21 Nature Nature PROPN NNP Number=Sing 19 nmod _ _ _ N Nature _ _ _ _ _ O-N
22 , , PUNCT , _ 26 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
23 about about ADP IN _ 26 case _ _ _ P about p.Topic p.Topic _ _ _ O-P-p.Topic
24 the the DET DT Definite=Def|PronType=Art 26 det _ _ _ DET the _ _ _ _ _ O-DET
25 primeval primeval ADJ JJ Degree=Pos 26 amod _ _ _ ADJ primeval _ _ _ _ _ O-ADJ
26 forest forest NOUN NN Number=Sing 17 obl _ _ _ N forest _ _ _ _ _ O-N
27 . . PUNCT . _ 9 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-3
# text = It was a picture of a boa constrictor in the act of swallowing an animal .
# mwe = It was a picture of a boa constrictor in the act of swallowing an animal .
1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 nsubj _ _ _ PRON it _ _ _ _ _ O-PRON
2 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 4 cop _ _ _ AUX be _ _ _ _ _ O-AUX
3 a a DET DT Definite=Ind|PronType=Art 4 det _ _ _ DET a _ _ _ _ _ O-DET
4 picture picture NOUN NN Number=Sing 0 root _ _ _ N picture _ _ _ _ _ O-N
5 of of ADP IN _ 8 case _ _ _ P of p.Topic p.Topic _ _ _ O-P-p.Topic
6 a a DET DT Definite=Ind|PronType=Art 8 det _ _ _ DET a _ _ _ _ _ O-DET
7 boa boa NOUN NN Number=Sing 8 compound _ _ _ N boa _ _ _ _ _ O-N
8 constrictor constrictor NOUN NN Number=Sing 4 nmod _ _ _ N constrictor _ _ _ _ _ O-N
9 in in ADP IN _ 11 case _ _ _ P in p.Circumstance p.Circumstance _ _ _ O-P-p.Circumstance
10 the the DET DT Definite=Def|PronType=Art 11 det _ _ _ DET the _ _ _ _ _ O-DET
11 act act NOUN NN Number=Sing 8 nmod _ _ _ N act _ _ _ _ _ O-N
12 of of SCONJ IN _ 13 mark _ _ _ P of p.Identity p.Identity _ _ _ O-P-p.Identity
13 swallowing swallow VERB VBG VerbForm=Ger 11 acl _ _ _ V swallow _ _ _ _ _ O-V
14 an a DET DT Definite=Ind|PronType=Art 15 det _ _ _ DET a _ _ _ _ _ O-DET
15 animal animal NOUN NN Number=Sing 13 obj _ _ _ N animal _ _ _ _ _ O-N
16 . . PUNCT . _ 4 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-4
# text = Here is a copy of the drawing .
# mwe = Here is a copy of the drawing .
1 Here here ADV RB PronType=Dem 0 root _ _ _ ADV here _ _ _ _ _ O-ADV
2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 cop _ _ _ AUX be _ _ _ _ _ O-AUX
3 a a DET DT Definite=Ind|PronType=Art 4 det _ _ _ DET a _ _ _ _ _ O-DET
4 copy copy NOUN NN Number=Sing 1 nsubj _ _ _ N copy _ _ _ _ _ O-N
5 of of ADP IN _ 7 case _ _ _ P of p.Theme p.Theme _ _ _ O-P-p.Theme
6 the the DET DT Definite=Def|PronType=Art 7 det _ _ _ DET the _ _ _ _ _ O-DET
7 drawing draw NOUN NN Number=Sing 4 nmod _ _ _ N draw _ _ _ _ _ O-N
8 . . PUNCT . _ 1 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-5
# text = In the book it said : " Boa constrictors swallow their prey whole , without chewing it .
# mwe = In the book it said : " Boa constrictors swallow their prey whole , without chewing it .
1 In in ADP IN _ 3 case _ _ _ P in p.Locus p.Locus _ _ _ O-P-p.Locus
2 the the DET DT Definite=Def|PronType=Art 3 det _ _ _ DET the _ _ _ _ _ O-DET
3 book book NOUN NN Number=Sing 5 obl _ _ _ N book _ _ _ _ _ O-N
4 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 5 nsubj _ _ _ PRON it _ _ _ _ _ O-PRON
5 said say VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 0 root _ _ _ V say _ _ _ _ _ O-V
6 : : PUNCT : _ 5 punct _ _ _ PUNCT : _ _ _ _ _ O-PUNCT
7 " " PUNCT `` _ 5 punct _ _ _ PUNCT " _ _ _ _ _ O-PUNCT
8 Boa Boa PROPN NNP Number=Sing 9 compound _ _ _ N Boa _ _ _ _ _ O-N
9 constrictors constrictor NOUN NNS Number=Plur 10 nsubj _ _ _ N constrictor _ _ _ _ _ O-N
10 swallow swallow VERB VBP Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin 5 ccomp _ _ _ V swallow _ _ _ _ _ O-V
11 their their PRON PRP$ Case=Gen|Number=Plur|Person=3|Poss=Yes|PronType=Prs 13 nmod:poss _ _ _ PRON.POSS their p.Possessor p.Possessor _ _ _ O-PRON.POSS-p.Possessor
12 prey prey NOUN NN Number=Sing 13 compound _ _ _ N prey _ _ _ _ _ O-N
13 whole whole NOUN NN Number=Sing 10 obj _ _ _ N whole _ _ _ _ _ O-N
14 , , PUNCT , _ 10 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
15 without without SCONJ IN _ 16 mark _ _ _ P without p.Manner p.Manner _ _ _ O-P-p.Manner
16 chewing chew VERB VBG VerbForm=Ger 10 advcl _ _ _ V chew _ _ _ _ _ O-V
17 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 16 obj _ _ _ PRON it _ _ _ _ _ O-PRON
18 . . PUNCT . _ 5 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-6
# text = After that they are not able to move , and they sleep through the six months that they need for digestion . "
# mwe = After that they are not able to move , and they sleep through the six months that they need for digestion . "
1 After after ADP IN _ 2 case _ _ _ P after p.Time p.Time _ _ _ O-P-p.Time
2 that that PRON DT _ 6 obl _ _ _ PRON that _ _ _ _ _ O-PRON
3 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 6 nsubj _ _ _ PRON they _ _ _ _ _ O-PRON
4 are be AUX VBP Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ _ AUX be _ _ _ _ _ O-AUX
5 not not PART RB _ 6 advmod _ _ _ ADV not _ _ _ _ _ O-ADV
6 able able ADJ JJ Degree=Pos 0 root _ _ _ ADJ able _ _ _ _ _ O-ADJ
7 to to PART TO _ 8 mark _ _ _ INF to _ _ _ _ _ O-INF
8 move move VERB VB VerbForm=Inf 6 xcomp _ _ _ V move _ _ _ _ _ O-V
9 , , PUNCT , _ 12 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
10 and and CCONJ CC _ 12 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
11 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 12 nsubj _ _ _ PRON they _ _ _ _ _ O-PRON
12 sleep sleep VERB VBP Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin 6 conj _ _ _ V sleep _ _ _ _ _ O-V
13 through through ADP IN _ 16 case _ _ _ P through p.Duration p.Duration _ _ _ O-P-p.Duration
14 the the DET DT Definite=Def|PronType=Art 16 det _ _ _ DET the _ _ _ _ _ O-DET
15 six six NUM CD NumForm=Word|NumType=Card 16 nummod _ _ _ NUM six _ _ _ _ _ O-NUM
16 months month NOUN NNS Number=Plur 12 obl _ _ _ N month _ _ _ _ _ O-N
17 that that SCONJ WDT PronType=Rel 19 obj _ _ _ SCONJ that _ _ _ _ _ O-SCONJ
18 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 19 nsubj _ _ _ PRON they _ _ _ _ _ O-PRON
19 need need VERB VBP Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin 16 acl:relcl _ _ _ V need _ _ _ _ _ O-V
20 for for ADP IN _ 21 case _ _ _ P for p.Purpose p.Purpose _ _ _ O-P-p.Purpose
21 digestion digestion NOUN NN Number=Sing 19 obl _ _ _ N digestion _ _ _ _ _ O-N
22 . . PUNCT . _ 6 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
23 " " PUNCT '' _ 6 punct _ _ _ PUNCT " _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-7
# text = I pondered deeply , then , over the adventures of the jungle .
# mwe = I pondered deeply , then , over the adventures of the jungle .
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 2 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
2 pondered ponder VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 0 root _ _ _ V ponder _ _ _ _ _ O-V
3 deeply deeply ADV RB _ 2 advmod _ _ _ ADV deeply _ _ _ _ _ O-ADV
4 , , PUNCT , _ 5 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
5 then then ADV RB PronType=Dem 2 advmod _ _ _ ADV then _ _ _ _ _ O-ADV
6 , , PUNCT , _ 9 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
7 over over ADP IN _ 9 case _ _ _ P over p.Topic p.Topic _ _ _ O-P-p.Topic
8 the the DET DT Definite=Def|PronType=Art 9 det _ _ _ DET the _ _ _ _ _ O-DET
9 adventures adventure NOUN NNS Number=Plur 2 obl _ _ _ N adventure _ _ _ _ _ O-N
10 of of ADP IN _ 12 case _ _ _ P of p.Locus p.Gestalt _ _ _ O-P-p.Locus|p.Gestalt
11 the the DET DT Definite=Def|PronType=Art 12 det _ _ _ DET the _ _ _ _ _ O-DET
12 jungle jungle NOUN NN Number=Sing 9 nmod _ _ _ N jungle _ _ _ _ _ O-N
13 . . PUNCT . _ 2 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-8
# text = And after some work with a colored pencil I succeeded in making my first drawing .
# mwe = And after some work with a colored pencil I succeeded in making my first drawing .
1 And and CCONJ CC _ 10 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
2 after after ADP IN _ 4 case _ _ _ P after p.Time p.Time _ _ _ O-P-p.Time
3 some some DET DT _ 4 det _ _ _ DET some _ _ _ _ _ O-DET
4 work work NOUN NN Number=Sing 10 obl _ _ _ N work _ _ _ _ _ O-N
5 with with ADP IN _ 8 case _ _ _ P with p.Instrument p.Instrument _ _ _ O-P-p.Instrument
6 a a DET DT Definite=Ind|PronType=Art 8 det _ _ _ DET a _ _ _ _ _ O-DET
7 colored colored ADJ JJ Degree=Pos 8 amod _ _ _ ADJ colored _ _ _ _ _ O-ADJ
8 pencil pencil NOUN NN Number=Sing 4 nmod _ _ _ N pencil _ _ _ _ _ O-N
9 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 10 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
10 succeeded succeed VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 0 root _ _ _ V succeed _ _ _ _ _ O-V
11 in in SCONJ IN _ 12 mark _ _ _ P in p.Theme p.Theme _ _ _ O-P-p.Theme
12 making make VERB VBG VerbForm=Ger 10 advcl _ _ _ V make _ _ _ _ _ O-V
13 my my PRON PRP$ Case=Gen|Number=Sing|Person=1|Poss=Yes|PronType=Prs 15 nmod:poss _ _ _ PRON.POSS my p.Originator p.Gestalt _ _ _ O-PRON.POSS-p.Originator|p.Gestalt
14 first first ADJ JJ Degree=Pos|NumType=Ord 15 amod _ _ _ ADJ first _ _ _ _ _ O-ADJ
15 drawing draw NOUN NN Number=Sing 12 obj _ _ _ N draw _ _ _ _ _ O-N
16 . . PUNCT . _ 10 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-9
# text = My Drawing Number One .
# mwe = My Drawing Number One .
1 My my PRON PRP$ Case=Gen|Number=Sing|Person=1|Poss=Yes|PronType=Prs 2 nmod:poss _ _ _ PRON.POSS my p.Originator p.Gestalt _ _ _ O-PRON.POSS-p.Originator|p.Gestalt
2 Drawing drawing NOUN NN Number=Sing 3 compound _ _ _ N drawing _ _ _ _ _ O-N
3 Number number NOUN NN Number=Sing 0 root _ _ _ N number _ _ _ _ _ O-N
4 One one NUM CD NumForm=Word|NumType=Card 3 nummod _ _ _ NUM one _ _ _ _ _ O-NUM
5 . . PUNCT . _ 3 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-10
# text = It looked like this : I showed my masterpiece to the grown - ups , and asked them whether the drawing frightened them .
# mwe = It looked like this : I showed my masterpiece to the grown - ups , and asked them whether the drawing frightened them .
1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _ _ PRON it _ _ _ _ _ O-PRON
2 looked look VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 0 root _ _ _ V look _ _ _ _ _ O-V
3 like like ADP IN _ 4 case _ _ _ P like p.Manner p.ComparisonRef _ _ _ O-P-p.Manner|p.ComparisonRef
4 this this PRON DT Number=Sing|PronType=Dem 2 obl _ _ _ PRON this _ _ _ _ _ O-PRON
5 : : PUNCT : _ 7 punct _ _ _ PUNCT : _ _ _ _ _ O-PUNCT
6 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 7 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
7 showed show VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 2 parataxis _ _ _ V show _ _ _ _ _ O-V
8 my my PRON PRP$ Case=Gen|Number=Sing|Person=1|Poss=Yes|PronType=Prs 9 nmod:poss _ _ _ PRON.POSS my p.Originator p.Gestalt _ _ _ O-PRON.POSS-p.Originator|p.Gestalt
9 masterpiece masterpiece NOUN NN Number=Sing 7 obj _ _ _ N masterpiece _ _ _ _ _ O-N
10 to to ADP IN _ 14 case _ _ _ P to p.Recipient p.Goal _ _ _ O-P-p.Recipient|p.Goal
11 the the DET DT Definite=Def|PronType=Art 14 det _ _ _ DET the _ _ _ _ _ O-DET
12 grown grow VERB VBN Tense=Past|VerbForm=Part 14 amod _ _ _ ADJ grow _ _ _ _ _ O-ADJ
13 - - PUNCT HYPH _ 12 punct _ _ _ PUNCT - _ _ _ _ _ O-PUNCT
14 ups up NOUN NNS Number=Plur 7 obl _ _ _ N up _ _ _ _ _ O-N
15 , , PUNCT , _ 17 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
16 and and CCONJ CC _ 17 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
17 asked ask VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 7 conj _ _ _ V ask _ _ _ _ _ O-V
18 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 17 iobj _ _ _ PRON they _ _ _ _ _ O-PRON
19 whether whether SCONJ IN _ 22 mark _ _ _ SCONJ whether _ _ _ _ _ O-SCONJ
20 the the DET DT Definite=Def|PronType=Art 21 det _ _ _ DET the _ _ _ _ _ O-DET
21 drawing draw NOUN NN Number=Sing 22 nsubj _ _ _ N draw _ _ _ _ _ O-N
22 frightened frighten VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 17 ccomp _ _ _ V frighten _ _ _ _ _ O-V
23 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 22 obj _ _ _ PRON they _ _ _ _ _ O-PRON
24 . . PUNCT . _ 2 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-11
# text = But they answered : " Frighten ?
# mwe = But they answered : " Frighten ?
1 But but CCONJ CC _ 3 cc _ _ _ CCONJ but _ _ _ _ _ O-CCONJ
2 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 3 nsubj _ _ _ PRON they _ _ _ _ _ O-PRON
3 answered answer VERB VBD Mood=Ind|Number=Plur|Person=3|Tense=Past|VerbForm=Fin 0 root _ _ _ V answer _ _ _ _ _ O-V
4 : : PUNCT : _ 3 punct _ _ _ PUNCT : _ _ _ _ _ O-PUNCT
5 " " PUNCT `` _ 6 punct _ _ _ PUNCT " _ _ _ _ _ O-PUNCT
6 Frighten frighten VERB VB Mood=Imp|VerbForm=Fin 3 ccomp _ _ _ V frighten _ _ _ _ _ O-V
7 ? ? PUNCT . _ 3 punct _ _ _ PUNCT ? _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-12
# text = Why should any one be frightened by a hat ? "
# mwe = Why should any one be frightened by a hat ? "
1 Why why ADV WRB PronType=Int 6 advmod _ _ _ ADV why _ _ _ _ _ O-ADV
2 should should AUX MD VerbForm=Fin 6 aux _ _ _ AUX should _ _ _ _ _ O-AUX
3 any any DET DT _ 4 det _ _ _ DET any _ _ _ _ _ O-DET
4 one one NOUN NN Number=Sing 6 nsubj:pass _ _ _ NUM one _ _ _ _ _ O-NUM
5 be be AUX VB VerbForm=Inf 6 aux:pass _ _ _ AUX be _ _ _ _ _ O-AUX
6 frightened frighten VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ _ V frighten _ _ _ _ _ O-V
7 by by ADP IN _ 9 case _ _ _ P by p.Stimulus p.Force _ _ _ O-P-p.Stimulus|p.Force
8 a a DET DT Definite=Ind|PronType=Art 9 det _ _ _ DET a _ _ _ _ _ O-DET
9 hat hat NOUN NN Number=Sing 6 obl:agent _ _ _ N hat _ _ _ _ _ O-N
10 ? ? PUNCT . _ 6 punct _ _ _ PUNCT ? _ _ _ _ _ O-PUNCT
11 " " PUNCT '' _ 6 punct _ _ _ PUNCT " _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-13
# text = My drawing was not a picture of a hat .
# mwe = My drawing was not a picture of a hat .
1 My my PRON PRP$ Case=Gen|Number=Sing|Person=1|Poss=Yes|PronType=Prs 2 nmod:poss _ _ _ PRON.POSS my p.Originator p.Gestalt _ _ _ O-PRON.POSS-p.Originator|p.Gestalt
2 drawing draw NOUN NN Number=Sing 6 nsubj _ _ _ N draw _ _ _ _ _ O-N
3 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 cop _ _ _ AUX be _ _ _ _ _ O-AUX
4 not not PART RB _ 6 advmod _ _ _ ADV not _ _ _ _ _ O-ADV
5 a a DET DT Definite=Ind|PronType=Art 6 det _ _ _ DET a _ _ _ _ _ O-DET
6 picture picture NOUN NN Number=Sing 0 root _ _ _ N picture _ _ _ _ _ O-N
7 of of ADP IN _ 9 case _ _ _ P of p.Topic p.Topic _ _ _ O-P-p.Topic
8 a a DET DT Definite=Ind|PronType=Art 9 det _ _ _ DET a _ _ _ _ _ O-DET
9 hat hat NOUN NN Number=Sing 6 nmod _ _ _ N hat _ _ _ _ _ O-N
10 . . PUNCT . _ 6 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-14
# text = It was a picture of a boa constrictor digesting an elephant .
# mwe = It was a picture of a boa constrictor digesting an elephant .
1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 nsubj _ _ _ PRON it _ _ _ _ _ O-PRON
2 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 4 cop _ _ _ AUX be _ _ _ _ _ O-AUX
3 a a DET DT Definite=Ind|PronType=Art 4 det _ _ _ DET a _ _ _ _ _ O-DET
4 picture picture NOUN NN Number=Sing 0 root _ _ _ N picture _ _ _ _ _ O-N
5 of of ADP IN _ 8 case _ _ _ P of p.Topic p.Topic _ _ _ O-P-p.Topic
6 a a DET DT Definite=Ind|PronType=Art 8 det _ _ _ DET a _ _ _ _ _ O-DET
7 boa boa NOUN NN Number=Sing 8 compound _ _ _ N boa _ _ _ _ _ O-N
8 constrictor constrictor NOUN NN Number=Sing 4 nmod _ _ _ N constrictor _ _ _ _ _ O-N
9 digesting digest VERB VBG VerbForm=Ger 8 acl _ _ _ V digest _ _ _ _ _ O-V
10 an a DET DT Definite=Ind|PronType=Art 11 det _ _ _ DET a _ _ _ _ _ O-DET
11 elephant elephant NOUN NN Number=Sing 9 obj _ _ _ N elephant _ _ _ _ _ O-N
12 . . PUNCT . _ 4 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-15
# text = But since the grown - ups were not able to understand it , I made another drawing : I drew the inside of the boa constrictor , so that the grown - ups could see it clearly .
# mwe = But since the grown - ups were not able to understand it , I made another drawing : I drew the inside of the boa constrictor , so that the grown - ups could see it clearly .
1 But but CCONJ CC _ 15 cc _ _ _ CCONJ but _ _ _ _ _ O-CCONJ
2 since since SCONJ IN _ 9 mark _ _ _ P since p.Explanation p.Explanation _ _ _ O-P-p.Explanation
3 the the DET DT Definite=Def|PronType=Art 6 det _ _ _ DET the _ _ _ _ _ O-DET
4 grown grow VERB VBN Tense=Past|VerbForm=Part 6 amod _ _ _ ADJ grow _ _ _ _ _ O-ADJ
5 - - PUNCT HYPH _ 4 punct _ _ _ PUNCT - _ _ _ _ _ O-PUNCT
6 ups up NOUN NNS Number=Plur 9 nsubj _ _ _ N up _ _ _ _ _ O-N
7 were be AUX VBD Mood=Ind|Number=Plur|Person=3|Tense=Past|VerbForm=Fin 9 cop _ _ _ AUX be _ _ _ _ _ O-AUX
8 not not PART RB _ 9 advmod _ _ _ ADV not _ _ _ _ _ O-ADV
9 able able ADJ JJ Degree=Pos 15 advcl _ _ _ ADJ able _ _ _ _ _ O-ADJ
10 to to PART TO _ 11 mark _ _ _ INF to _ _ _ _ _ O-INF
11 understand understand VERB VB VerbForm=Inf 9 xcomp _ _ _ V understand _ _ _ _ _ O-V
12 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 11 obj _ _ _ PRON it _ _ _ _ _ O-PRON
13 , , PUNCT , _ 9 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
14 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 15 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
15 made make VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 0 root _ _ _ V make _ _ _ _ _ O-V
16 another another DET DT _ 17 det _ _ _ DET another _ _ _ _ _ O-DET
17 drawing draw NOUN NN Number=Sing 15 obj _ _ _ N draw _ _ _ _ _ O-N
18 : : PUNCT : _ 20 punct _ _ _ PUNCT : _ _ _ _ _ O-PUNCT
19 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 20 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
20 drew draw VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 15 parataxis _ _ _ V draw _ _ _ _ _ O-V
21 the the DET DT Definite=Def|PronType=Art 22 det _ _ _ DET the _ _ _ _ _ O-DET
22 inside inside NOUN NN Number=Sing 20 obj _ _ _ N inside _ _ _ _ _ O-N
23 of of ADP IN _ 26 case _ _ _ P of p.Whole p.Whole _ _ _ O-P-p.Whole
24 the the DET DT Definite=Def|PronType=Art 26 det _ _ _ DET the _ _ _ _ _ O-DET
25 boa boa NOUN NN Number=Sing 26 compound _ _ _ N boa _ _ _ _ _ O-N
26 constrictor constrictor NOUN NN Number=Sing 22 nmod _ _ _ N constrictor _ _ _ _ _ O-N
27 , , PUNCT , _ 28 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
28 so so SCONJ IN _ 35 mark _ _ _ SCONJ so _ _ _ _ _ O-SCONJ
29 that that SCONJ IN _ 28 fixed _ _ _ SCONJ that _ _ _ _ _ O-SCONJ
30 the the DET DT Definite=Def|PronType=Art 33 det _ _ _ DET the _ _ _ _ _ O-DET
31 grown grow VERB VBN Tense=Past|VerbForm=Part 33 amod _ _ _ ADJ grow _ _ _ _ _ O-ADJ
32 - - PUNCT HYPH _ 31 punct _ _ _ PUNCT - _ _ _ _ _ O-PUNCT
33 ups up NOUN NNS Number=Plur 35 nsubj _ _ _ N up _ _ _ _ _ O-N
34 could could AUX MD VerbForm=Fin 35 aux _ _ _ AUX could _ _ _ _ _ O-AUX
35 see see VERB VB VerbForm=Inf 20 advcl _ _ _ V see _ _ _ _ _ O-V
36 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 35 obj _ _ _ PRON it _ _ _ _ _ O-PRON
37 clearly clearly ADV RB _ 35 advmod _ _ _ ADV clearly _ _ _ _ _ O-ADV
38 . . PUNCT . _ 15 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-16
# text = They always need to have things explained .
# mwe = They always need to have things explained .
1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 3 nsubj _ _ _ PRON they _ _ _ _ _ O-PRON
2 always always ADV RB _ 3 advmod _ _ _ ADV always _ _ _ _ _ O-ADV
3 need need VERB VBP Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ _ V need _ _ _ _ _ O-V
4 to to PART TO _ 5 mark _ _ _ INF to _ _ _ _ _ O-INF
5 have have VERB VB VerbForm=Inf 3 xcomp _ _ _ V have _ _ _ _ _ O-V
6 things thing NOUN NNS Number=Plur 5 obj _ _ _ N thing _ _ _ _ _ O-N
7 explained explain VERB VBN Tense=Past|VerbForm=Part 5 xcomp _ _ _ V explain _ _ _ _ _ O-V
8 . . PUNCT . _ 3 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-17
# text = My Drawing Number Two looked like this : The grown - ups ' response , this time , was to advise me to lay aside my drawings of boa constrictors , whether from the inside or the outside , and devote myself instead to geography , history , arithmetic and grammar .
# mwe = My Drawing Number Two looked like this : The grown - ups ' response , this time , was to advise me to lay_aside my drawings of boa constrictors , whether from the inside or the outside , and devote myself instead to geography , history , arithmetic and grammar .
1 My my PRON PRP$ Case=Gen|Number=Sing|Person=1|Poss=Yes|PronType=Prs 2 nmod:poss _ _ _ PRON.POSS my p.Originator p.Gestalt _ _ _ O-PRON.POSS-p.Originator|p.Gestalt
2 Drawing drawing NOUN NN Number=Sing 3 compound _ _ _ N drawing _ _ _ _ _ O-N
3 Number number NOUN NN Number=Sing 5 nsubj _ _ _ N number _ _ _ _ _ O-N
4 Two two NUM CD NumForm=Word|NumType=Card 3 nummod _ _ _ NUM two _ _ _ _ _ O-NUM
5 looked look VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 0 root _ _ _ V look _ _ _ _ _ O-V
6 like like ADP IN _ 7 case _ _ _ P like p.Manner p.ComparisonRef _ _ _ O-P-p.Manner|p.ComparisonRef
7 this this PRON DT Number=Sing|PronType=Dem 5 obl _ _ _ PRON this _ _ _ _ _ O-PRON
8 : : PUNCT : _ 5 punct _ _ _ PUNCT : _ _ _ _ _ O-PUNCT
9 The the DET DT Definite=Def|PronType=Art 14 det _ _ _ DET the _ _ _ _ _ O-DET
10 grown grow VERB VBN Tense=Past|VerbForm=Part 12 amod _ _ _ ADJ grow _ _ _ _ _ O-ADJ
11 - - PUNCT HYPH _ 10 punct _ _ _ PUNCT - _ _ _ _ _ O-PUNCT
12 ups up NOUN NNS Number=Plur 14 nmod:poss _ _ _ N up _ _ _ _ _ O-N
13 ' 's PART POS _ 12 case _ _ _ POSS 's p.Originator p.Gestalt _ _ _ O-POSS-p.Originator|p.Gestalt
14 response response NOUN NN Number=Sing 21 nsubj:outer _ _ _ N response _ _ _ _ _ O-N
15 , , PUNCT , _ 14 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
16 this this DET DT Number=Sing|PronType=Dem 17 det _ _ _ DET this _ _ _ _ _ O-DET
17 time time NOUN NN Number=Sing 21 obl:tmod _ _ _ N time _ _ _ _ _ O-N
18 , , PUNCT , _ 17 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
19 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 21 cop _ _ _ AUX be _ _ _ _ _ O-AUX
20 to to PART TO _ 21 mark _ _ _ INF to _ _ _ _ _ O-INF
21 advise advise VERB VB VerbForm=Inf 5 parataxis _ _ _ V advise _ _ _ _ _ O-V
22 me I PRON PRP Case=Acc|Number=Sing|Person=1|PronType=Prs 21 iobj _ _ _ PRON I _ _ _ _ _ O-PRON
23 to to PART TO _ 24 mark _ _ _ INF to _ _ _ _ _ O-INF
24 lay lay VERB VB VerbForm=Inf 21 xcomp _ _ 1:1 V lay aside _ _ _ _ _ B-V
25 aside aside ADP RP _ 24 compound:prt _ _ 1:2 _ _ _ _ _ _ _ I_
26 my my PRON PRP$ Case=Gen|Number=Sing|Person=1|Poss=Yes|PronType=Prs 27 nmod:poss _ _ _ PRON.POSS my p.Originator p.Gestalt _ _ _ O-PRON.POSS-p.Originator|p.Gestalt
27 drawings drawing NOUN NNS Number=Plur 24 obj _ _ _ N drawing _ _ _ _ _ O-N
28 of of ADP IN _ 30 case _ _ _ P of p.Topic p.Topic _ _ _ O-P-p.Topic
29 boa boa NOUN NN Number=Sing 30 compound _ _ _ N boa _ _ _ _ _ O-N
30 constrictors constrictor NOUN NNS Number=Plur 27 nmod _ _ _ N constrictor _ _ _ _ _ O-N
31 , , PUNCT , _ 35 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
32 whether whether SCONJ IN _ 35 mark _ _ _ SCONJ whether _ _ _ _ _ O-SCONJ
33 from from ADP IN _ 35 case _ _ _ P from p.Locus p.Source _ _ _ O-P-p.Locus|p.Source
34 the the DET DT Definite=Def|PronType=Art 35 det _ _ _ DET the _ _ _ _ _ O-DET
35 inside inside NOUN NN Number=Sing 24 obl _ _ _ N inside _ _ _ _ _ O-N
36 or or CCONJ CC _ 38 cc _ _ _ CCONJ or _ _ _ _ _ O-CCONJ
37 the the DET DT Definite=Def|PronType=Art 38 det _ _ _ DET the _ _ _ _ _ O-DET
38 outside outside ADV RB _ 35 conj _ _ _ ADV outside _ _ _ _ _ O-ADV
39 , , PUNCT , _ 41 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
40 and and CCONJ CC _ 41 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
41 devote devote VERB VB VerbForm=Inf 24 conj _ _ _ V devote _ _ _ _ _ O-V
42 myself myself PRON PRP Case=Acc|Number=Sing|Person=1|PronType=Prs|Reflex=Yes 41 obj _ _ _ PRON myself _ _ _ _ _ O-PRON
43 instead instead ADV RB _ 41 advmod _ _ _ ADV instead _ _ _ _ _ O-ADV
44 to to ADP IN _ 45 case _ _ _ P to p.Topic p.Goal _ _ _ O-P-p.Topic|p.Goal
45 geography geography NOUN NN Number=Sing 41 obl _ _ _ N geography _ _ _ _ _ O-N
46 , , PUNCT , _ 47 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
47 history history NOUN NN Number=Sing 45 conj _ _ _ N history _ _ _ _ _ O-N
48 , , PUNCT , _ 49 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
49 arithmetic arithmetic NOUN NN Number=Sing 45 conj _ _ _ N arithmetic _ _ _ _ _ O-N
50 and and CCONJ CC _ 51 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
51 grammar grammar NOUN NN Number=Sing 45 conj _ _ _ N grammar _ _ _ _ _ O-N
52 . . PUNCT . _ 5 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-18
# text = That is why , at the age of six , I gave up what might have been a magnificent career as a painter .
# mwe = That is why , at the age of six , I gave_up what might have been a magnificent career as a painter .
1 That that PRON DT Number=Sing|PronType=Dem 3 nsubj _ _ _ PRON that _ _ _ _ _ O-PRON
2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 cop _ _ _ AUX be _ _ _ _ _ O-AUX
3 why why ADV WRB PronType=Rel 0 root _ _ _ ADV why _ _ _ _ _ O-ADV
4 , , PUNCT , _ 3 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
5 at at ADP IN _ 7 case _ _ _ P at p.Time p.Time _ _ _ O-P-p.Time
6 the the DET DT Definite=Def|PronType=Art 7 det _ _ _ DET the _ _ _ _ _ O-DET
7 age age NOUN NN Number=Sing 12 obl _ _ _ N age _ _ _ _ _ O-N
8 of of ADP IN _ 9 case _ _ _ P of p.Identity p.Identity _ _ _ O-P-p.Identity
9 six six NUM CD NumForm=Word|NumType=Card 7 nmod _ _ _ NUM six _ _ _ _ _ O-NUM
10 , , PUNCT , _ 7 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
11 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 12 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
12 gave give VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 3 advcl:relcl _ _ 1:1 V give up _ _ _ _ _ B-V
13 up up ADP RP _ 12 compound:prt _ _ 1:2 _ _ _ _ _ _ _ I_
14 what what PRON WP PronType=Rel 12 obj _ _ _ PRON what _ _ _ _ _ O-PRON
15 might might AUX MD VerbForm=Fin 20 aux _ _ _ AUX might _ _ _ _ _ O-AUX
16 have have AUX VB VerbForm=Inf 20 aux _ _ _ AUX have _ _ _ _ _ O-AUX
17 been be AUX VBN Tense=Past|VerbForm=Part 20 cop _ _ _ AUX be _ _ _ _ _ O-AUX
18 a a DET DT Definite=Ind|PronType=Art 20 det _ _ _ DET a _ _ _ _ _ O-DET
19 magnificent magnificent ADJ JJ Degree=Pos 20 amod _ _ _ ADJ magnificent _ _ _ _ _ O-ADJ
20 career career NOUN NN Number=Sing 14 acl:relcl _ _ _ N career _ _ _ _ _ O-N
21 as as ADP IN _ 23 case _ _ _ P as p.Identity p.Identity _ _ _ O-P-p.Identity
22 a a DET DT Definite=Ind|PronType=Art 23 det _ _ _ DET a _ _ _ _ _ O-DET
23 painter painter NOUN NN Number=Sing 20 nmod _ _ _ N painter _ _ _ _ _ O-N
24 . . PUNCT . _ 3 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-19
# text = I had been disheartened by the failure of my Drawing Number One and my Drawing Number Two .
# mwe = I had been disheartened by the failure of my Drawing Number One and my Drawing Number Two .
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 4 nsubj:pass _ _ _ PRON I _ _ _ _ _ O-PRON
2 had have AUX VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 4 aux _ _ _ AUX have _ _ _ _ _ O-AUX
3 been be AUX VBN Tense=Past|VerbForm=Part 4 aux:pass _ _ _ AUX be _ _ _ _ _ O-AUX
4 disheartened dishearten VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ _ V dishearten _ _ _ _ _ O-V
5 by by ADP IN _ 7 case _ _ _ P by p.Stimulus p.Force _ _ _ O-P-p.Stimulus|p.Force
6 the the DET DT Definite=Def|PronType=Art 7 det _ _ _ DET the _ _ _ _ _ O-DET
7 failure failure NOUN NN Number=Sing 4 obl:agent _ _ _ N failure _ _ _ _ _ O-N
8 of of ADP IN _ 12 case _ _ _ P of p.Theme p.Theme _ _ _ O-P-p.Theme
9 my my PRON PRP$ Case=Gen|Number=Sing|Person=1|Poss=Yes|PronType=Prs 12 nmod:poss _ _ _ PRON.POSS my p.Originator p.Gestalt _ _ _ O-PRON.POSS-p.Originator|p.Gestalt
10 Drawing Drawing PROPN NNP Number=Sing 12 compound _ _ _ N Drawing _ _ _ _ _ O-N
11 Number Number PROPN NNP Number=Sing 12 compound _ _ _ N Number _ _ _ _ _ O-N
12 One one NOUN NN Number=Sing 7 nmod _ _ _ N one _ _ _ _ _ O-N
13 and and CCONJ CC _ 15 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
14 my my PRON PRP$ Case=Gen|Number=Sing|Person=1|Poss=Yes|PronType=Prs 15 nmod:poss _ _ _ PRON.POSS my p.Originator p.Gestalt _ _ _ O-PRON.POSS-p.Originator|p.Gestalt
15 Drawing drawing NOUN NN Number=Sing 7 conj _ _ _ N drawing _ _ _ _ _ O-N
16 Number Number PROPN NNP Number=Sing 15 appos _ _ _ N Number _ _ _ _ _ O-N
17 Two two NUM CD NumForm=Word|NumType=Card 16 nummod _ _ _ NUM two _ _ _ _ _ O-NUM
18 . . PUNCT . _ 4 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-20
# text = Grown - ups never understand anything by themselves , and it is tiresome for children to be always and forever explaining things to them .
# mwe = Grown - ups never understand anything by themselves , and it is tiresome for children to be always and forever explaining things to them .
1 Grown grow VERB VBN Tense=Past|VerbForm=Part 3 amod _ _ _ ADJ grow _ _ _ _ _ O-ADJ
2 - - PUNCT HYPH _ 1 punct _ _ _ PUNCT - _ _ _ _ _ O-PUNCT
3 ups up NOUN NNS Number=Plur 5 nsubj _ _ _ N up _ _ _ _ _ O-N
4 never never ADV RB _ 5 advmod _ _ _ ADV never _ _ _ _ _ O-ADV
5 understand understand VERB VBP Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ _ V understand _ _ _ _ _ O-V
6 anything anything PRON NN Number=Sing|PronType=Ind 5 obj _ _ _ PRON anything _ _ _ _ _ O-PRON
7 by by ADP IN _ 8 case _ _ _ P by p.Manner p.Manner _ _ _ O-P-p.Manner
8 themselves themselves PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs|Reflex=Yes 5 obl _ _ _ PRON themselves _ _ _ _ _ O-PRON
9 , , PUNCT , _ 13 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
10 and and CCONJ CC _ 13 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
11 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 13 expl _ _ _ PRON it _ _ _ _ _ O-PRON
12 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 13 cop _ _ _ AUX be _ _ _ _ _ O-AUX
13 tiresome tiresome ADJ JJ Degree=Pos 5 conj _ _ _ ADJ tiresome _ _ _ _ _ O-ADJ
14 for for SCONJ IN _ 21 mark _ _ _ P for p.Experiencer p.Beneficiary _ _ _ O-P-p.Experiencer|p.Beneficiary
15 children child NOUN NNS Number=Plur 18 nsubj _ _ _ N child _ _ _ _ _ O-N
16 to to PART TO _ 18 mark _ _ _ INF to _ _ _ _ _ O-INF
17 be be AUX VB VerbForm=Inf 21 aux _ _ _ AUX be _ _ _ _ _ O-AUX
18 always always ADV RB _ 21 advmod _ _ _ ADV always _ _ _ _ _ O-ADV
19 and and CCONJ CC _ 21 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
20 forever forever ADV RB _ 21 advmod _ _ _ ADV forever _ _ _ _ _ O-ADV
21 explaining explain VERB VBG Tense=Pres|VerbForm=Part 13 csubj _ _ _ V explain _ _ _ _ _ O-V
22 things thing NOUN NNS Number=Plur 21 obj _ _ _ N thing _ _ _ _ _ O-N
23 to to ADP IN _ 24 case _ _ _ P to p.Recipient p.Goal _ _ _ O-P-p.Recipient|p.Goal
24 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 21 obl _ _ _ PRON they _ _ _ _ _ O-PRON
25 . . PUNCT . _ 5 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-21
# text = So then I chose another profession , and learned to pilot airplanes .
# mwe = So then I chose another profession , and learned to pilot airplanes .
1 So so ADV RB _ 4 advmod _ _ _ ADV so _ _ _ _ _ O-ADV
2 then then ADV RB PronType=Dem 4 advmod _ _ _ ADV then _ _ _ _ _ O-ADV
3 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 4 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
4 chose choose VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 0 root _ _ _ V choose _ _ _ _ _ O-V
5 another another DET DT _ 6 det _ _ _ DET another _ _ _ _ _ O-DET
6 profession profession NOUN NN Number=Sing 4 obj _ _ _ N profession _ _ _ _ _ O-N
7 , , PUNCT , _ 9 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
8 and and CCONJ CC _ 9 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
9 learned learn VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 4 conj _ _ _ V learn _ _ _ _ _ O-V
10 to to PART TO _ 11 mark _ _ _ INF to _ _ _ _ _ O-INF
11 pilot pilot VERB VB VerbForm=Inf 9 xcomp _ _ _ V pilot _ _ _ _ _ O-V
12 airplanes airplane NOUN NNS Number=Plur 11 obj _ _ _ N airplane _ _ _ _ _ O-N
13 . . PUNCT . _ 4 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-22
# text = I have flown a little over all parts of the world ; and it is true that geography has been very useful to me .
# mwe = I have flown a little over all parts of the world ; and it is true that geography has been very useful to me .
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
2 have have AUX VBP Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 3 aux _ _ _ AUX have _ _ _ _ _ O-AUX
3 flown fly VERB VBN Tense=Past|VerbForm=Part 0 root _ _ _ V fly _ _ _ _ _ O-V
4 a a DET DT Definite=Ind|PronType=Art 5 det _ _ _ DET a _ _ _ _ _ O-DET
5 little little ADJ JJ Degree=Pos 3 obl:npmod _ _ _ ADJ little _ _ _ _ _ O-ADJ
6 over over ADP IN _ 8 case _ _ _ P over p.Path p.Path _ _ _ O-P-p.Path
7 all all DET DT _ 8 det _ _ _ DET all _ _ _ _ _ O-DET
8 parts part NOUN NNS Number=Plur 3 obl _ _ _ N part _ _ _ _ _ O-N
9 of of ADP IN _ 11 case _ _ _ P of p.Whole p.Whole _ _ _ O-P-p.Whole
10 the the DET DT Definite=Def|PronType=Art 11 det _ _ _ DET the _ _ _ _ _ O-DET
11 world world NOUN NN Number=Sing 8 nmod _ _ _ N world _ _ _ _ _ O-N
12 ; ; PUNCT : _ 16 punct _ _ _ PUNCT ; _ _ _ _ _ O-PUNCT
13 and and CCONJ CC _ 16 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
14 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 16 expl _ _ _ PRON it _ _ _ _ _ O-PRON
15 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 16 cop _ _ _ AUX be _ _ _ _ _ O-AUX
16 true true ADJ JJ Degree=Pos 3 conj _ _ _ ADJ true _ _ _ _ _ O-ADJ
17 that that SCONJ IN _ 22 mark _ _ _ SCONJ that _ _ _ _ _ O-SCONJ
18 geography geography NOUN NN Number=Sing 22 nsubj _ _ _ N geography _ _ _ _ _ O-N
19 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 22 aux _ _ _ AUX have _ _ _ _ _ O-AUX
20 been be AUX VBN Tense=Past|VerbForm=Part 22 cop _ _ _ AUX be _ _ _ _ _ O-AUX
21 very very ADV RB _ 22 advmod _ _ _ ADV very _ _ _ _ _ O-ADV
22 useful useful ADJ JJ Degree=Pos 16 csubj _ _ _ ADJ useful _ _ _ _ _ O-ADJ
23 to to ADP IN _ 24 case _ _ _ P to p.Beneficiary p.Goal _ _ _ O-P-p.Beneficiary|p.Goal
24 me I PRON PRP Case=Acc|Number=Sing|Person=1|PronType=Prs 22 obl _ _ _ PRON I _ _ _ _ _ O-PRON
25 . . PUNCT . _ 3 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-23
# text = At a glance I can distinguish China from Arizona .
# mwe = At_a_glance I can distinguish China from Arizona .
1 At at ADP IN _ 3 case _ _ 1:1 P at a glance p.Manner p.Manner _ _ _ B-P-p.Manner
2 a a DET DT Definite=Ind|PronType=Art 3 det _ _ 1:2 _ _ _ _ _ _ _ I_
3 glance glance NOUN NN Number=Sing 6 obl _ _ 1:3 _ _ _ _ _ _ _ I_
4 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 6 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
5 can can AUX MD VerbForm=Fin 6 aux _ _ _ AUX can _ _ _ _ _ O-AUX
6 distinguish distinguish VERB VB VerbForm=Inf 0 root _ _ _ V distinguish _ _ _ _ _ O-V
7 China China PROPN NNP Number=Sing 6 obj _ _ _ N China _ _ _ _ _ O-N
8 from from ADP IN _ 9 case _ _ _ P from p.ComparisonRef p.Source _ _ _ O-P-p.ComparisonRef|p.Source
9 Arizona Arizona PROPN NNP Number=Sing 6 obl _ _ _ N Arizona _ _ _ _ _ O-N
10 . . PUNCT . _ 6 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-24
# text = If one gets lost in the night , such knowledge is valuable .
# mwe = If one gets lost in the night , such knowledge is valuable .
1 If if SCONJ IN _ 4 mark _ _ _ SCONJ if _ _ _ _ _ O-SCONJ
2 one one PRON PRP Number=Sing|Person=3|PronType=Prs 4 nsubj:pass _ _ _ PRON one _ _ _ _ _ O-PRON
3 gets get AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 aux:pass _ _ _ AUX get _ _ _ _ _ O-AUX
4 lost lose VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 12 advcl _ _ _ V lose _ _ _ _ _ O-V
5 in in ADP IN _ 7 case _ _ _ P in p.Time p.Time _ _ _ O-P-p.Time
6 the the DET DT Definite=Def|PronType=Art 7 det _ _ _ DET the _ _ _ _ _ O-DET
7 night night NOUN NN Number=Sing 4 obl _ _ _ N night _ _ _ _ _ O-N
8 , , PUNCT , _ 4 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
9 such such ADJ JJ Degree=Pos 10 amod _ _ _ ADJ such _ _ _ _ _ O-ADJ
10 knowledge knowledge NOUN NN Number=Sing 12 nsubj _ _ _ N knowledge _ _ _ _ _ O-N
11 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 12 cop _ _ _ AUX be _ _ _ _ _ O-AUX
12 valuable valuable ADJ JJ Degree=Pos 0 root _ _ _ ADJ valuable _ _ _ _ _ O-ADJ
13 . . PUNCT . _ 12 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-25
# text = In the course of this life I have had a great many encounters with a great many people who have been concerned with matters of consequence .
# mwe = In_the_course_of this life I have had a great many encounters with a great many people who have been concerned with matters of consequence .
1 In in ADP IN _ 3 case _ _ 1:1 P in the course of p.Time p.Time _ _ _ B-P-p.Time
2 the the DET DT Definite=Def|PronType=Art 3 det _ _ 1:2 _ _ _ _ _ _ _ I_
3 course course NOUN NN Number=Sing 9 obl _ _ 1:3 _ _ _ _ _ _ _ I_
4 of of ADP IN _ 6 case _ _ 1:4 _ _ _ _ _ _ _ I_
5 this this DET DT Number=Sing|PronType=Dem 6 det _ _ _ DET this _ _ _ _ _ O-DET
6 life life NOUN NN Number=Sing 3 nmod _ _ _ N life _ _ _ _ _ O-N
7 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 9 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
8 have have AUX VBP Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 9 aux _ _ _ AUX have _ _ _ _ _ O-AUX
9 had have VERB VBN Tense=Past|VerbForm=Part 0 root _ _ _ V have _ _ _ _ _ O-V
10 a a DET DT Definite=Ind|PronType=Art 13 det _ _ _ DET a _ _ _ _ _ O-DET
11 great great ADJ JJ Degree=Pos 13 amod _ _ _ ADJ great _ _ _ _ _ O-ADJ
12 many many ADJ JJ Degree=Pos 13 amod _ _ _ ADJ many _ _ _ _ _ O-ADJ
13 encounters encounter NOUN NNS Number=Plur 9 obj _ _ _ N encounter _ _ _ _ _ O-N
14 with with ADP IN _ 18 case _ _ _ P with p.Agent p.Ancillary _ _ _ O-P-p.Agent|p.Ancillary
15 a a DET DT Definite=Ind|PronType=Art 18 det _ _ _ DET a _ _ _ _ _ O-DET
16 great great ADJ JJ Degree=Pos 18 amod _ _ _ ADJ great _ _ _ _ _ O-ADJ
17 many many ADJ JJ Degree=Pos 18 amod _ _ _ ADJ many _ _ _ _ _ O-ADJ
18 people person NOUN NNS Number=Plur 13 nmod _ _ _ N person _ _ _ _ _ O-N
19 who who PRON WP PronType=Rel 22 nsubj _ _ _ PRON who _ _ _ _ _ O-PRON
20 have have AUX VBP Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin 22 aux _ _ _ AUX have _ _ _ _ _ O-AUX
21 been be AUX VBN Tense=Past|VerbForm=Part 22 cop _ _ _ AUX be _ _ _ _ _ O-AUX
22 concerned concerned ADJ JJ Degree=Pos 18 acl:relcl _ _ _ ADJ concerned _ _ _ _ _ O-ADJ
23 with with ADP IN _ 24 case _ _ _ P with p.Topic p.Topic _ _ _ O-P-p.Topic
24 matters matter NOUN NNS Number=Plur 22 obl _ _ _ N matter _ _ _ _ _ O-N
25 of of ADP IN _ 26 case _ _ _ P of p.Characteristic p.Identity _ _ _ O-P-p.Characteristic|p.Identity
26 consequence consequence NOUN NN Number=Sing 24 nmod _ _ _ N consequence _ _ _ _ _ O-N
27 . . PUNCT . _ 9 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-26
# text = I have lived a great deal among grown - ups .
# mwe = I have lived a great deal among grown - ups .
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
2 have have AUX VBP Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 3 aux _ _ _ AUX have _ _ _ _ _ O-AUX
3 lived live VERB VBN Tense=Past|VerbForm=Part 0 root _ _ _ V live _ _ _ _ _ O-V
4 a a DET DT Definite=Ind|PronType=Art 6 det _ _ _ DET a _ _ _ _ _ O-DET
5 great great ADJ JJ Degree=Pos 6 amod _ _ _ ADJ great _ _ _ _ _ O-ADJ
6 deal deal NOUN NN Number=Sing 3 obj _ _ _ N deal _ _ _ _ _ O-N
7 among among ADP IN _ 10 case _ _ _ P among p.Locus p.Locus _ _ _ O-P-p.Locus
8 grown grow VERB VBN Tense=Past|VerbForm=Part 10 amod _ _ _ ADJ grow _ _ _ _ _ O-ADJ
9 - - PUNCT HYPH _ 10 punct _ _ _ PUNCT - _ _ _ _ _ O-PUNCT
10 ups up NOUN NNS Number=Plur 6 nmod _ _ _ N up _ _ _ _ _ O-N
11 . . PUNCT . _ 3 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-27
# text = I have seen them intimately , close at hand .
# mwe = I have seen them intimately , close at_hand .
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
2 have have AUX VBP Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 3 aux _ _ _ AUX have _ _ _ _ _ O-AUX
3 seen see VERB VBN Tense=Past|VerbForm=Part 0 root _ _ _ V see _ _ _ _ _ O-V
4 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 3 obj _ _ _ PRON they _ _ _ _ _ O-PRON
5 intimately intimately ADV RB _ 3 advmod _ _ _ ADV intimately _ _ _ _ _ O-ADV
6 , , PUNCT , _ 7 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
7 close close ADJ JJ Degree=Pos 3 parataxis _ _ _ ADJ close _ _ _ _ _ O-ADJ
8 at at ADP IN _ 9 case _ _ 1:1 P at hand p.Locus p.Locus _ _ _ B-P-p.Locus
9 hand hand NOUN NN Number=Sing 7 obl _ _ 1:2 _ _ _ _ _ _ _ I_
10 . . PUNCT . _ 3 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-28
# text = And that has n't much improved my opinion of them .
# mwe = And that has n't much improved my opinion of them .
1 And and CCONJ CC _ 6 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
2 that that PRON DT Number=Sing|PronType=Dem 6 nsubj _ _ _ PRON that _ _ _ _ _ O-PRON
3 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 aux _ _ _ AUX have _ _ _ _ _ O-AUX
4 n't not PART RB _ 6 advmod _ _ _ ADV not _ _ _ _ _ O-ADV
5 much much ADV RB _ 6 advmod _ _ _ ADV much _ _ _ _ _ O-ADV
6 improved improve VERB VBN Tense=Past|VerbForm=Part 0 root _ _ _ V improve _ _ _ _ _ O-V
7 my my PRON PRP$ Case=Gen|Number=Sing|Person=1|Poss=Yes|PronType=Prs 8 nmod:poss _ _ _ PRON.POSS my p.Experiencer p.Gestalt _ _ _ O-PRON.POSS-p.Experiencer|p.Gestalt
8 opinion opinion NOUN NN Number=Sing 6 obj _ _ _ N opinion _ _ _ _ _ O-N
9 of of ADP IN _ 10 case _ _ _ P of p.Topic p.Topic _ _ _ O-P-p.Topic
10 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 8 nmod _ _ _ PRON they _ _ _ _ _ O-PRON
11 . . PUNCT . _ 6 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-29
# text = Whenever I met one of them who seemed to me at all clear - sighted , I tried the experiment of showing him my Drawing Number One , which I have always kept .
# mwe = Whenever I met one of them who seemed to me at_all clear - sighted , I tried the experiment of showing him my Drawing Number One , which I have always kept .
1 Whenever whenever ADV WRB PronType=Int 3 advmod _ _ _ ADV whenever _ _ _ _ _ O-ADV
2 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
3 met meet VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 18 advcl _ _ _ V meet _ _ _ _ _ O-V
4 one one NUM CD NumForm=Word|NumType=Card 3 obj _ _ _ NUM one _ _ _ _ _ O-NUM
5 of of ADP IN _ 6 case _ _ _ P of p.Whole p.Whole _ _ _ O-P-p.Whole
6 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 4 nmod _ _ _ PRON they _ _ _ _ _ O-PRON
7 who who PRON WP PronType=Rel 8 nsubj _ _ _ PRON who _ _ _ _ _ O-PRON
8 seemed seem VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 4 acl:relcl _ _ _ V seem _ _ _ _ _ O-V
9 to to ADP IN _ 10 case _ _ _ P to p.Experiencer p.Goal _ _ _ O-P-p.Experiencer|p.Goal
10 me I PRON PRP Case=Acc|Number=Sing|Person=1|PronType=Prs 8 obl _ _ _ PRON I _ _ _ _ _ O-PRON
11 at at ADP IN _ 12 case _ _ 1:1 P at all p.Extent p.Extent _ _ _ B-P-p.Extent
12 all all DET DT _ 8 obl _ _ 1:2 _ _ _ _ _ _ _ I_
13 clear clear ADJ JJ Degree=Pos 15 amod _ _ _ ADJ clear _ _ _ _ _ O-ADJ
14 - - PUNCT HYPH _ 15 punct _ _ _ PUNCT - _ _ _ _ _ O-PUNCT
15 sighted sight VERB VBN Tense=Past|VerbForm=Part 8 xcomp _ _ _ V sight _ _ _ _ _ O-V
16 , , PUNCT , _ 3 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
17 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 18 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
18 tried try VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 0 root _ _ _ V try _ _ _ _ _ O-V
19 the the DET DT Definite=Def|PronType=Art 20 det _ _ _ DET the _ _ _ _ _ O-DET
20 experiment experiment NOUN NN Number=Sing 18 obj _ _ _ N experiment _ _ _ _ _ O-N
21 of of SCONJ IN _ 22 mark _ _ _ P of p.Identity p.Identity _ _ _ O-P-p.Identity
22 showing show VERB VBG VerbForm=Ger 20 acl _ _ _ V show _ _ _ _ _ O-V
23 him he PRON PRP Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs 22 iobj _ _ _ PRON he _ _ _ _ _ O-PRON
24 my my PRON PRP$ Case=Gen|Number=Sing|Person=1|Poss=Yes|PronType=Prs 27 nmod:poss _ _ _ PRON.POSS my p.Originator p.Gestalt _ _ _ O-PRON.POSS-p.Originator|p.Gestalt
25 Drawing drawing NOUN NN Number=Sing 27 compound _ _ _ N drawing _ _ _ _ _ O-N
26 Number Number PROPN NNP Number=Sing 27 compound _ _ _ N Number _ _ _ _ _ O-N
27 One one NOUN NN Number=Sing 22 obj _ _ _ N one _ _ _ _ _ O-N
28 , , PUNCT , _ 27 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
29 which which PRON WDT PronType=Rel 33 obj _ _ _ PRON which _ _ _ _ _ O-PRON
30 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 33 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
31 have have AUX VBP Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 33 aux _ _ _ AUX have _ _ _ _ _ O-AUX
32 always always ADV RB _ 33 advmod _ _ _ ADV always _ _ _ _ _ O-ADV
33 kept keep VERB VBN Tense=Past|VerbForm=Part 27 acl:relcl _ _ _ V keep _ _ _ _ _ O-V
34 . . PUNCT . _ 18 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-30
# text = I would try to find out , so , if this was a person of true understanding .
# mwe = I would try to find_out , so , if this was a person of true understanding .
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
2 would would AUX MD VerbForm=Fin 3 aux _ _ _ AUX would _ _ _ _ _ O-AUX
3 try try VERB VB VerbForm=Inf 0 root _ _ _ V try _ _ _ _ _ O-V
4 to to PART TO _ 5 mark _ _ _ INF to _ _ _ _ _ O-INF
5 find find VERB VB VerbForm=Inf 3 xcomp _ _ 1:1 V find out _ _ _ _ _ B-V
6 out out ADP RP _ 5 compound:prt _ _ 1:2 _ _ _ _ _ _ _ I_
7 , , PUNCT , _ 8 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
8 so so ADV RB _ 14 advmod _ _ _ ADV so _ _ _ _ _ O-ADV
9 , , PUNCT , _ 8 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
10 if if SCONJ IN _ 14 mark _ _ _ SCONJ if _ _ _ _ _ O-SCONJ
11 this this PRON DT Number=Sing|PronType=Dem 14 nsubj _ _ _ PRON this _ _ _ _ _ O-PRON
12 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 14 cop _ _ _ AUX be _ _ _ _ _ O-AUX
13 a a DET DT Definite=Ind|PronType=Art 14 det _ _ _ DET a _ _ _ _ _ O-DET
14 person person NOUN NN Number=Sing 5 advcl _ _ _ N person _ _ _ _ _ O-N
15 of of ADP IN _ 17 case _ _ _ P of p.Characteristic p.Identity _ _ _ O-P-p.Characteristic|p.Identity
16 true true ADJ JJ Degree=Pos 17 amod _ _ _ ADJ true _ _ _ _ _ O-ADJ
17 understanding understanding NOUN NN Number=Sing 14 nmod _ _ _ N understanding _ _ _ _ _ O-N
18 . . PUNCT . _ 3 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-31
# text = But , whoever it was , he , or she , would always say : " That is a hat . "
# mwe = But , whoever it was , he , or she , would always say : " That is a hat . "
1 But but CCONJ CC _ 14 cc _ _ _ CCONJ but _ _ _ _ _ O-CCONJ
2 , , PUNCT , _ 14 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
3 whoever whoever PRON WP PronType=Rel 14 advcl _ _ _ PRON whoever _ _ _ _ _ O-PRON
4 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 3 nsubj _ _ _ PRON it _ _ _ _ _ O-PRON
5 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 3 cop _ _ _ AUX be _ _ _ _ _ O-AUX
6 , , PUNCT , _ 14 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
7 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 14 nsubj _ _ _ PRON he _ _ _ _ _ O-PRON
8 , , PUNCT , _ 10 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
9 or or CCONJ CC _ 10 cc _ _ _ CCONJ or _ _ _ _ _ O-CCONJ
10 she she PRON PRP Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs 7 conj _ _ _ PRON she _ _ _ _ _ O-PRON
11 , , PUNCT , _ 14 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
12 would would AUX MD VerbForm=Fin 14 aux _ _ _ AUX would _ _ _ _ _ O-AUX
13 always always ADV RB _ 14 advmod _ _ _ ADV always _ _ _ _ _ O-ADV
14 say say VERB VB VerbForm=Inf 0 root _ _ _ V say _ _ _ _ _ O-V
15 : : PUNCT : _ 14 punct _ _ _ PUNCT : _ _ _ _ _ O-PUNCT
16 " " PUNCT `` _ 14 punct _ _ _ PUNCT " _ _ _ _ _ O-PUNCT
17 That that PRON DT Number=Sing|PronType=Dem 20 nsubj _ _ _ PRON that _ _ _ _ _ O-PRON
18 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 20 cop _ _ _ AUX be _ _ _ _ _ O-AUX
19 a a DET DT Definite=Ind|PronType=Art 20 det _ _ _ DET a _ _ _ _ _ O-DET
20 hat hat NOUN NN Number=Sing 14 ccomp _ _ _ N hat _ _ _ _ _ O-N
21 . . PUNCT . _ 14 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
22 " " PUNCT '' _ 14 punct _ _ _ PUNCT " _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-32
# text = Then I would never talk to that person about boa constrictors , or primeval forests , or stars .
# mwe = Then I would never talk to that person about boa constrictors , or primeval forests , or stars .
1 Then then ADV RB PronType=Dem 5 advmod _ _ _ ADV then _ _ _ _ _ O-ADV
2 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 5 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
3 would would AUX MD VerbForm=Fin 5 aux _ _ _ AUX would _ _ _ _ _ O-AUX
4 never never ADV RB _ 5 advmod _ _ _ ADV never _ _ _ _ _ O-ADV
5 talk talk VERB VB VerbForm=Inf 0 root _ _ _ V talk _ _ _ _ _ O-V
6 to to ADP IN _ 8 case _ _ _ P to p.Recipient p.Goal _ _ _ O-P-p.Recipient|p.Goal
7 that that DET DT Number=Sing|PronType=Dem 8 det _ _ _ DET that _ _ _ _ _ O-DET
8 person person NOUN NN Number=Sing 5 obl _ _ _ N person _ _ _ _ _ O-N
9 about about ADP IN _ 11 case _ _ _ P about p.Topic p.Topic _ _ _ O-P-p.Topic
10 boa boa NOUN NN Number=Sing 11 compound _ _ _ N boa _ _ _ _ _ O-N
11 constrictors constrictor NOUN NNS Number=Plur 8 nmod _ _ _ N constrictor _ _ _ _ _ O-N
12 , , PUNCT , _ 15 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
13 or or CCONJ CC _ 15 cc _ _ _ CCONJ or _ _ _ _ _ O-CCONJ
14 primeval primeval ADJ JJ Degree=Pos 15 amod _ _ _ ADJ primeval _ _ _ _ _ O-ADJ
15 forests forest NOUN NNS Number=Plur 11 conj _ _ _ N forest _ _ _ _ _ O-N
16 , , PUNCT , _ 18 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
17 or or CCONJ CC _ 18 cc _ _ _ CCONJ or _ _ _ _ _ O-CCONJ
18 stars star NOUN NNS Number=Plur 11 conj _ _ _ N star _ _ _ _ _ O-N
19 . . PUNCT . _ 5 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-33
# text = I would bring myself down to his level .
# mwe = I would bring_ myself _down to his level .
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
2 would would AUX MD VerbForm=Fin 3 aux _ _ _ AUX would _ _ _ _ _ O-AUX
3 bring bring VERB VB VerbForm=Inf 0 root _ _ 1:1 V bring down _ _ _ _ _ B-V
4 myself myself PRON PRP Case=Acc|Number=Sing|Person=1|PronType=Prs|Reflex=Yes 3 obj _ _ _ PRON myself _ _ _ _ _ o-PRON
5 down down ADP RP _ 3 compound:prt _ _ 1:2 _ _ _ _ _ _ _ I_
6 to to ADP IN _ 8 case _ _ _ P to p.Goal p.Goal _ _ _ O-P-p.Goal
7 his his PRON PRP$ Case=Gen|Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 8 nmod:poss _ _ _ PRON.POSS his p.Gestalt p.Gestalt _ _ _ O-PRON.POSS-p.Gestalt
8 level level NOUN NN Number=Sing 3 obl _ _ _ N level _ _ _ _ _ O-N
9 . . PUNCT . _ 3 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-34
# text = I would talk to him about bridge , and golf , and politics , and neckties .
# mwe = I would talk to him about bridge , and golf , and politics , and neckties .
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
2 would would AUX MD VerbForm=Fin 3 aux _ _ _ AUX would _ _ _ _ _ O-AUX
3 talk talk VERB VB VerbForm=Inf 0 root _ _ _ V talk _ _ _ _ _ O-V
4 to to ADP IN _ 5 case _ _ _ P to p.Recipient p.Goal _ _ _ O-P-p.Recipient|p.Goal
5 him he PRON PRP Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 obl _ _ _ PRON he _ _ _ _ _ O-PRON
6 about about ADP IN _ 7 case _ _ _ P about p.Topic p.Topic _ _ _ O-P-p.Topic
7 bridge bridge NOUN NN Number=Sing 3 obl _ _ _ N bridge _ _ _ _ _ O-N
8 , , PUNCT , _ 10 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
9 and and CCONJ CC _ 10 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
10 golf golf NOUN NN Number=Sing 7 conj _ _ _ N golf _ _ _ _ _ O-N
11 , , PUNCT , _ 13 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
12 and and CCONJ CC _ 13 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
13 politics politics NOUN NNS Number=Plur 7 conj _ _ _ N politics _ _ _ _ _ O-N
14 , , PUNCT , _ 16 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
15 and and CCONJ CC _ 16 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
16 neckties necktie NOUN NNS Number=Plur 7 conj _ _ _ N necktie _ _ _ _ _ O-N
17 . . PUNCT . _ 3 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-146
# text = Chapter 4 .
# mwe = Chapter 4 .
1 Chapter Chapter PROPN NNP Number=Sing 0 root _ _ _ N Chapter _ _ _ _ _ O-N
2 4 4 NUM CD NumForm=Digit|NumType=Card 1 dep _ _ _ NUM 4 _ _ _ _ _ O-NUM
3 . . PUNCT . _ 1 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-147
# text = I had thus learned a second fact of great importance : this was that the planet the little prince came from was scarcely any larger than a house !
# mwe = I had thus learned a second fact of great importance : this was that the planet the little prince came from was scarcely any larger than a house !
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 4 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
2 had have AUX VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 4 aux _ _ _ AUX have _ _ _ _ _ O-AUX
3 thus thus ADV RB _ 4 advmod _ _ _ ADV thus _ _ _ _ _ O-ADV
4 learned learn VERB VBN Tense=Past|VerbForm=Part 0 root _ _ _ V learn _ _ _ _ _ O-V
5 a a DET DT Definite=Ind|PronType=Art 7 det _ _ _ DET a _ _ _ _ _ O-DET
6 second second ADJ JJ Degree=Pos|NumType=Ord 7 amod _ _ _ ADJ second _ _ _ _ _ O-ADJ
7 fact fact NOUN NN Number=Sing 4 obj _ _ _ N fact _ _ _ _ _ O-N
8 of of ADP IN _ 10 case _ _ _ P of p.Characteristic p.Identity _ _ _ O-P-p.Characteristic|p.Identity
9 great great ADJ JJ Degree=Pos 10 amod _ _ _ ADJ great _ _ _ _ _ O-ADJ
10 importance importance NOUN NN Number=Sing 7 nmod _ _ _ N importance _ _ _ _ _ O-N
11 : : PUNCT : _ 4 punct _ _ _ PUNCT : _ _ _ _ _ O-PUNCT
12 this this PRON DT Number=Sing|PronType=Dem 25 nsubj:outer _ _ _ PRON this _ _ _ _ _ O-PRON
13 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 25 cop _ _ _ AUX be _ _ _ _ _ O-AUX
14 that that SCONJ IN _ 25 mark _ _ _ SCONJ that _ _ _ _ _ O-SCONJ
15 the the DET DT Definite=Def|PronType=Art 16 det _ _ _ DET the _ _ _ _ _ O-DET
16 planet planet NOUN NN Number=Sing 25 nsubj _ _ _ N planet _ _ _ _ _ O-N
17 the the DET DT Definite=Def|PronType=Art 19 det _ _ _ DET the _ _ _ _ _ O-DET
18 little little ADJ JJ Degree=Pos 19 amod _ _ _ ADJ little _ _ _ _ _ O-ADJ
19 prince prince NOUN NN Number=Sing 20 nsubj _ _ _ N prince _ _ _ _ _ O-N
20 came come VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 16 acl:relcl _ _ _ V come _ _ _ _ _ O-V
21 from from ADP IN _ 20 obl _ _ _ P from p.Source p.Source _ _ _ O-P-p.Source
22 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 25 cop _ _ _ AUX be _ _ _ _ _ O-AUX
23 scarcely scarcely ADV RB _ 25 advmod _ _ _ ADV scarcely _ _ _ _ _ O-ADV
24 any any ADV RB _ 25 advmod _ _ _ ADV any _ _ _ _ _ O-ADV
25 larger large ADJ JJR Degree=Cmp 4 parataxis _ _ _ ADJ large _ _ _ _ _ O-ADJ
26 than than ADP IN _ 28 case _ _ _ P than p.ComparisonRef p.ComparisonRef _ _ _ O-P-p.ComparisonRef
27 a a DET DT Definite=Ind|PronType=Art 28 det _ _ _ DET a _ _ _ _ _ O-DET
28 house house NOUN NN Number=Sing 25 obl _ _ _ N house _ _ _ _ _ O-N
29 ! ! PUNCT . _ 4 punct _ _ _ PUNCT ! _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-148
# text = But that did not really surprise me much .
# mwe = But that did not really surprise me much .
1 But but CCONJ CC _ 6 cc _ _ _ CCONJ but _ _ _ _ _ O-CCONJ
2 that that PRON DT Number=Sing|PronType=Dem 6 nsubj _ _ _ PRON that _ _ _ _ _ O-PRON
3 did do AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 aux _ _ _ AUX do _ _ _ _ _ O-AUX
4 not not PART RB _ 6 advmod _ _ _ ADV not _ _ _ _ _ O-ADV
5 really really ADV RB _ 6 advmod _ _ _ ADV really _ _ _ _ _ O-ADV
6 surprise surprise VERB VB VerbForm=Inf 0 root _ _ _ V surprise _ _ _ _ _ O-V
7 me I PRON PRP Case=Acc|Number=Sing|Person=1|PronType=Prs 6 obj _ _ _ PRON I _ _ _ _ _ O-PRON
8 much much ADV RB _ 6 advmod _ _ _ ADV much _ _ _ _ _ O-ADV
9 . . PUNCT . _ 6 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-149
# text = I knew very well that in addition to the great planets -- such as the Earth , Jupiter , Mars , Venus -- to which we have given names , there are also hundreds of others , some of which are so small that one has a hard time seeing them through the telescope .
# mwe = I knew very well that in_addition_to the great planets -- such_as the Earth , Jupiter , Mars , Venus -- to which we have given names , there are also hundreds of others , some of which are so small that one has a hard time seeing them through the telescope .
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 2 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
2 knew know VERB VBD Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 0 root _ _ _ V know _ _ _ _ _ O-V
3 very very ADV RB _ 4 advmod _ _ _ ADV very _ _ _ _ _ O-ADV
4 well well ADV RB Degree=Pos 2 advmod _ _ _ ADV well _ _ _ _ _ O-ADV
5 that that SCONJ IN _ 32 mark _ _ _ SCONJ that _ _ _ _ _ O-SCONJ
6 in in ADP IN _ 7 case _ _ 1:1 DISC in addition to _ _ _ _ _ B-DISC
7 addition addition NOUN NN Number=Sing 32 obl _ _ 1:2 _ _ _ _ _ _ _ I_
8 to to ADP IN _ 11 case _ _ 1:3 _ _ _ _ _ _ _ I_
9 the the DET DT Definite=Def|PronType=Art 11 det _ _ _ DET the _ _ _ _ _ O-DET
10 great great ADJ JJ Degree=Pos 11 amod _ _ _ ADJ great _ _ _ _ _ O-ADJ
11 planets planet NOUN NNS Number=Plur 7 nmod _ _ _ N planet _ _ _ _ _ O-N
12 -- -- PUNCT , _ 11 punct _ _ _ PUNCT -- _ _ _ _ _ O-PUNCT
13 such such ADJ JJ Degree=Pos 16 case _ _ 2:1 P such as p.PartPortion p.PartPortion _ _ _ B-P-p.PartPortion
14 as as ADP IN _ 13 fixed _ _ 2:2 _ _ _ _ _ _ _ I_
15 the the DET DT Definite=Def|PronType=Art 16 det _ _ _ DET the _ _ _ _ _ O-DET
16 Earth Earth PROPN NNP Number=Sing 11 nmod _ _ _ N Earth _ _ _ _ _ O-N
17 , , PUNCT , _ 18 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
18 Jupiter Jupiter PROPN NNP Number=Sing 16 conj _ _ _ N Jupiter _ _ _ _ _ O-N
19 , , PUNCT , _ 20 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
20 Mars Mars PROPN NNP Number=Sing 16 conj _ _ _ N Mars _ _ _ _ _ O-N
21 , , PUNCT , _ 22 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
22 Venus Venus PROPN NNP Number=Sing 16 conj _ _ _ N Venus _ _ _ _ _ O-N
23 -- -- PUNCT , _ 16 punct _ _ _ PUNCT -- _ _ _ _ _ O-PUNCT
24 to to ADP IN _ 25 case _ _ _ P to p.Recipient p.Goal _ _ _ O-P-p.Recipient|p.Goal
25 which which PRON WDT PronType=Rel 28 obl _ _ _ PRON which _ _ _ _ _ O-PRON
26 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 28 nsubj _ _ _ PRON we _ _ _ _ _ O-PRON
27 have have AUX VBP Mood=Ind|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin 28 aux _ _ _ AUX have _ _ _ _ _ O-AUX
28 given give VERB VBN Tense=Past|VerbForm=Part 16 acl:relcl _ _ _ V give _ _ _ _ _ O-V
29 names name NOUN NNS Number=Plur 28 obj _ _ _ N name _ _ _ _ _ O-N
30 , , PUNCT , _ 7 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
31 there there PRON EX _ 32 expl _ _ _ PRON there _ _ _ _ _ O-PRON
32 are be VERB VBP Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin 2 parataxis _ _ _ V be _ _ _ _ _ O-V
33 also also ADV RB _ 32 advmod _ _ _ ADV also _ _ _ _ _ O-ADV
34 hundreds hundred NOUN NNS Number=Plur 32 nsubj _ _ _ N hundred _ _ _ _ _ O-N
35 of of ADP IN _ 36 case _ _ _ P of p.QuantityItem p.QuantityItem _ _ _ O-P-p.QuantityItem
36 others other NOUN NNS Number=Plur 34 nmod _ _ _ N other _ _ _ _ _ O-N
37 , , PUNCT , _ 43 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
38 some some DET DT _ 43 nsubj _ _ _ DET some _ _ _ _ _ O-DET
39 of of ADP IN _ 40 case _ _ _ P of p.QuantityItem p.Whole _ _ _ O-P-p.QuantityItem|p.Whole
40 which which PRON WDT PronType=Rel 38 nmod _ _ _ PRON which _ _ _ _ _ O-PRON
41 are be AUX VBP Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin 43 cop _ _ _ AUX be _ _ _ _ _ O-AUX
42 so so ADV RB _ 43 advmod _ _ _ ADV so _ _ _ _ _ O-ADV
43 small small ADJ JJ Degree=Pos 34 acl:relcl _ _ _ ADJ small _ _ _ _ _ O-ADJ
44 that that SCONJ IN _ 46 mark _ _ _ SCONJ that _ _ _ _ _ O-SCONJ
45 one one PRON PRP Number=Sing|Person=3|PronType=Prs 46 nsubj _ _ _ PRON one _ _ _ _ _ O-PRON
46 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 43 ccomp _ _ _ V have _ _ _ _ _ O-V
47 a a DET DT Definite=Ind|PronType=Art 49 det _ _ _ DET a _ _ _ _ _ O-DET
48 hard hard ADJ JJ Degree=Pos 49 amod _ _ _ ADJ hard _ _ _ _ _ O-ADJ
49 time time NOUN NN Number=Sing 46 obj _ _ _ N time _ _ _ _ _ O-N
50 seeing see VERB VBG VerbForm=Ger 49 acl _ _ _ V see _ _ _ _ _ O-V
51 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 50 obj _ _ _ PRON they _ _ _ _ _ O-PRON
52 through through ADP IN _ 54 case _ _ _ P through p.Instrument p.Path _ _ _ O-P-p.Instrument|p.Path
53 the the DET DT Definite=Def|PronType=Art 54 det _ _ _ DET the _ _ _ _ _ O-DET
54 telescope telescope NOUN NN Number=Sing 50 obl _ _ _ N telescope _ _ _ _ _ O-N
55 . . PUNCT . _ 2 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-150
# text = When an astronomer discovers one of these he does not give it a name , but only a number .
# mwe = When an astronomer discovers one of these he does not give it a name , but only a number .
1 When when ADV WRB PronType=Int 4 advmod _ _ _ ADV when _ _ _ _ _ O-ADV
2 an a DET DT Definite=Ind|PronType=Art 3 det _ _ _ DET a _ _ _ _ _ O-DET
3 astronomer astronomer NOUN NN Number=Sing 4 nsubj _ _ _ N astronomer _ _ _ _ _ O-N
4 discovers discover VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 11 advcl _ _ _ V discover _ _ _ _ _ O-V
5 one one NUM CD NumForm=Word|NumType=Card 4 obj _ _ _ NUM one _ _ _ _ _ O-NUM
6 of of ADP IN _ 7 case _ _ _ P of p.Whole p.Whole _ _ _ O-P-p.Whole
7 these this PRON DT Number=Plur|PronType=Dem 5 nmod _ _ _ PRON this _ _ _ _ _ O-PRON
8 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 11 nsubj _ _ _ PRON he _ _ _ _ _ O-PRON
9 does do AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 11 aux _ _ _ AUX do _ _ _ _ _ O-AUX
10 not not PART RB _ 11 advmod _ _ _ ADV not _ _ _ _ _ O-ADV
11 give give VERB VB VerbForm=Inf 0 root _ _ _ V give _ _ _ _ _ O-V
12 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 11 iobj _ _ _ PRON it _ _ _ _ _ O-PRON
13 a a DET DT Definite=Ind|PronType=Art 14 det _ _ _ DET a _ _ _ _ _ O-DET
14 name name NOUN NN Number=Sing 11 obj _ _ _ N name _ _ _ _ _ O-N
15 , , PUNCT , _ 19 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
16 but but CCONJ CC _ 19 cc _ _ _ CCONJ but _ _ _ _ _ O-CCONJ
17 only only ADV RB _ 19 advmod _ _ _ ADV only _ _ _ _ _ O-ADV
18 a a DET DT Definite=Ind|PronType=Art 19 det _ _ _ DET a _ _ _ _ _ O-DET
19 number number NOUN NN Number=Sing 14 conj _ _ _ N number _ _ _ _ _ O-N
20 . . PUNCT . _ 11 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-151
# text = He might call it , for example , " Asteroid 325 . "
# mwe = He might call it , for_example , " Asteroid 325 . "
1 He he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 nsubj _ _ _ PRON he _ _ _ _ _ O-PRON
2 might might AUX MD VerbForm=Fin 3 aux _ _ _ AUX might _ _ _ _ _ O-AUX
3 call call VERB VB VerbForm=Inf 0 root _ _ _ V call _ _ _ _ _ O-V
4 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 3 obj _ _ _ PRON it _ _ _ _ _ O-PRON
5 , , PUNCT , _ 3 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
6 for for ADP IN _ 7 case _ _ 1:1 DISC for example _ _ _ _ _ B-DISC
7 example example NOUN NN Number=Sing 10 nmod _ _ 1:2 _ _ _ _ _ _ _ I_
8 , , PUNCT , _ 10 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
9 " " PUNCT `` _ 10 punct _ _ _ PUNCT " _ _ _ _ _ O-PUNCT
10 Asteroid Asteroid PROPN NNP Number=Sing 3 parataxis _ _ _ N Asteroid _ _ _ _ _ O-N
11 325 325 NUM CD NumForm=Digit|NumType=Card 10 nummod _ _ _ NUM 325 _ _ _ _ _ O-NUM
12 . . PUNCT . _ 3 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
13 " " PUNCT '' _ 3 punct _ _ _ PUNCT " _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-152
# text = I have serious reason to believe that the planet from which the little prince came is the asteroid known as B-612 .
# mwe = I have serious reason to believe that the planet from which the little prince came is the asteroid known as B-612 .
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 2 nsubj _ _ _ PRON I _ _ _ _ _ O-PRON
2 have have VERB VBP Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ _ _ V have _ _ _ _ _ O-V
3 serious serious ADJ JJ Degree=Pos 4 amod _ _ _ ADJ serious _ _ _ _ _ O-ADJ
4 reason reason NOUN NN Number=Sing 2 obj _ _ _ N reason _ _ _ _ _ O-N
5 to to PART TO _ 6 mark _ _ _ INF to _ _ _ _ _ O-INF
6 believe believe VERB VB VerbForm=Inf 4 acl _ _ _ V believe _ _ _ _ _ O-V
7 that that SCONJ IN _ 18 mark _ _ _ SCONJ that _ _ _ _ _ O-SCONJ
8 the the DET DT Definite=Def|PronType=Art 9 det _ _ _ DET the _ _ _ _ _ O-DET
9 planet planet NOUN NN Number=Sing 18 nsubj _ _ _ N planet _ _ _ _ _ O-N
10 from from ADP IN _ 11 case _ _ _ P from p.Source p.Source _ _ _ O-P-p.Source
11 which which PRON WDT PronType=Rel 15 obl _ _ _ PRON which _ _ _ _ _ O-PRON
12 the the DET DT Definite=Def|PronType=Art 14 det _ _ _ DET the _ _ _ _ _ O-DET
13 little little ADJ JJ Degree=Pos 14 amod _ _ _ ADJ little _ _ _ _ _ O-ADJ
14 prince prince NOUN NN Number=Sing 15 nsubj _ _ _ N prince _ _ _ _ _ O-N
15 came come VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 9 acl:relcl _ _ _ V come _ _ _ _ _ O-V
16 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 18 cop _ _ _ AUX be _ _ _ _ _ O-AUX
17 the the DET DT Definite=Def|PronType=Art 18 det _ _ _ DET the _ _ _ _ _ O-DET
18 asteroid asteroid NOUN NN Number=Sing 6 ccomp _ _ _ N asteroid _ _ _ _ _ O-N
19 known know VERB VBN Tense=Past|VerbForm=Part 18 acl _ _ _ V know _ _ _ _ _ O-V
20 as as ADP IN _ 21 case _ _ _ P as p.Identity p.Identity _ _ _ O-P-p.Identity
21 B-612 B-612 PROPN NNP Number=Sing 19 obl _ _ _ N B-612 _ _ _ _ _ O-N
22 . . PUNCT . _ 2 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-153
# text = This asteroid has only once been seen through the telescope .
# mwe = This asteroid has only once been seen through the telescope .
1 This this DET DT Number=Sing|PronType=Dem 2 det _ _ _ DET this _ _ _ _ _ O-DET
2 asteroid asteroid NOUN NN Number=Sing 7 nsubj:pass _ _ _ N asteroid _ _ _ _ _ O-N
3 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 aux _ _ _ AUX have _ _ _ _ _ O-AUX
4 only only ADV RB _ 7 advmod _ _ _ ADV only _ _ _ _ _ O-ADV
5 once once ADV RB NumType=Mult 7 advmod _ _ _ ADV once _ _ _ _ _ O-ADV
6 been be AUX VBN Tense=Past|VerbForm=Part 7 aux:pass _ _ _ AUX be _ _ _ _ _ O-AUX
7 seen see VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ _ V see _ _ _ _ _ O-V
8 through through ADP IN _ 10 case _ _ _ P through p.Instrument p.Path _ _ _ O-P-p.Instrument|p.Path
9 the the DET DT Definite=Def|PronType=Art 10 det _ _ _ DET the _ _ _ _ _ O-DET
10 telescope telescope NOUN NN Number=Sing 7 obl _ _ _ N telescope _ _ _ _ _ O-N
11 . . PUNCT . _ 7 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-154
# text = That was by a Turkish astronomer , in 1909 .
# mwe = That was by a Turkish astronomer , in 1909 .
1 That that PRON DT Number=Sing|PronType=Dem 6 nsubj _ _ _ PRON that _ _ _ _ _ O-PRON
2 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 cop _ _ _ AUX be _ _ _ _ _ O-AUX
3 by by ADP IN _ 6 case _ _ _ P by p.Experiencer p.Agent _ _ _ O-P-p.Experiencer|p.Agent
4 a a DET DT Definite=Ind|PronType=Art 6 det _ _ _ DET a _ _ _ _ _ O-DET
5 Turkish Turkish ADJ JJ Degree=Pos 6 amod _ _ _ ADJ Turkish _ _ _ _ _ O-ADJ
6 astronomer astronomer NOUN NN Number=Sing 0 root _ _ _ N astronomer _ _ _ _ _ O-N
7 , , PUNCT , _ 9 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
8 in in ADP IN _ 9 case _ _ _ P in p.Time p.Time _ _ _ O-P-p.Time
9 1909 1909 NUM CD NumForm=Digit|NumType=Card 6 obl _ _ _ NUM 1909 _ _ _ _ _ O-NUM
10 . . PUNCT . _ 6 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-155
# text = On making his discovery , the astronomer had presented it to the International Astronomical Congress , in a great demonstration .
# mwe = On making his discovery , the astronomer had presented it to the International Astronomical Congress , in a great demonstration .
1 On on SCONJ IN _ 2 mark _ _ _ P on p.Time p.Time _ _ _ O-P-p.Time
2 making make VERB VBG VerbForm=Ger 9 advcl _ _ _ V make _ _ _ _ _ O-V
3 his his PRON PRP$ Case=Gen|Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 4 nmod:poss _ _ _ PRON.POSS his p.Agent p.Gestalt _ _ _ O-PRON.POSS-p.Agent|p.Gestalt
4 discovery discovery NOUN NN Number=Sing 2 obj _ _ _ N discovery _ _ _ _ _ O-N
5 , , PUNCT , _ 2 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
6 the the DET DT Definite=Def|PronType=Art 7 det _ _ _ DET the _ _ _ _ _ O-DET
7 astronomer astronomer NOUN NN Number=Sing 9 nsubj _ _ _ N astronomer _ _ _ _ _ O-N
8 had have AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 9 aux _ _ _ AUX have _ _ _ _ _ O-AUX
9 presented present VERB VBN Tense=Past|VerbForm=Part 0 root _ _ _ V present _ _ _ _ _ O-V
10 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 9 obj _ _ _ PRON it _ _ _ _ _ O-PRON
11 to to ADP IN _ 15 case _ _ _ P to p.Recipient p.Goal _ _ _ O-P-p.Recipient|p.Goal
12 the the DET DT Definite=Def|PronType=Art 15 det _ _ _ DET the _ _ _ _ _ O-DET
13 International International ADJ NNP Degree=Pos 15 amod _ _ _ ADJ International _ _ _ _ _ O-ADJ
14 Astronomical astronomical ADJ NNP Degree=Pos|Number=Sing 15 amod _ _ _ ADJ astronomical _ _ _ _ _ O-ADJ
15 Congress Congress PROPN NNP Number=Sing 9 obl _ _ _ N Congress _ _ _ _ _ O-N
16 , , PUNCT , _ 9 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
17 in in ADP IN _ 20 case _ _ _ P in p.Means p.Locus _ _ _ O-P-p.Means|p.Locus
18 a a DET DT Definite=Ind|PronType=Art 20 det _ _ _ DET a _ _ _ _ _ O-DET
19 great great ADJ JJ Degree=Pos 20 amod _ _ _ ADJ great _ _ _ _ _ O-ADJ
20 demonstration demonstration NOUN NN Number=Sing 9 obl _ _ _ N demonstration _ _ _ _ _ O-N
21 . . PUNCT . _ 9 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-156
# text = But he was in Turkish costume , and so nobody would believe what he said .
# mwe = But he was in Turkish costume , and so nobody would believe what he said .
1 But but CCONJ CC _ 6 cc _ _ _ CCONJ but _ _ _ _ _ O-CCONJ
2 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 6 nsubj _ _ _ PRON he _ _ _ _ _ O-PRON
3 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 cop _ _ _ AUX be _ _ _ _ _ O-AUX
4 in in ADP IN _ 6 case _ _ _ P in p.Possession p.Locus _ _ _ O-P-p.Possession|p.Locus
5 Turkish Turkish ADJ JJ Degree=Pos 6 amod _ _ _ ADJ Turkish _ _ _ _ _ O-ADJ
6 costume costume NOUN NN Number=Sing 0 root _ _ _ N costume _ _ _ _ _ O-N
7 , , PUNCT , _ 12 punct _ _ _ PUNCT , _ _ _ _ _ O-PUNCT
8 and and CCONJ CC _ 12 cc _ _ _ CCONJ and _ _ _ _ _ O-CCONJ
9 so so ADV RB _ 12 advmod _ _ _ ADV so _ _ _ _ _ O-ADV
10 nobody nobody PRON NN Number=Sing|PronType=Neg 12 nsubj _ _ _ PRON nobody _ _ _ _ _ O-PRON
11 would would AUX MD VerbForm=Fin 12 aux _ _ _ AUX would _ _ _ _ _ O-AUX
12 believe believe VERB VB VerbForm=Inf 6 conj _ _ _ V believe _ _ _ _ _ O-V
13 what what PRON WP PronType=Rel 12 obj _ _ _ PRON what _ _ _ _ _ O-PRON
14 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 15 nsubj _ _ _ PRON he _ _ _ _ _ O-PRON
15 said say VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 13 acl:relcl _ _ _ V say _ _ _ _ _ O-V
16 . . PUNCT . _ 6 punct _ _ _ PUNCT . _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-157
# text = Grown - ups are like that ...
# mwe = Grown - ups are like that ...
1 Grown grow VERB VBN Tense=Past|VerbForm=Part 3 compound _ _ _ ADJ grow _ _ _ _ _ O-ADJ
2 - - PUNCT HYPH _ 1 punct _ _ _ PUNCT - _ _ _ _ _ O-PUNCT
3 ups up NOUN NNS Number=Plur 6 nsubj _ _ _ N up _ _ _ _ _ O-N
4 are be AUX VBP Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ _ AUX be _ _ _ _ _ O-AUX
5 like like ADP IN _ 6 case _ _ _ P like p.ComparisonRef p.ComparisonRef _ _ _ O-P-p.ComparisonRef
6 that that PRON DT Number=Sing|PronType=Dem 0 root _ _ _ PRON that _ _ _ _ _ O-PRON
7 ... ... PUNCT . _ 6 punct _ _ _ PUNCT ... _ _ _ _ _ O-PUNCT
# sent_id = lpp_1943-158
# text = Fortunately , however , for the reputation of Asteroid B-612 , a Turkish dictator made a law that his subjects , under pain of death , should change to European costume .