-
Notifications
You must be signed in to change notification settings - Fork 15
/
upto12eng.conllu
1656 lines (1526 loc) · 77.7 KB
/
upto12eng.conllu
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
# sent_id = n01002042
# text = The new spending is fueled by Clinton’s large bank account.
1 The the DET DT Definite=Def|PronType=Art 3 det 3:det _
2 new new ADJ JJ Degree=Pos 3 amod 3:amod _
3 spending spending NOUN NN Number=Sing 5 nsubj:pass 5:nsubj:pass _
4 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 aux:pass 5:aux:pass _
5 fueled fuel VERB VBN Tense=Past|VerbForm=Part 0 root 0:root _
6 by by ADP IN _ 11 case 11:case _
7 Clinton Clinton PROPN NNP Number=Sing 11 nmod:poss 11:nmod:poss SpaceAfter=No
8 ’s ’s PART POS _ 7 case 7:case _
9 large large ADJ JJ Degree=Pos 11 amod 11:amod _
10 bank bank NOUN NN Number=Sing 11 compound 11:compound _
11 account account NOUN NN Number=Sing 5 obl 5:obl:by SpaceAfter=No
12 . . PUNCT . _ 5 punct 5:punct _
# newdoc id = n01003
# sent_id = n01003007
# text = $5,000 per person, the maximum allowed.
1 $ $ SYM $ _ 0 root 0:root SpaceAfter=No
2 5,000 5,000 NUM CD NumType=Card 1 nummod 1:nummod _
3 per per ADP IN _ 4 case 4:case _
4 person person NOUN NN Number=Sing 1 nmod 1:nmod:per SpaceAfter=No
5 , , PUNCT , _ 1 punct 1:punct _
6 the the DET DT Definite=Def|PronType=Art 7 det 7:det _
7 maximum maximum NOUN NN Number=Sing 1 appos 1:appos _
8 allowed allow VERB VBN Tense=Past|VerbForm=Part 7 acl 7:acl SpaceAfter=No
9 . . PUNCT . _ 1 punct 1:punct _
# sent_id = n01003013
# text = Maybe the dress code was too stuffy.
1 Maybe maybe ADV RB _ 7 advmod 7:advmod _
2 the the DET DT Definite=Def|PronType=Art 4 det 4:det _
3 dress dress NOUN NN Number=Sing 4 compound 4:compound _
4 code code NOUN NN Number=Sing 7 nsubj 7:nsubj _
5 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 7 cop 7:cop _
6 too too ADV RB _ 7 advmod 7:advmod _
7 stuffy stuffy ADJ JJ Degree=Pos 0 root 0:root SpaceAfter=No
8 . . PUNCT . _ 7 punct 7:punct _
# newdoc id = n01018
# sent_id = n01018024
# text = It's like a super power sometimes.
1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 6 nsubj 6:nsubj SpaceAfter=No
2 's be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop 6:cop _
3 like like ADP IN _ 6 case 6:case _
4 a a DET DT Definite=Ind|PronType=Art 6 det 6:det _
5 super super ADJ JJ Degree=Pos 6 amod 6:amod _
6 power power NOUN NN Number=Sing 0 root 0:root _
7 sometimes sometimes ADV RB _ 6 advmod 6:advmod SpaceAfter=No
8 . . PUNCT . _ 6 punct 6:punct _
# sent_id = n01018040
# text = The scheme makes money through sponsorship and advertising.
1 The the DET DT Definite=Def|PronType=Art 2 det 2:det _
2 scheme scheme NOUN NN Number=Sing 3 nsubj 3:nsubj _
3 makes make VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root 0:root _
4 money money NOUN NN Number=Sing 3 obj 3:obj _
5 through through ADP IN _ 6 case 6:case _
6 sponsorship sponsorship NOUN NN Number=Sing 3 obl 3:obl:through _
7 and and CCONJ CC _ 8 cc 8:cc _
8 advertising advertising NOUN NN Number=Sing 6 conj 3:obl:through|6:conj:and SpaceAfter=No
9 . . PUNCT . _ 3 punct 3:punct _
# newdoc id = n01020
# sent_id = n01020004
# text = Previously the jets had only been seen by bloggers.
1 Previously previously ADV RB _ 7 advmod 7:advmod _
2 the the DET DT Definite=Def|PronType=Art 3 det 3:det _
3 jets jet NOUN NNS Number=Plur 7 nsubj:pass 7:nsubj:pass _
4 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 7 aux 7:aux _
5 only only ADV RB _ 7 advmod 7:advmod _
6 been be AUX VBN Tense=Past|VerbForm=Part 7 aux:pass 7:aux:pass _
7 seen see VERB VBN Tense=Past|VerbForm=Part 0 root 0:root _
8 by by ADP IN _ 9 case 9:case _
9 bloggers blogger NOUN NNS Number=Plur 7 obl 7:obl:by SpaceAfter=No
10 . . PUNCT . _ 7 punct 7:punct _
# sent_id = n01026016
# text = Shenzhen's traffic police have opted for unconventional penalties before.
1 Shenzhen Shenzhen PROPN NNP Number=Sing 4 nmod:poss 4:nmod:poss SpaceAfter=No
2 's 's PART POS _ 1 case 1:case _
3 traffic traffic NOUN NN Number=Sing 4 compound 4:compound _
4 police police NOUN NNS Number=Plur 6 nsubj 6:nsubj _
5 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 aux 6:aux _
6 opted opt VERB VBN Tense=Past|VerbForm=Part 0 root 0:root _
7 for for ADP IN _ 9 case 9:case _
8 unconventional unconventional ADJ JJ Degree=Pos 9 amod 9:amod _
9 penalties penalty NOUN NNS Number=Plur 6 obl 6:obl:for _
10 before before ADV RB _ 6 advmod 6:advmod SpaceAfter=No
11 . . PUNCT . _ 6 punct 6:punct _
# newdoc id = n01027
# sent_id = n01027007
# text = Who are they?
1 Who who PRON WP PronType=Int 0 root 0:root _
2 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 1 cop 1:cop _
3 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 1 nsubj 1:nsubj SpaceAfter=No
4 ? ? PUNCT . _ 1 punct 1:punct _
# sent_id = n01027049
# text = Not everyone can rise above it.
1 Not not ADV RB Polarity=Neg 2 advmod 2:advmod _
2 everyone everyone NOUN NN Number=Sing 4 nsubj 4:nsubj _
3 can can AUX MD VerbForm=Fin 4 aux 4:aux _
4 rise rise VERB VB VerbForm=Inf 0 root 0:root _
5 above above ADP IN _ 6 case 6:case _
6 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 obl 4:obl:above SpaceAfter=No
7 . . PUNCT . _ 4 punct 4:punct _
# sent_id = n01039018
# text = That's not what we need in our country, folks.
1 That that PRON DT Number=Sing|PronType=Dem 2 nsubj 2:nsubj SpaceAfter=No
2 's be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root 0:root _
3 not not PART RB Polarity=Neg 2 advmod 2:advmod _
4 what what PRON WP PronType=Int 6 obj 6:obj _
5 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 6 nsubj 6:nsubj _
6 need need VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 2 ccomp 2:ccomp _
7 in in ADP IN _ 9 case 9:case _
8 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 9 nmod:poss 9:nmod:poss _
9 country country NOUN NN Number=Sing 6 obl 6:obl:in SpaceAfter=No
10 , , PUNCT , _ 2 punct 2:punct _
11 folks folk NOUN NNS Number=Plur 2 vocative 2:vocative SpaceAfter=No
12 . . PUNCT . _ 2 punct 2:punct _
# newdoc id = n01046
# sent_id = n01046003
# text = Our cellphones are so much more than phones these days.
1 Our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 2 nmod:poss 2:nmod:poss _
2 cellphones cellphone NOUN NNS Number=Plur 6 nsubj 6:nsubj _
3 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 cop 6:cop _
4 so so ADV RB _ 5 advmod 5:advmod _
5 much much ADV RB _ 6 advmod 6:advmod _
6 more more ADJ JJR Degree=Cmp 0 root 0:root _
7 than than ADP IN _ 8 case 8:case _
8 phones phone NOUN NNS Number=Plur 6 obl 6:obl:than _
9 these these DET DT Number=Plur|PronType=Dem 10 det 10:det _
10 days day NOUN NNS Number=Plur 6 obl:tmod 6:obl:tmod SpaceAfter=No
11 . . PUNCT . _ 6 punct 6:punct _
# newdoc id = n01047
# sent_id = n01047048
# text = That's what keeps us coming back for more.
1 That that PRON DT Number=Sing|PronType=Dem 3 nsubj 3:nsubj SpaceAfter=No
2 's be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 cop 3:cop _
3 what what PRON WP PronType=Int 0 root 0:root _
4 keeps keep VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 acl:relcl 3:acl:relcl _
5 us we PRON PRP Case=Acc|Number=Plur|Person=1|PronType=Prs 6 nsubj 6:nsubj _
6 coming come VERB VBG VerbForm=Ger 4 ccomp 4:ccomp _
7 back back ADV RB _ 6 advmod 6:advmod _
8 for for ADP IN _ 9 case 9:case _
9 more more ADJ JJR Degree=Cmp 6 obl 6:obl:for SpaceAfter=No
10 . . PUNCT . _ 3 punct 3:punct _
# sent_id = n01050009
# text = The current waiting period is eight weeks.
1 The the DET DT Definite=Def|PronType=Art 4 det 4:det _
2 current current ADJ JJ Degree=Pos 4 amod 4:amod _
3 waiting waiting NOUN NN Number=Sing 4 compound 4:compound _
4 period period NOUN NN Number=Sing 7 nsubj 7:nsubj _
5 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 cop 7:cop _
6 eight eight NUM CD NumType=Card 7 nummod 7:nummod _
7 weeks week NOUN NNS Number=Plur 0 root 0:root SpaceAfter=No
8 . . PUNCT . _ 7 punct 7:punct _
# sent_id = n01050019
# text = The new iron guidelines mean more donors are needed.
1 The the DET DT Definite=Def|PronType=Art 4 det 4:det _
2 new new ADJ JJ Degree=Pos 4 amod 4:amod _
3 iron iron NOUN NN Number=Sing 4 compound 4:compound _
4 guidelines guideline NOUN NNS Number=Plur 5 nsubj 5:nsubj _
5 mean mean VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root 0:root _
6 more more ADJ JJR Degree=Cmp 7 amod 7:amod _
7 donors donor NOUN NNS Number=Plur 9 nsubj:pass 9:nsubj:pass _
8 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 9 aux:pass 9:aux:pass _
9 needed need VERB VBN Tense=Past|VerbForm=Part 5 ccomp 5:ccomp SpaceAfter=No
10 . . PUNCT . _ 5 punct 5:punct _
# newdoc id = n01052
# sent_id = n01052004
# text = She was 84 years old.
1 She she PRON PRP Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs 5 nsubj 5:nsubj _
2 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 5 cop 5:cop _
3 84 84 NUM CD NumType=Card 4 nummod 4:nummod _
4 years year NOUN NNS Number=Plur 5 nmod:npmod 5:nmod:npmod _
5 old old ADJ JJ Degree=Pos 0 root 0:root SpaceAfter=No
6 . . PUNCT . _ 5 punct 5:punct _
# sent_id = n01057036
# text = Still, there are questions left unanswered.
1 Still still ADV RB _ 4 advmod 4:advmod SpaceAfter=No
2 , , PUNCT , _ 4 punct 4:punct _
3 there there PRON EX _ 4 expl 4:expl _
4 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root 0:root _
5 questions question NOUN NNS Number=Plur 4 nsubj 4:nsubj _
6 left leave VERB VBN Tense=Past|VerbForm=Part 5 acl 5:acl _
7 unanswered unanswered ADJ JJ Degree=Pos 6 xcomp 6:xcomp SpaceAfter=No
8 . . PUNCT . _ 4 punct 4:punct _
# sent_id = n01062049
# text = Then the commercial ends.
1 Then then ADV RB PronType=Dem 4 advmod 4:advmod _
2 the the DET DT Definite=Def|PronType=Art 3 det 3:det _
3 commercial commercial NOUN NN Number=Sing 4 nsubj 4:nsubj _
4 ends end VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root 0:root SpaceAfter=No
5 . . PUNCT . _ 4 punct 4:punct _
# sent_id = n01068038
# text = His skill in getting answers for taxpayers will be sorely missed.
1 His he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 2 nmod:poss 2:nmod:poss _
2 skill skill NOUN NN Number=Sing 11 nsubj:pass 11:nsubj:pass _
3 in in SCONJ IN _ 4 mark 4:mark _
4 getting get VERB VBG VerbForm=Ger 2 acl 2:acl:in _
5 answers answer NOUN NNS Number=Plur 4 obj 4:obj _
6 for for ADP IN _ 7 case 7:case _
7 taxpayers taxpayer NOUN NNS Number=Plur 4 obl 4:obl:for _
8 will will AUX MD VerbForm=Fin 11 aux 11:aux _
9 be be AUX VB VerbForm=Inf 11 aux:pass 11:aux:pass _
10 sorely sorely ADV RB _ 11 advmod 11:advmod _
11 missed miss VERB VBN Tense=Past|VerbForm=Part 0 root 0:root SpaceAfter=No
12 . . PUNCT . _ 11 punct 11:punct _
# newdoc id = n01070
# sent_id = n01070016
# text = More than 330 crew are onboard the ship.
1 More more ADJ JJR Degree=Cmp 3 advmod 3:advmod _
2 than than ADP IN _ 1 fixed 1:fixed _
3 330 330 NUM CD NumType=Card 4 nummod 4:nummod _
4 crew crew NOUN NNS Number=Plur 8 nsubj 8:nsubj _
5 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 8 cop 8:cop _
6 onboard onboard ADP IN _ 8 case 8:case _
7 the the DET DT Definite=Def|PronType=Art 8 det 8:det _
8 ship ship NOUN NN Number=Sing 0 root 0:root SpaceAfter=No
9 . . PUNCT . _ 8 punct 8:punct _
# sent_id = n01070020
# text = People got killed there.
1 People people NOUN NNS Number=Plur 3 nsubj:pass 3:nsubj:pass _
2 got get AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 aux:pass 3:aux:pass _
3 killed kill VERB VBN Tense=Past|VerbForm=Part 0 root 0:root _
4 there there ADV RB PronType=Dem 3 advmod 3:advmod SpaceAfter=No
5 . . PUNCT . _ 3 punct 3:punct _
# sent_id = n01072012
# text = He worked for the BBC for a decade.
1 He he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 nsubj 2:nsubj _
2 worked work VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root 0:root _
3 for for ADP IN _ 5 case 5:case _
4 the the DET DT Definite=Def|PronType=Art 5 det 5:det _
5 BBC BBC PROPN NNP Number=Sing 2 obl 2:obl:for _
6 for for ADP IN _ 8 case 8:case _
7 a a DET DT Definite=Ind|PronType=Art 8 det 8:det _
8 decade decade NOUN NN Number=Sing 2 obl 2:obl:for SpaceAfter=No
9 . . PUNCT . _ 2 punct 2:punct _
# newdoc id = n01073
# sent_id = n01073004
# text = Who can stop this Australia side?
1 Who who PRON WP PronType=Int 3 nsubj 3:nsubj _
2 can can AUX MD VerbForm=Fin 3 aux 3:aux _
3 stop stop VERB VB VerbForm=Inf 0 root 0:root _
4 this this DET DT Number=Sing|PronType=Dem 6 det 6:det _
5 Australia Australia PROPN NNP Number=Sing 6 compound 6:compound _
6 side side NOUN NN Number=Sing 3 obj 3:obj SpaceAfter=No
7 ? ? PUNCT . _ 3 punct 3:punct _
# newdoc id = n01074
# sent_id = n01074011
# text = They have one crack at redemption, beating England.
1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 2 nsubj 2:nsubj _
2 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root 0:root _
3 one one NUM CD NumType=Card 4 nummod 4:nummod _
4 crack crack NOUN NN Number=Sing 2 obj 2:obj _
5 at at ADP IN _ 6 case 6:case _
6 redemption redemption NOUN NN Number=Sing 4 nmod 4:nmod:at SpaceAfter=No
7 , , PUNCT , _ 2 punct 2:punct _
8 beating beat VERB VBG VerbForm=Ger 2 parataxis 2:parataxis _
9 England England PROPN NNP Number=Sing 8 obj 8:obj SpaceAfter=No
10 . . PUNCT . _ 2 punct 2:punct _
# sent_id = n01076030
# text = He’s spoken in favour of torture.
1 He he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 nsubj 3:nsubj SpaceAfter=No
2 ’s have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 aux 3:aux _
3 spoken speak VERB VBN Tense=Past|VerbForm=Part 0 root 0:root _
4 in in ADP IN _ 5 case 5:case _
5 favour favour NOUN NN Number=Sing 3 obl 3:obl:in _
6 of of ADP IN _ 7 case 7:case _
7 torture torture NOUN NN Number=Sing 5 nmod 5:nmod:of SpaceAfter=No
8 . . PUNCT . _ 3 punct 3:punct _
# newdoc id = n01077
# sent_id = n01077018
# text = I also struggle with passwords.
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj 3:nsubj _
2 also also ADV RB _ 3 advmod 3:advmod _
3 struggle struggle VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root 0:root _
4 with with ADP IN _ 5 case 5:case _
5 passwords password NOUN NNS Number=Plur 3 obl 3:obl:with SpaceAfter=No
6 . . PUNCT . _ 3 punct 3:punct _
# newdoc id = n01080
# sent_id = n01080039
# text = I can just do that with my life.
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 4 nsubj 4:nsubj _
2 can can AUX MD VerbForm=Fin 4 aux 4:aux _
3 just just ADV RB _ 4 advmod 4:advmod _
4 do do VERB VB VerbForm=Inf 0 root 0:root _
5 that that PRON DT Number=Sing|PronType=Dem 4 obj 4:obj _
6 with with ADP IN _ 8 case 8:case _
7 my my PRON PRP$ Number=Sing|Person=1|Poss=Yes|PronType=Prs 8 nmod:poss 8:nmod:poss _
8 life life NOUN NN Number=Sing 4 obl 4:obl:with SpaceAfter=No
9 . . PUNCT . _ 4 punct 4:punct _
# sent_id = n01083035
# text = In this context, railing against trade makes sense.
1 In in ADP IN _ 3 case 3:case _
2 this this DET DT Number=Sing|PronType=Dem 3 det 3:det _
3 context context NOUN NN Number=Sing 8 obl 8:obl:in SpaceAfter=No
4 , , PUNCT , _ 8 punct 8:punct _
5 railing rail VERB VBG VerbForm=Ger 8 csubj 8:csubj _
6 against against ADP IN _ 7 case 7:case _
7 trade trade NOUN NN Number=Sing 5 obl 5:obl:against _
8 makes make VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root 0:root _
9 sense sense NOUN NN Number=Sing 8 obj 8:obj SpaceAfter=No
10 . . PUNCT . _ 8 punct 8:punct _
# sent_id = n01085008
# text = Fast forward to 2016 and this is increasingly worthy of attention.
1 Fast fast ADV RB Degree=Pos 2 advmod 2:advmod _
2 forward forward VERB VB VerbForm=Inf 0 root 0:root _
3 to to ADP IN _ 4 case 4:case _
4 2016 2016 NUM CD NumType=Card 2 obl 2:obl:to _
5 and and CCONJ CC _ 9 cc 9:cc _
6 this this PRON DT Number=Sing|PronType=Dem 9 nsubj 9:nsubj _
7 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 cop 9:cop _
8 increasingly increasingly ADV RB _ 9 advmod 9:advmod _
9 worthy worthy ADJ JJ Degree=Pos 2 conj 2:conj:and _
10 of of ADP IN _ 11 case 11:case _
11 attention attention NOUN NN Number=Sing 9 obl 9:obl:of SpaceAfter=No
12 . . PUNCT . _ 2 punct 2:punct _
# sent_id = n01086031
# text = That’s just legitimately horrendous.
1 That that PRON DT Number=Sing|PronType=Dem 5 nsubj 5:nsubj SpaceAfter=No
2 ’s be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 cop 5:cop _
3 just just ADV RB _ 5 advmod 5:advmod _
4 legitimately legitimately ADV RB _ 5 advmod 5:advmod _
5 horrendous horrendous ADJ JJ Degree=Pos 0 root 0:root SpaceAfter=No
6 . . PUNCT . _ 5 punct 5:punct _
# sent_id = n01087035
# text = “I loved the tropical colours,” he says.
1 “ “ PUNCT `` _ 3 punct 3:punct SpaceAfter=No
2 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj 3:nsubj _
3 loved love VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root 0:root _
4 the the DET DT Definite=Def|PronType=Art 6 det 6:det _
5 tropical tropical ADJ JJ Degree=Pos 6 amod 6:amod _
6 colours colour NOUN NNS Number=Plur 3 obj 3:obj SpaceAfter=No
7 , , PUNCT , _ 3 punct 3:punct SpaceAfter=No
8 ” ” PUNCT '' _ 3 punct 3:punct _
9 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 10 nsubj 10:nsubj _
10 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 parataxis 3:parataxis SpaceAfter=No
11 . . PUNCT . _ 3 punct 3:punct _
# newdoc id = n01092
# sent_id = n01092008
# text = Let’s just say he’s wrong.
1 Let let VERB VB VerbForm=Inf 0 root 0:root SpaceAfter=No
2 ’s us PRON PRP _ 1 obj 1:obj|4:nsubj:xsubj _
3 just just ADV RB _ 4 advmod 4:advmod _
4 say say VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 1 xcomp 1:xcomp _
5 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 7 nsubj 7:nsubj SpaceAfter=No
6 ’s be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 cop 7:cop _
7 wrong wrong ADJ JJ Degree=Pos 4 ccomp 4:ccomp SpaceAfter=No
8 . . PUNCT . _ 1 punct 1:punct _
# sent_id = n01092014
# text = And what about Australia’s position?
1 And and CCONJ CC _ 6 cc 6:cc _
2 what what PRON WP PronType=Int 6 nsubj 6:nsubj _
3 about about ADP IN _ 6 case 6:case _
4 Australia Australia PROPN NNP Number=Sing 6 nmod:poss 6:nmod:poss SpaceAfter=No
5 ’s ’s PART POS _ 4 case 4:case OrigForm='s
6 position position NOUN NN Number=Sing 0 root 0:root SpaceAfter=No
7 ? ? PUNCT . _ 6 punct 6:punct _
# sent_id = n01093025
# text = Conservationists welcomed the commission’s announcement.
1 Conservationists conservationist NOUN NNS Number=Plur 2 nsubj 2:nsubj _
2 welcomed welcome VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root 0:root _
3 the the DET DT Definite=Def|PronType=Art 4 det 4:det _
4 commission commission NOUN NN Number=Sing 6 nmod:poss 6:nmod:poss SpaceAfter=No
5 ’s ’s PART POS _ 4 case 4:case OrigForm='s
6 announcement announcement NOUN NN Number=Sing 2 obj 2:obj SpaceAfter=No
7 . . PUNCT . _ 2 punct 2:punct _
# newdoc id = n01094
# sent_id = n01094014
# text = Only 50 were marketplaces.
1 Only only ADV RB _ 2 advmod 2:advmod _
2 50 50 NUM CD NumType=Card 4 nsubj 4:nsubj _
3 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 4 cop 4:cop _
4 marketplaces marketplace NOUN NNS Number=Plur 0 root 0:root SpaceAfter=No
5 . . PUNCT . _ 4 punct 4:punct _
# sent_id = n01095009
# text = I don’t call it a beast lightly.
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 4 nsubj 4:nsubj _
2 do do AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 aux 4:aux SpaceAfter=No
3 n’t n’t PART RB Polarity=Neg 4 advmod 4:advmod _
4 call call VERB VB VerbForm=Inf 0 root 0:root _
5 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 obj 4:obj|7:nsubj:xsubj _
6 a a DET DT Definite=Ind|PronType=Art 7 det 7:det _
7 beast beast NOUN NN Number=Sing 4 xcomp 4:xcomp _
8 lightly lightly ADV RB _ 4 advmod 4:advmod SpaceAfter=No
9 . . PUNCT . _ 4 punct 4:punct _
# sent_id = n01095019
# text = Day three, I was back on the EMicro.
1 Day day NOUN NN Number=Sing 6 nmod:tmod 6:nmod:tmod _
2 three three NUM CD NumType=Card 1 nummod 1:nummod SpaceAfter=No
3 , , PUNCT , _ 6 punct 6:punct _
4 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 6 nsubj 6:nsubj _
5 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 cop 6:cop _
6 back back ADV RB _ 0 root 0:root _
7 on on ADP IN _ 9 case 9:case _
8 the the DET DT Definite=Def|PronType=Art 9 det 9:det _
9 EMicro EMicro PROPN NNP Number=Sing 6 obl 6:obl:on SpaceAfter=No
10 . . PUNCT . _ 6 punct 6:punct _
# sent_id = n01097041
# text = I spotted a few.
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 2 nsubj 2:nsubj _
2 spotted spot VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root 0:root _
3 a a DET DT Definite=Ind|PronType=Art 4 det 4:det _
4 few few ADJ JJ Degree=Pos 2 obj 2:obj SpaceAfter=No
5 . . PUNCT . _ 2 punct 2:punct _
# newdoc id = n01098
# sent_id = n01098034
# text = Back on the train, we continue southwards.
1 Back back ADV RB _ 4 advmod 4:advmod _
2 on on ADP IN _ 4 case 4:case _
3 the the DET DT Definite=Def|PronType=Art 4 det 4:det _
4 train train NOUN NN Number=Sing 7 obl 7:obl:on SpaceAfter=No
5 , , PUNCT , _ 7 punct 7:punct _
6 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 7 nsubj 7:nsubj _
7 continue continue VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root 0:root _
8 southwards southwards ADV RB _ 7 advmod 7:advmod SpaceAfter=No
9 . . PUNCT . _ 7 punct 7:punct _
# sent_id = n01098041
# text = A small town with two minarets glides by.
1 A a DET DT Definite=Ind|PronType=Art 3 det 3:det _
2 small small ADJ JJ Degree=Pos 3 amod 3:amod _
3 town town NOUN NN Number=Sing 7 nsubj 7:nsubj _
4 with with ADP IN _ 6 case 6:case _
5 two two NUM CD NumType=Card 6 nummod 6:nummod _
6 minarets minaret NOUN NNS Number=Plur 3 nmod 3:nmod:with _
7 glides glide NOUN NNS Number=Plur 0 root 0:root _
8 by by ADV RB _ 7 advmod 7:advmod SpaceAfter=No
9 . . PUNCT . _ 7 punct 7:punct _
# newdoc id = n01103
# sent_id = n01103013
# text = It is his dream to end his career here.
1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 expl 4:expl _
2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop 4:cop _
3 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 4 nmod:poss 4:nmod:poss _
4 dream dream NOUN NN Number=Sing 0 root 0:root _
5 to to PART TO _ 6 mark 6:mark _
6 end end VERB VB VerbForm=Inf 4 csubj 4:csubj _
7 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 8 nmod:poss 8:nmod:poss _
8 career career NOUN NN Number=Sing 6 obj 6:obj _
9 here here ADV RB PronType=Dem 6 advmod 6:advmod SpaceAfter=No
10 . . PUNCT . _ 4 punct 4:punct _
# sent_id = n01105023
# text = I also wonder whether the Davis Cup played a part.
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 3 nsubj 3:nsubj _
2 also also ADV RB _ 3 advmod 3:advmod _
3 wonder wonder VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root 0:root _
4 whether whether SCONJ IN _ 8 mark 8:mark _
5 the the DET DT Definite=Def|PronType=Art 7 det 7:det _
6 Davis Davis PROPN NNP Number=Sing 7 compound 7:compound _
7 Cup cup NOUN NN Number=Sing 8 nsubj 8:nsubj _
8 played play VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 ccomp 3:ccomp _
9 a a DET DT Definite=Ind|PronType=Art 10 det 10:det _
10 part part NOUN NN Number=Sing 8 obj 8:obj SpaceAfter=No
11 . . PUNCT . _ 3 punct 3:punct _
# sent_id = n01109022
# text = Or is it an expensive standard or prepayment tariff?
1 Or or CCONJ CC _ 9 cc 9:cc _
2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 cop 9:cop _
3 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 9 nsubj 9:nsubj _
4 an a DET DT Definite=Ind|PronType=Art 9 det 9:det _
5 expensive expensive ADJ JJ Degree=Pos 9 amod 9:amod _
6 standard standard NOUN NN Number=Sing 9 compound 9:compound _
7 or or CCONJ CC _ 8 cc 8:cc _
8 prepayment prepayment NOUN NN Number=Sing 6 conj 6:conj:or|9:compound _
9 tariff tariff NOUN NN Number=Sing 0 root 0:root SpaceAfter=No
10 ? ? PUNCT . _ 9 punct 9:punct _
# sent_id = n01112012
# text = The consumer can boost the demand for change.
1 The the DET DT Definite=Def|PronType=Art 2 det 2:det _
2 consumer consumer NOUN NN Number=Sing 4 nsubj 4:nsubj _
3 can can AUX MD VerbForm=Fin 4 aux 4:aux _
4 boost boost VERB VB VerbForm=Inf 0 root 0:root _
5 the the DET DT Definite=Def|PronType=Art 6 det 6:det _
6 demand demand NOUN NN Number=Sing 4 obj 4:obj _
7 for for ADP IN _ 8 case 8:case _
8 change change NOUN NN Number=Sing 6 nmod 6:nmod:for SpaceAfter=No
9 . . PUNCT . _ 4 punct 4:punct _
# newdoc id = n01115
# sent_id = n01115005
# text = They will play on Saturday, 10 June.
1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 3 nsubj 3:nsubj _
2 will will AUX MD VerbForm=Fin 3 aux 3:aux _
3 play play VERB VB VerbForm=Inf 0 root 0:root _
4 on on ADP IN _ 5 case 5:case _
5 Saturday Saturday PROPN NNP Number=Sing 3 obl 3:obl:on SpaceAfter=No
6 , , PUNCT , _ 5 punct 5:punct _
7 10 10 NUM CD NumType=Card 8 nummod 8:nummod _
8 June June PROPN NNP Number=Sing 5 appos 5:appos SpaceAfter=No
9 . . PUNCT . _ 3 punct 3:punct _
# sent_id = n01116014
# text = The dress is contemporary.
1 The the DET DT Definite=Def|PronType=Art 2 det 2:det _
2 dress dress NOUN NN Number=Sing 4 nsubj 4:nsubj _
3 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop 4:cop _
4 contemporary contemporary ADJ JJ Degree=Pos 0 root 0:root SpaceAfter=No
5 . . PUNCT . _ 4 punct 4:punct _
# sent_id = n01117014
# text = In theory, if done right, it’s un-detectable.
1 In in ADP IN _ 2 case 2:case _
2 theory theory NOUN NN Number=Sing 10 obl 10:obl:in SpaceAfter=No
3 , , PUNCT , _ 10 punct 10:punct _
4 if if SCONJ IN _ 5 mark 5:mark _
5 done do VERB VBN Tense=Past|VerbForm=Part 10 advcl 10:advcl:if _
6 right right ADJ JJ Degree=Pos 5 xcomp 5:xcomp SpaceAfter=No
7 , , PUNCT , _ 10 punct 10:punct _
8 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 10 nsubj 10:nsubj SpaceAfter=No
9 ’s be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 cop 10:cop _
10 un-detectable un-detectable ADJ JJ Degree=Pos 0 root 0:root SpaceAfter=No
11 . . PUNCT . _ 10 punct 10:punct _
# newdoc id = n01118
# sent_id = n01118003
# text = Drop the mic.
1 Drop drop VERB VB VerbForm=Inf 0 root 0:root _
2 the the DET DT Definite=Def|PronType=Art 3 det 3:det _
3 mic mic NOUN NN Number=Sing 1 obj 1:obj SpaceAfter=No
4 . . PUNCT . _ 1 punct 1:punct _
# sent_id = n01119019
# text = The result, then, is hardly the cat's pyjamas.
1 The the DET DT Definite=Def|PronType=Art 2 det 2:det _
2 result result NOUN NN Number=Sing 11 nsubj 11:nsubj SpaceAfter=No
3 , , PUNCT , _ 11 punct 11:punct _
4 then then ADV RB PronType=Dem 11 advmod 11:advmod SpaceAfter=No
5 , , PUNCT , _ 11 punct 11:punct _
6 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 11 cop 11:cop _
7 hardly hardly ADV RB _ 11 advmod 11:advmod _
8 the the DET DT Definite=Def|PronType=Art 9 det 9:det _
9 cat cat NOUN NN Number=Sing 11 nmod:poss 11:nmod:poss SpaceAfter=No
10 's 's PART POS _ 9 case 9:case _
11 pyjamas pyjamas NOUN NNS Number=Plur 0 root 0:root SpaceAfter=No
12 . . PUNCT . _ 11 punct 11:punct _
# sent_id = n01120020
# text = All the medics were armed, except me.
1 All all DET PDT _ 3 det:predet 3:det:predet _
2 the the DET DT Definite=Def|PronType=Art 3 det 3:det _
3 medics medic NOUN NNS Number=Plur 5 nsubj 5:nsubj _
4 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 5 cop 5:cop _
5 armed armed ADJ JJ Degree=Pos 0 root 0:root SpaceAfter=No
6 , , PUNCT , _ 5 punct 5:punct _
7 except except ADP IN _ 8 case 8:case _
8 me I PRON PRP Case=Acc|Number=Sing|Person=1|PronType=Prs 5 obl 5:obl:except SpaceAfter=No
9 . . PUNCT . _ 5 punct 5:punct _
# sent_id = n01121051
# text = Is series two working so far?
1 Is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 aux 4:aux _
2 series series NOUN NN Number=Sing 4 nsubj 4:nsubj _
3 two two NUM CD NumType=Card 2 compound 2:compound _
4 working work VERB VBG Tense=Pres|VerbForm=Part 0 root 0:root _
5 so so ADV RB _ 6 advmod 6:advmod _
6 far far ADV RB Degree=Pos 4 advmod 4:advmod SpaceAfter=No
7 ? ? PUNCT . _ 4 punct 4:punct _
# sent_id = n01127089
# text = I don't know why I chose her ...
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 4 nsubj 4:nsubj _
2 do do AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 aux 4:aux SpaceAfter=No
3 n't not PART RB Polarity=Neg 4 advmod 4:advmod _
4 know know VERB VB VerbForm=Inf 0 root 0:root _
5 why why ADV WRB PronType=Int 7 advmod 7:advmod _
6 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 7 nsubj 7:nsubj _
7 chose choose VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 4 ccomp 4:ccomp _
8 her she PRON PRP Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs 7 obj 7:obj _
9 ... ... PUNCT . _ 4 punct 4:punct _
# sent_id = n01129010
# text = This is a homeland security issue of the most existential kind.
1 This this PRON DT Number=Sing|PronType=Dem 6 nsubj 6:nsubj _
2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop 6:cop _
3 a a DET DT Definite=Ind|PronType=Art 6 det 6:det _
4 homeland homeland NOUN NN Number=Sing 5 compound 5:compound _
5 security security NOUN NN Number=Sing 6 compound 6:compound _
6 issue issue NOUN NN Number=Sing 0 root 0:root _
7 of of ADP IN _ 11 case 11:case _
8 the the DET DT Definite=Def|PronType=Art 11 det 11:det _
9 most most ADV RBS _ 10 advmod 10:advmod _
10 existential existential ADJ JJ Degree=Pos 11 amod 11:amod _
11 kind kind NOUN NN Number=Sing 6 nmod 6:nmod:of SpaceAfter=No
12 . . PUNCT . _ 6 punct 6:punct _
# newdoc id = n01130
# sent_id = n01130003
# text = North Carolina is ground zero in this election.
1 North North PROPN NNP Number=Sing 2 compound 2:compound _
2 Carolina Carolina PROPN NNP Number=Sing 4 nsubj 4:nsubj _
3 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop 4:cop _
4 ground ground NOUN NN Number=Sing 0 root 0:root _
5 zero zero NUM CD NumType=Card 4 compound 4:compound _
6 in in ADP IN _ 8 case 8:case _
7 this this DET DT Number=Sing|PronType=Dem 8 det 8:det _
8 election election NOUN NN Number=Sing 4 obl 4:obl:in SpaceAfter=No
9 . . PUNCT . _ 4 punct 4:punct _
# sent_id = n01144041
# text = I was just a boy with muddy shoes.
1 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 5 nsubj 5:nsubj _
2 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 5 cop 5:cop _
3 just just ADV RB _ 5 advmod 5:advmod _
4 a a DET DT Definite=Ind|PronType=Art 5 det 5:det _
5 boy boy NOUN NN Number=Sing 0 root 0:root _
6 with with ADP IN _ 8 case 8:case _
7 muddy muddy ADJ JJ Degree=Pos 8 amod 8:amod _
8 shoes shoe NOUN NNS Number=Plur 5 nmod 5:nmod:with SpaceAfter=No
9 . . PUNCT . _ 5 punct 5:punct _
# newdoc id = n01145
# sent_id = n01145008
# text = There is no parade and there never has been.
1 There there PRON EX _ 2 expl 2:expl _
2 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root 0:root _
3 no no DET DT Polarity=Neg 4 det 4:det _
4 parade parade NOUN NN Number=Sing 2 nsubj 2:nsubj _
5 and and CCONJ CC _ 9 cc 9:cc _
6 there there PRON EX _ 9 expl 9:expl _
7 never never ADV RB Polarity=Neg 9 advmod 9:advmod _
8 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 aux 9:aux _
9 been be VERB VBN Tense=Past|VerbForm=Part 2 conj 2:conj:and SpaceAfter=No
10 . . PUNCT . _ 2 punct 2:punct _
# sent_id = n01147085
# text = The Yas Marina Circuit website has exact timings.
1 The the DET DT Definite=Def|PronType=Art 5 det 5:det _
2 Yas Yas PROPN NNP Number=Sing 4 compound 4:compound _
3 Marina marina NOUN NN Number=Sing 4 compound 4:compound _
4 Circuit circuit NOUN NN Number=Sing 5 compound 5:compound _
5 website website NOUN NN Number=Sing 6 nsubj 6:nsubj _
6 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root 0:root _
7 exact exact ADJ JJ Degree=Pos 8 amod 8:amod _
8 timings timing NOUN NNS Number=Plur 6 obj 6:obj SpaceAfter=No
9 . . PUNCT . _ 6 punct 6:punct _
# sent_id = n01148035
# text = Not all transformations in the region have been successful.
1 Not not ADV RB Polarity=Neg 2 advmod 2:advmod _
2 all all DET DT _ 3 det 3:det _
3 transformations transformation NOUN NNS Number=Plur 9 nsubj 9:nsubj _
4 in in ADP IN _ 6 case 6:case _
5 the the DET DT Definite=Def|PronType=Art 6 det 6:det _
6 region region NOUN NN Number=Sing 3 nmod 3:nmod:in _
7 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 9 aux 9:aux _
8 been be AUX VBN Tense=Past|VerbForm=Part 9 cop 9:cop _
9 successful successful ADJ JJ Degree=Pos 0 root 0:root SpaceAfter=No
10 . . PUNCT . _ 9 punct 9:punct _
# sent_id = n01149010
# text = She spoke to CNN Style about the experience.
1 She she PRON PRP Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs 2 nsubj 2:nsubj _
2 spoke speak VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root 0:root _
3 to to ADP IN _ 5 case 5:case _
4 CNN CNN PROPN NNP Number=Sing 5 compound 5:compound _
5 Style style PROPN NN Number=Sing 2 obl 2:obl:to _
6 about about ADP IN _ 8 case 8:case _
7 the the DET DT Definite=Def|PronType=Art 8 det 8:det _
8 experience experience NOUN NN Number=Sing 2 obl 2:obl:about SpaceAfter=No
9 . . PUNCT . _ 2 punct 2:punct _
# sent_id = w01002075
# text = The 2019 Winter Universiade will be hosted by Krasnoyarsk.
1 The the DET DT Definite=Def|PronType=Art 4 det 4:det _
2 2019 2019 NUM CD NumType=Card 4 compound 4:compound _
3 Winter winter PROPN NN Number=Sing 4 compound 4:compound _
4 Universiade universiade NOUN NN Number=Sing 7 nsubj:pass 7:nsubj:pass _
5 will will AUX MD VerbForm=Fin 7 aux 7:aux _
6 be be AUX VB VerbForm=Inf 7 aux:pass 7:aux:pass _
7 hosted host VERB VBN Tense=Past|VerbForm=Part 0 root 0:root _
8 by by ADP IN _ 9 case 9:case _
9 Krasnoyarsk Krasnoyarsk PROPN NNP Number=Sing 7 obl 7:obl:by SpaceAfter=No
10 . . PUNCT . _ 7 punct 7:punct _
# sent_id = w01005023
# text = The multi-ethnic Achaemenid army possessed many soldiers from the Balkans.
1 The the DET DT Definite=Def|PronType=Art 4 det 4:det _
2 multi-ethnic multi-ethnic ADJ JJ Degree=Pos 4 amod 4:amod _
3 Achaemenid achaemenid ADJ JJ Degree=Pos 4 amod 4:amod _
4 army army NOUN NN Number=Sing 5 nsubj 5:nsubj _
5 possessed possess VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root 0:root _
6 many many ADJ JJ Degree=Pos 7 amod 7:amod _
7 soldiers soldier NOUN NNS Number=Plur 5 obj 5:obj _
8 from from ADP IN _ 10 case 10:case _
9 the the DET DT Definite=Def|PronType=Art 10 det 10:det _
10 Balkans Balkans PROPN NNPS Number=Plur 7 nmod 7:nmod:from SpaceAfter=No
11 . . PUNCT . _ 5 punct 5:punct _
# sent_id = w01005024
# text = Moreover, many of the Macedonian and Persian elite intermarried.
1 Moreover moreover ADV RB _ 10 advmod 10:advmod SpaceAfter=No
2 , , PUNCT , _ 10 punct 10:punct _
3 many many ADJ JJ Degree=Pos 10 nsubj 10:nsubj _
4 of of ADP IN _ 9 case 9:case _
5 the the DET DT Definite=Def|PronType=Art 9 det 9:det _
6 Macedonian macedonian ADJ JJ Degree=Pos 9 amod 9:amod _
7 and and CCONJ CC _ 8 cc 8:cc _
8 Persian persian ADJ JJ Degree=Pos 6 conj 6:conj:and|9:amod Proper=True
9 elite elite NOUN NN Number=Sing 3 nmod 3:nmod:of _
10 intermarried intermarry VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root 0:root SpaceAfter=No
11 . . PUNCT . _ 10 punct 10:punct _
# sent_id = w01007087
# text = Current land reclamation projects include extending the district of Fontvieille.
1 Current current ADJ JJ Degree=Pos 4 amod 4:amod _
2 land land NOUN NN Number=Sing 3 compound 3:compound _
3 reclamation reclamation NOUN NN Number=Sing 4 compound 4:compound _
4 projects project NOUN NNS Number=Plur 5 nsubj 5:nsubj|6:nsubj:xsubj _
5 include include VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root 0:root _
6 extending extend VERB VBG VerbForm=Ger 5 xcomp 5:xcomp _
7 the the DET DT Definite=Def|PronType=Art 8 det 8:det _
8 district district NOUN NN Number=Sing 6 obj 6:obj _
9 of of ADP IN _ 10 case 10:case _
10 Fontvieille Fontvieille PROPN NNP Number=Sing 8 nmod 8:nmod:of SpaceAfter=No
11 . . PUNCT . _ 5 punct 5:punct _
# sent_id = w01019073
# text = In June to August 2010 famine struck the Sahel.
1 In in ADP IN _ 2 case 2:case _
2 June June PROPN NNP Number=Sing 7 obl 7:obl:in _
3 to to ADP IN _ 4 case 4:case _
4 August August PROPN NNP Number=Sing 2 nmod 2:nmod:to _
5 2010 2010 NUM CD NumType=Card 4 nummod 4:nummod _
6 famine famine NOUN NN Number=Sing 7 nsubj 7:nsubj _
7 struck strike VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root 0:root _
8 the the DET DT Definite=Def|PronType=Art 9 det 9:det _
9 Sahel Sahel PROPN NNP Number=Sing 7 obj 7:obj SpaceAfter=No
10 . . PUNCT . _ 7 punct 7:punct _
# sent_id = w01022055
# text = In Danish, the word may even apply to shallow lagoons.
1 In in ADP IN _ 2 case 2:case _
2 Danish Danish PROPN NNP Number=Sing 8 obl 8:obl:in SpaceAfter=No
3 , , PUNCT , _ 8 punct 8:punct _
4 the the DET DT Definite=Def|PronType=Art 5 det 5:det _
5 word word NOUN NN Number=Sing 8 nsubj 8:nsubj _
6 may may AUX MD VerbForm=Fin 8 aux 8:aux _
7 even even ADV RB _ 8 advmod 8:advmod _
8 apply apply VERB VB VerbForm=Inf 0 root 0:root _
9 to to ADP IN _ 11 case 11:case _
10 shallow shallow ADJ JJ Degree=Pos 11 amod 11:amod _
11 lagoons lagoon NOUN NNS Number=Plur 8 obl 8:obl:to SpaceAfter=No
12 . . PUNCT . _ 8 punct 8:punct _
# sent_id = w01022092
# text = Like fjords, freshwater lakes are often deep.
1 Like like ADP IN _ 2 case 2:case _
2 fjords fjord NOUN NNS Number=Plur 8 obl 8:obl:like SpaceAfter=No
3 , , PUNCT , _ 8 punct 8:punct _
4 freshwater freshwater NOUN NN Number=Sing 5 compound 5:compound _
5 lakes lake NOUN NNS Number=Plur 8 nsubj 8:nsubj _
6 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 8 cop 8:cop _
7 often often ADV RB _ 8 advmod 8:advmod _
8 deep deep ADJ JJ Degree=Pos 0 root 0:root SpaceAfter=No
9 . . PUNCT . _ 8 punct 8:punct _
# sent_id = w01025087
# text = The Danevirke has remained in German possession ever since.
1 The the DET DT Definite=Def|PronType=Art 2 det 2:det _
2 Danevirke Danevirke PROPN NNP Number=Sing 4 nsubj 4:nsubj _
3 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 aux 4:aux _
4 remained remain VERB VBN Tense=Past|VerbForm=Part 0 root 0:root _
5 in in ADP IN _ 7 case 7:case _
6 German german ADJ JJ Degree=Pos 7 amod 7:amod Proper=True
7 possession possession NOUN NN Number=Sing 4 obl 4:obl:in _
8 ever ever ADV RB _ 9 advmod 9:advmod _
9 since since ADV RB _ 4 advmod 4:advmod SpaceAfter=No
10 . . PUNCT . _ 4 punct 4:punct _
# newdoc id = w01031
# sent_id = w01031003
# text = The study of volcanoes is called volcanology, sometimes spelled vulcanology.
1 The the DET DT Definite=Def|PronType=Art 2 det 2:det _
2 study study NOUN NN Number=Sing 6 nsubj:pass 6:nsubj:pass|7:nsubj:xsubj _
3 of of ADP IN _ 4 case 4:case _
4 volcanoes volcano NOUN NNS Number=Plur 2 nmod 2:nmod:of _
5 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 aux:pass 6:aux:pass _
6 called call VERB VBN Tense=Past|VerbForm=Part 0 root 0:root _
7 volcanology volcanology NOUN NN Number=Sing 6 xcomp 6:xcomp SpaceAfter=No
8 , , PUNCT , _ 7 punct 7:punct _
9 sometimes sometimes ADV RB _ 10 advmod 10:advmod _
10 spelled spell VERB VBN Tense=Past|VerbForm=Part 7 acl 7:acl _
11 vulcanology vulcanology NOUN NN Number=Sing 10 xcomp 10:xcomp SpaceAfter=No
12 . . PUNCT . _ 6 punct 6:punct _
# sent_id = w01031034
# text = They generally do not explode catastrophically.
1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 5 nsubj 5:nsubj _
2 generally generally ADV RB _ 5 advmod 5:advmod _
3 do do AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 5 aux 5:aux _
4 not not PART RB Polarity=Neg 5 advmod 5:advmod _
5 explode explode VERB VB VerbForm=Inf 0 root 0:root _
6 catastrophically catastrophically ADV RB _ 5 advmod 5:advmod SpaceAfter=No
7 . . PUNCT . _ 5 punct 5:punct _
# sent_id = w01033025
# text = It was declared a wildlife sanctuary in 1975.
1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 3 nsubj:pass 3:nsubj:pass|6:nsubj:xsubj _
2 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 3 aux:pass 3:aux:pass _
3 declared declare VERB VBN Tense=Past|VerbForm=Part 0 root 0:root _
4 a a DET DT Definite=Ind|PronType=Art 6 det 6:det _
5 wildlife wildlife NOUN NN Number=Sing 6 compound 6:compound _
6 sanctuary sanctuary NOUN NN Number=Sing 3 xcomp 3:xcomp _
7 in in ADP IN _ 8 case 8:case _
8 1975 1975 NUM CD NumType=Card 3 obl 3:obl:in SpaceAfter=No
9 . . PUNCT . _ 3 punct 3:punct _
# sent_id = w01033061
# text = Investigation and expeditions to the island continue.
1 Investigation investigation NOUN NN Number=Sing 7 nsubj 7:nsubj _
2 and and CCONJ CC _ 3 cc 3:cc _
3 expeditions expedition NOUN NNS Number=Plur 1 conj 1:conj:and|7:nsubj _
4 to to ADP IN _ 6 case 6:case _
5 the the DET DT Definite=Def|PronType=Art 6 det 6:det _
6 island island NOUN NN Number=Sing 3 nmod 3:nmod:to _
7 continue continue VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root 0:root SpaceAfter=No
8 . . PUNCT . _ 7 punct 7:punct _
# sent_id = w01036077
# text = These plant families are still present in Papua New Guinea.
1 These these DET DT Number=Plur|PronType=Dem 3 det 3:det _
2 plant plant NOUN NN Number=Sing 3 compound 3:compound _
3 families family NOUN NNS Number=Plur 6 nsubj 6:nsubj _
4 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 cop 6:cop _
5 still still ADV RB _ 6 advmod 6:advmod _
6 present present ADJ JJ Degree=Pos 0 root 0:root _
7 in in ADP IN _ 10 case 10:case _
8 Papua Papua PROPN NNP Number=Sing 10 compound 10:compound _
9 New New PROPN NNP Number=Sing 10 compound 10:compound _
10 Guinea Guinea PROPN NNP Number=Sing 6 obl 6:obl:in SpaceAfter=No
11 . . PUNCT . _ 6 punct 6:punct _
# newdoc id = w01057
# sent_id = w01057006
# text = Each poem narrates only a part of the war.
1 Each each DET DT _ 2 det 2:det _
2 poem poem NOUN NN Number=Sing 3 nsubj 3:nsubj _
3 narrates narrate VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root 0:root _
4 only only ADV RB _ 6 advmod 6:advmod _
5 a a DET DT Definite=Ind|PronType=Art 6 det 6:det _
6 part part NOUN NN Number=Sing 3 obj 3:obj _
7 of of ADP IN _ 9 case 9:case _
8 the the DET DT Definite=Def|PronType=Art 9 det 9:det _
9 war war NOUN NN Number=Sing 6 nmod 6:nmod:of SpaceAfter=No
10 . . PUNCT . _ 3 punct 3:punct _
# newdoc id = w01064
# sent_id = w01064034
# text = This was by boat from continental Europe.
1 This this PRON DT Number=Sing|PronType=Dem 4 nsubj 4:nsubj _
2 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 4 cop 4:cop _
3 by by ADP IN _ 4 case 4:case _
4 boat boat NOUN NN Number=Sing 0 root 0:root _
5 from from ADP IN _ 7 case 7:case _
6 continental continental ADJ JJ Degree=Pos 7 amod 7:amod _
7 Europe Europe PROPN NNP Number=Sing 4 nmod 4:nmod:from SpaceAfter=No
8 . . PUNCT . _ 4 punct 4:punct _
# sent_id = w01068056
# text = Aldrin has been married three times.
1 Aldrin Aldrin PROPN NNP Number=Sing 4 nsubj:pass 4:nsubj:pass _
2 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 aux 4:aux _
3 been be AUX VBN Tense=Past|VerbForm=Part 4 aux:pass 4:aux:pass _
4 married marry VERB VBN Tense=Past|VerbForm=Part 0 root 0:root _
5 three three NUM CD NumType=Card 6 nummod 6:nummod _
6 times time NOUN NNS Number=Plur 4 obl:tmod 4:obl:tmod SpaceAfter=No
7 . . PUNCT . _ 4 punct 4:punct _
# sent_id = w01070035
# text = Two measure the lengths of lunar months.
1 Two two NUM CD NumType=Card 2 nsubj 2:nsubj _
2 measure measure NOUN NN Number=Sing 0 root 0:root _
3 the the DET DT Definite=Def|PronType=Art 4 det 4:det _
4 lengths length NOUN NNS Number=Plur 2 dep 2:dep _
5 of of ADP IN _ 7 case 7:case _
6 lunar lunar ADJ JJ Degree=Pos 7 amod 7:amod _
7 months month NOUN NNS Number=Plur 4 nmod 4:nmod:of SpaceAfter=No
8 . . PUNCT . _ 2 punct 2:punct _
# newdoc id = w01071
# sent_id = w01071036
# text = Its importance resides in two facts.
1 Its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 2 nmod:poss 2:nmod:poss _
2 importance importance NOUN NN Number=Sing 3 nsubj 3:nsubj _
3 resides reside VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root 0:root _
4 in in ADP IN _ 6 case 6:case _
5 two two NUM CD NumType=Card 6 nummod 6:nummod _
6 facts fact NOUN NNS Number=Plur 3 obl 3:obl:in SpaceAfter=No
7 . . PUNCT . _ 3 punct 3:punct _
# sent_id = w01072046
# text = But the impact of Hispania in the newcomers was also big.
1 But but CCONJ CC _ 11 cc 11:cc _
2 the the DET DT Definite=Def|PronType=Art 3 det 3:det _
3 impact impact NOUN NN Number=Sing 11 nsubj 11:nsubj _
4 of of ADP IN _ 5 case 5:case _
5 Hispania Hispania PROPN NNP Number=Sing 3 nmod 3:nmod:of _
6 in in ADP IN _ 8 case 8:case _
7 the the DET DT Definite=Def|PronType=Art 8 det 8:det _
8 newcomers newcomer NOUN NNS Number=Plur 3 nmod 3:nmod:in _
9 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 11 cop 11:cop _
10 also also ADV RB _ 11 advmod 11:advmod _
11 big big ADJ JJ Degree=Pos 0 root 0:root SpaceAfter=No
12 . . PUNCT . _ 11 punct 11:punct _
# newdoc id = w01079
# sent_id = w01079038
# text = Dominican priest Heinrich Kramer was assistant to the Archbishop of Salzburg.
1 Dominican dominican ADJ JJ Degree=Pos 2 amod 2:amod _
2 priest priest NOUN NN Number=Sing 6 nsubj 6:nsubj _
3 Heinrich Heinrich PROPN NNP Number=Sing 2 flat 2:flat _
4 Kramer Kramer PROPN NNP Number=Sing 2 flat 2:flat _
5 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 cop 6:cop _
6 assistant assistant NOUN NN Number=Sing 0 root 0:root _
7 to to ADP IN _ 9 case 9:case _
8 the the DET DT Definite=Def|PronType=Art 9 det 9:det _
9 Archbishop archbishop NOUN NN Number=Sing 6 nmod 6:nmod:to _
10 of of ADP IN _ 11 case 11:case _
11 Salzburg Salzburg PROPN NNP Number=Sing 9 nmod 9:nmod:of SpaceAfter=No
12 . . PUNCT . _ 6 punct 6:punct _
# sent_id = w01080129
# text = Philip next marched against his southern enemies.
1 Philip Philip PROPN NNP Number=Sing 3 nsubj 3:nsubj _
2 next next ADV RB _ 3 advmod 3:advmod _
3 marched march VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root 0:root _
4 against against ADP IN _ 7 case 7:case _
5 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 7 nmod:poss 7:nmod:poss _
6 southern southern ADJ JJ Degree=Pos 7 amod 7:amod _
7 enemies enemy NOUN NNS Number=Plur 3 obl 3:obl:against SpaceAfter=No
8 . . PUNCT . _ 3 punct 3:punct _
# newdoc id = w01081
# sent_id = w01081030
# text = Catherine of Russia was also very satisfied.
1 Catherine Catherine PROPN NNP Number=Sing 7 nsubj 7:nsubj _
2 of of ADP IN _ 3 case 3:case _
3 Russia Russia PROPN NNP Number=Sing 1 nmod 1:nmod:of _
4 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 7 cop 7:cop _
5 also also ADV RB _ 7 advmod 7:advmod _
6 very very ADV RB _ 7 advmod 7:advmod _
7 satisfied satisfied ADJ JJ Degree=Pos 0 root 0:root SpaceAfter=No
8 . . PUNCT . _ 7 punct 7:punct _
# newdoc id = w01084
# sent_id = w01084085
# text = This city-state emerged in the same period as Sukhothai.
1 This this DET DT Number=Sing|PronType=Dem 4 det 4:det _
2 city city NOUN NN Number=Sing 4 compound 4:compound SpaceAfter=No
3 - - PUNCT HYPH _ 4 punct 4:punct SpaceAfter=No
4 state state NOUN NN Number=Sing 5 nsubj 5:nsubj _
5 emerged emerge VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root 0:root _
6 in in ADP IN _ 9 case 9:case _
7 the the DET DT Definite=Def|PronType=Art 9 det 9:det _
8 same same ADJ JJ Degree=Pos 9 amod 9:amod _
9 period period NOUN NN Number=Sing 5 obl 5:obl:in _
10 as as ADP IN _ 11 case 11:case _
11 Sukhothai Sukhothai PROPN NNP Number=Sing 8 obl 8:obl:as SpaceAfter=No
12 . . PUNCT . _ 5 punct 5:punct _
# newdoc id = w01085
# sent_id = w01085004