-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.output.txt
2688 lines (2688 loc) · 228 KB
/
parse.output.txt
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
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 In 3.179 3.179 2.043 1.136 0.092 2.00 1.00 0.99 4.0
pfix:2 the 4.621 1.442 0.841 0.601 0.096 3.00 1.00 1.00 2.0
pfix:3 right 10.781 6.161 0.322 5.838 0.781 3.00 1.00 0.57 1.0
pfix:4 hands 21.215 10.434 3.097 7.337 0.453 3.01 1.60 1.60 1.0
pfix:5 , 21.915 0.699 0.699 0.000 0.573 1.22 1.02 0.95 2.9
pfix:6 location 32.903 10.988 1.238 9.751 1.305 2.17 1.03 0.63 2.0
pfix:7 data 40.763 7.860 0.644 7.216 1.359 2.32 0.32 0.00 1.0
pfix:8 can 45.823 5.060 2.567 2.493 1.032 2.03 1.12 1.12 3.0
pfix:9 be 47.544 1.721 0.222 1.499 1.000 3.02 1.01 1.01 2.0
pfix:10 a 50.466 2.921 2.202 0.719 1.132 4.05 1.01 0.98 2.0
pfix:11 force 59.845 9.380 0.838 8.542 1.169 4.06 0.99 0.99 1.0
pfix:12 for 63.573 3.728 1.071 2.657 1.850 5.44 1.04 0.71 3.0
pfix:13 good 71.925 8.351 1.741 6.610 1.900 6.63 1.11 1.04 2.1
pfix:14 . 75.461 3.536 3.532 0.004 1.507 1.00 1.19 1.19 6.8
pfix-15 </s> 75.466 0.005 0.005 0.000 1.506 0.00 1.00 1.00 2.0
pfix sent norm (tot words 14) 5.390 1.504 3.886 1.125 3.07 1.10 0.98 2.6
pfix sent norm (steps 35.9) 2.105 0.587 1.517 0.439 1.20 0.43 0.38 1.0
Full parses for string:
1 1 0.5249 75.9911 51.6965 24.2946 (TOP (S (PP (IN In) (NP (DT the) (JJ right) (NNS hands))) (, ,) (NP (NN location) (NNS data)) (VP (MD can) (VP (VB be) (NP (NP (DT a) (NN force)) (PP (IN for) (NP (JJ good)))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 It 3.584 3.584 2.389 1.194 0.007 2.00 1.00 1.00 4.0
pfix:2 can 8.746 5.163 2.381 2.782 0.004 2.00 1.00 1.00 3.0
pfix:3 provide 14.111 5.365 0.212 5.153 0.005 3.00 1.00 1.00 2.0
pfix:4 publishers 26.352 12.241 2.777 9.464 0.248 4.06 1.00 0.94 2.1
pfix:5 and 29.458 3.106 3.005 0.101 1.272 4.14 1.04 0.57 1.8
pfix:6 app 34.876 5.418 0.189 5.229 1.901 5.11 0.66 0.53 1.7
pfix:7 developers 43.640 8.763 0.862 7.901 1.322 5.13 1.51 1.51 1.0
pfix:8 with 46.856 3.216 1.213 2.003 1.226 4.08 1.01 0.97 4.1
pfix:9 advertising 55.032 8.176 1.391 6.785 1.738 5.24 1.01 0.82 2.2
pfix:10 revenue 62.286 7.254 2.797 4.457 2.122 5.89 0.78 0.78 1.1
pfix:11 so 70.721 8.435 1.946 6.489 3.620 4.69 0.64 0.00 5.1
pfix:12 consumers 79.405 8.684 3.334 5.351 2.109 6.07 1.99 1.99 3.0
pfix:13 can 83.537 4.132 1.991 2.141 1.995 6.09 1.04 1.04 3.0
pfix:14 access 94.394 10.857 0.186 10.671 2.009 7.09 1.00 1.00 2.0
pfix:15 free 102.533 8.139 2.241 5.898 3.009 8.13 1.03 0.56 2.0
pfix:16 services 110.028 7.496 1.898 5.598 2.261 8.17 0.00 0.00 1.0
pfix:17 and 112.837 2.809 2.747 0.062 3.651 7.73 0.93 0.44 2.5
pfix:18 information 121.636 8.799 2.189 6.610 3.173 8.88 1.05 1.05 1.3
pfix:19 . 124.582 2.946 2.941 0.004 2.494 1.00 1.90 1.90 8.4
pfix-20 </s> 124.588 0.006 0.006 0.000 2.491 0.00 1.00 1.00 2.0
pfix sent norm (tot words 19) 6.557 1.931 4.626 1.929 5.18 1.08 0.95 2.8
pfix sent norm (steps 51.0) 2.445 0.720 1.725 0.719 1.93 0.40 0.36 1.0
Full parses for string:
1 1 1.3744 125.9620 85.9207 40.0413 (TOP (S (NP (PRP It)) (VP (MD can) (VP (VB provide) (NP (NP (NNS publishers) (CC and) (NN app) (NNS developers)) (PP (IN with) (NP (NN advertising) (NN revenue)))) (SBAR (IN so) (S (NP (NNS consumers)) (VP (MD can) (VP (VB access) (NP (JJ free) (NNS services) (CC and) (NN information)))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Paying 9.868 9.868 2.998 6.870 0.380 2.02 1.00 0.92 4.0
pfix:2 for 12.552 2.684 1.446 1.238 0.255 3.01 1.04 1.03 2.0
pfix:3 college 20.768 8.216 2.087 6.129 0.202 4.01 1.01 1.01 2.0
pfix:4 seems 32.277 11.510 5.630 5.879 0.461 3.33 1.00 0.94 5.8
pfix:5 out 37.967 5.690 1.146 4.544 1.149 4.14 1.06 0.83 2.0
pfix:6 of 41.926 3.959 1.508 2.451 2.178 5.38 0.26 0.00 2.1
pfix:7 reach 54.005 12.079 1.334 10.745 2.375 6.50 0.76 0.75 2.0
pfix:8 for 58.220 4.215 1.798 2.417 3.212 6.47 0.62 0.00 4.4
pfix:9 many 64.346 6.125 1.252 4.873 3.210 7.74 0.89 0.00 2.1
pfix:10 Americans 70.856 6.510 0.643 5.867 2.586 9.12 1.72 1.71 1.0
pfix:11 , 72.502 1.646 1.646 0.000 3.097 6.45 0.92 0.00 6.4
pfix:12 so 78.497 5.995 2.046 3.949 1.868 2.18 3.19 1.93 1.1
pfix:13 the 80.479 1.981 1.648 0.333 1.662 4.01 1.12 1.12 3.1
pfix:14 idea 87.915 7.436 0.904 6.532 1.722 4.01 0.95 0.95 1.0
pfix:15 of 90.078 2.164 1.931 0.233 1.688 6.00 1.08 1.07 3.0
pfix:16 free 99.143 9.065 2.222 6.842 1.902 7.05 1.01 0.95 2.0
pfix:17 college 108.506 9.362 1.043 8.319 1.698 7.01 1.06 1.05 1.0
pfix:18 has 114.433 5.927 2.991 2.936 1.591 4.03 1.10 1.09 6.0
pfix:19 broad 124.034 9.602 2.468 7.133 2.212 5.03 1.06 0.66 2.0
pfix:20 appeal 133.368 9.334 1.280 8.054 1.588 5.03 1.55 1.55 1.0
pfix:21 . 134.668 1.300 1.276 0.025 1.655 2.05 1.04 0.98 4.0
pfix-22 </s> 134.811 0.143 0.143 0.000 1.521 0.00 1.04 1.00 3.0
pfix sent norm (tot words 21) 6.420 1.878 4.541 1.820 4.98 1.16 0.93 2.9
pfix sent norm (steps 64.8) 2.082 0.609 1.473 0.590 1.61 0.38 0.30 0.9
Full parses for string:
1 1 0.7682 135.5788 85.0264 50.5525 (TOP (S (S (VP (VBG Paying) (SBAR (IN for) (S (NP (NN college)) (VP (VBZ seems) (PP (IN out) (PP (IN of) (NP (NP (NN reach)) (PP (IN for) (NP (JJ many) (NNPS Americans))))))))))) (, ,) (IN so) (S (NP (NP (DT the) (NN idea)) (PP (IN of) (NP (JJ free) (NN college)))) (VP (VBZ has) (NP (JJ broad) (NN appeal)))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Several 7.154 7.154 3.152 4.002 0.357 2.05 1.00 0.92 4.0
pfix:2 Democratic 15.496 8.342 1.072 7.270 0.128 2.00 1.07 1.06 1.0
pfix:3 presidential 21.371 5.875 2.355 3.520 0.027 2.00 1.02 1.02 1.0
pfix:4 candidates 29.248 7.877 0.887 6.991 0.061 2.01 1.00 0.99 1.0
pfix:5 and 32.969 3.721 3.639 0.083 1.031 2.76 0.86 0.47 1.6
pfix:6 members 40.508 7.538 0.538 7.000 0.810 2.81 0.75 0.00 1.4
pfix:7 of 42.898 2.390 2.238 0.153 0.836 4.94 0.84 0.84 3.0
pfix:8 Congress 49.484 6.586 1.627 4.959 0.820 5.93 1.00 1.00 2.0
pfix:9 have 53.509 4.025 2.209 1.816 0.715 2.00 1.08 1.08 6.9
pfix:10 endorsed 63.787 10.278 1.087 9.191 0.824 3.00 0.99 0.98 2.0
pfix:11 it 69.054 5.267 4.269 0.998 1.907 4.81 0.98 0.53 2.8
pfix:12 . 70.486 1.432 1.428 0.004 1.237 1.00 1.63 1.63 4.1
pfix-13 </s> 70.488 0.003 0.003 0.000 1.235 0.00 1.00 1.00 2.0
pfix sent norm (tot words 12) 5.874 2.042 3.832 0.832 2.94 1.10 0.96 2.7
pfix sent norm (steps 32.0) 2.200 0.765 1.436 0.312 1.10 0.41 0.36 1.0
Full parses for string:
1 1 0.7613 71.2495 45.0764 26.1731 (TOP (S (NP (NP (JJ Several) (JJ Democratic) (JJ presidential) (NNS candidates) (CC and) (NNS members)) (PP (IN of) (NP (NNP Congress)))) (VP (VBP have) (VP (VBN endorsed) (NP (PRP it)))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Very 9.339 9.339 2.297 7.042 2.116 2.54 1.00 0.49 4.5
pfix:2 few 14.888 5.549 0.427 5.122 1.312 2.66 1.34 1.34 1.0
pfix:3 issues 21.201 6.313 1.247 5.066 0.199 1.99 1.48 1.47 2.0
pfix:4 can 27.332 6.131 2.928 3.203 0.116 2.02 1.02 1.02 3.0
pfix:5 bring 32.497 5.165 0.212 4.953 0.111 3.02 1.00 1.00 2.0
pfix:6 together 40.307 7.810 1.574 6.236 1.072 4.02 1.01 0.47 2.0
pfix:7 lawmakers 50.419 10.111 3.844 6.267 0.550 4.03 1.90 1.84 3.0
pfix:8 of 52.669 2.250 1.038 1.212 0.491 5.98 1.06 1.04 3.0
pfix:9 both 59.307 6.639 1.044 5.595 1.085 7.00 1.03 0.80 2.0
pfix:10 parties 65.772 6.465 1.003 5.461 0.512 7.00 1.26 1.25 1.0
pfix:11 . 67.408 1.637 1.632 0.005 0.462 1.00 0.99 0.99 7.0
pfix-12 </s> 67.414 0.006 0.006 0.000 0.458 0.00 1.00 1.00 2.0
pfix sent norm (tot words 11) 6.129 1.568 4.560 0.771 3.75 1.28 1.15 3.0
pfix sent norm (steps 33.0) 2.044 0.523 1.521 0.257 1.25 0.43 0.39 1.0
Full parses for string:
1 1 0.1418 67.5559 45.6851 21.8708 (TOP (S (NP (ADJP (RB Very) (JJ few)) (NNS issues)) (VP (MD can) (VP (VB bring) (PRT (RP together)) (NP (NP (NNS lawmakers)) (PP (IN of) (NP (DT both) (NNS parties)))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Animal 12.561 12.561 1.252 11.309 1.359 2.01 1.00 0.66 4.0
pfix:2 cruelty 18.730 6.168 0.966 5.203 1.743 2.07 0.99 0.84 1.1
pfix:3 is 22.162 3.433 2.525 0.907 0.849 2.00 1.42 1.42 3.0
pfix:4 one 26.874 4.712 2.778 1.934 1.116 2.97 1.00 0.93 2.1
pfix:5 of 27.984 1.110 0.983 0.126 0.869 4.99 1.07 1.07 3.0
pfix:6 them 33.738 5.754 1.189 4.565 0.917 5.99 1.00 0.99 2.0
pfix:7 . 34.347 0.609 0.604 0.005 0.849 1.00 1.01 1.01 6.0
pfix-8 </s> 34.350 0.003 0.003 0.000 0.847 0.00 1.00 1.00 2.0
pfix sent norm (tot words 7) 4.907 1.472 3.436 1.221 3.01 1.21 1.13 3.3
pfix sent norm (steps 23.0) 1.491 0.447 1.044 0.371 0.91 0.37 0.34 1.0
Full parses for string:
1 1 0.2362 34.5866 16.4621 18.1245 (TOP (S (NP (NN Animal) (NN cruelty)) (VP (VBZ is) (NP (NP (CD one)) (PP (IN of) (NP (PRP them))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Koalas 6.701 6.701 1.054 5.647 0.820 1.93 1.00 0.83 3.9
pfix:2 have 11.134 4.434 2.629 1.805 0.265 2.00 1.16 1.15 3.0
pfix:3 been 13.716 2.581 1.118 1.463 0.226 3.00 1.01 1.01 2.0
pfix:4 running 20.007 6.291 1.250 5.041 0.230 4.00 1.01 1.00 2.0
pfix:5 into 24.673 4.666 1.167 3.499 0.205 5.00 1.00 1.00 2.0
pfix:6 hard 33.535 8.862 1.640 7.222 0.667 6.04 1.00 0.90 2.1
pfix:7 times 35.891 2.355 0.884 1.471 0.205 6.00 1.11 1.11 1.0
pfix:8 . 37.294 1.404 1.400 0.004 0.214 1.00 1.00 1.00 6.0
pfix-9 </s> 37.297 0.003 0.003 0.000 0.212 0.00 1.00 1.00 2.0
pfix sent norm (tot words 8) 4.662 1.393 3.269 0.380 3.62 1.16 1.12 3.0
pfix sent norm (steps 24.0) 1.554 0.464 1.089 0.127 1.21 0.39 0.37 1.0
Full parses for string:
1 1 0.0393 37.3364 23.1628 14.1736 (TOP (S (NP (NNS Koalas)) (VP (VBP have) (VP (VBN been) (VP (VBG running) (PP (IN into) (NP (JJ hard) (NNS times)))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 They 4.477 4.477 2.389 2.088 0.007 2.00 1.00 1.00 4.0
pfix:2 have 8.578 4.101 1.892 2.209 0.046 2.00 1.00 0.99 3.0
pfix:3 suffered 15.707 7.130 1.086 6.044 0.069 3.00 1.00 1.00 2.0
pfix:4 for 20.427 4.720 1.408 3.312 0.382 4.01 1.00 0.94 2.0
pfix:5 years 26.331 5.903 2.759 3.144 0.155 5.01 1.06 1.05 2.0
pfix:6 from 30.630 4.299 1.579 2.720 0.798 5.19 1.00 0.61 3.6
pfix:7 habitat 47.309 16.679 2.295 14.384 0.954 6.51 0.83 0.82 2.0
pfix:8 destruction 58.447 11.138 2.197 8.942 0.814 7.01 0.67 0.00 1.0
pfix:9 , 60.465 2.018 2.018 0.000 2.454 3.15 1.02 0.40 6.5
pfix:10 dog 76.191 15.726 2.260 13.466 2.476 4.66 1.58 1.28 2.0
pfix:11 attacks 85.436 9.245 1.118 8.127 1.315 3.48 1.72 1.71 1.0
pfix:12 , 88.507 3.071 3.071 0.000 2.846 3.89 0.52 0.47 3.2
pfix:13 automobile 100.437 11.929 3.236 8.693 2.102 7.51 0.07 0.00 2.0
pfix:14 accidents 113.812 13.376 1.626 11.750 2.592 6.40 0.51 0.00 1.0
pfix:15 . 117.008 3.195 3.192 0.004 2.185 1.12 0.82 0.00 7.3
pfix-16 </s> 117.034 0.026 0.026 0.000 2.076 0.00 1.02 0.00 2.0
pfix sent norm (tot words 15) 7.802 2.143 5.659 1.418 4.33 0.99 0.68 3.0
pfix sent norm (steps 40.3) 2.901 0.797 2.104 0.527 1.61 0.37 0.25 1.1
Full parses for string:
1 1 1.4461 118.4799 84.0387 34.4411 (TOP (S (NP (PRP They)) (VP (VBP have) (VP (VBN suffered) (PP (IN for) (NP (NP (NNS years)) (PP (IN from) (NP (NP (NN habitat) (NN destruction)) (, ,) (NP (NN dog) (NNS attacks)) (, ,) (NP (NN automobile) (NNS accidents)))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Some 4.894 4.894 1.453 3.441 0.181 2.02 1.00 0.97 4.0
pfix:2 recent 12.209 7.315 2.278 5.037 0.132 2.00 1.02 1.02 1.0
pfix:3 reports 22.216 10.007 2.493 7.514 0.241 2.02 0.99 0.98 1.0
pfix:4 have 26.427 4.212 2.438 1.773 0.076 2.02 1.03 1.03 3.0
pfix:5 suggested 33.606 7.179 1.097 6.082 0.049 3.02 1.01 1.00 2.0
pfix:6 that 37.468 3.862 1.037 2.824 0.627 4.03 1.00 0.86 2.0
pfix:7 women 46.536 9.067 2.729 6.338 0.295 5.90 1.09 1.09 2.9
pfix:8 who 52.263 5.727 5.719 0.009 0.447 8.79 0.95 0.95 4.0
pfix:9 give 60.960 8.697 1.838 6.859 0.621 9.81 1.02 0.93 4.0
pfix:10 birth 72.392 11.432 3.035 8.397 0.885 10.84 0.91 0.89 2.0
pfix:11 by 77.166 4.775 1.482 3.292 1.673 8.69 0.56 0.00 5.0
pfix:12 cesarean 83.066 5.900 1.173 4.727 3.079 10.82 0.73 0.00 2.0
pfix:13 section 92.495 9.430 1.964 7.466 2.505 11.03 0.66 0.00 1.0
pfix:14 are 97.373 4.877 3.867 1.010 1.669 6.00 0.55 0.00 9.9
pfix:15 more 102.199 4.826 4.086 0.740 3.161 7.13 1.00 0.52 2.1
pfix:16 likely 106.657 4.458 0.667 3.791 1.892 7.04 1.83 1.83 1.0
pfix:17 to 106.995 0.338 0.338 0.000 1.759 8.99 1.05 1.03 3.0
pfix:18 have 110.959 3.964 0.036 3.928 1.663 10.00 1.02 1.02 2.0
pfix:19 obese 117.133 6.175 1.630 4.544 3.621 11.14 1.01 0.38 2.1
pfix:20 children 125.618 8.485 1.417 7.067 2.884 11.14 0.34 0.00 1.1
pfix:21 . 127.602 1.984 1.981 0.004 2.623 1.00 1.08 1.08 11.1
pfix-22 </s> 127.605 0.003 0.003 0.000 2.619 0.00 1.00 1.00 2.0
pfix sent norm (tot words 21) 6.076 2.036 4.040 1.557 6.83 0.99 0.79 3.3
pfix sent norm (steps 66.0) 1.932 0.647 1.285 0.495 2.17 0.32 0.25 1.0
Full parses for string:
1 1 1.4766 129.0816 81.2624 47.8192 (TOP (S (NP (DT Some) (JJ recent) (NNS reports)) (VP (VBP have) (VP (VBN suggested) (SBAR (IN that) (S (NP (NP (NNS women)) (SBAR (WHNP (WP who)) (S (VP (VBP give) (NP (NN birth)) (PP (IN by) (NP (JJ cesarean) (NN section))))))) (VP (VBP are) (ADJP (RBR more) (JJ likely) (S (VP (TO to) (VP (VB have) (NP (JJ obese) (NNS children))))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 But 3.136 3.136 2.832 0.305 0.121 1.00 1.00 0.98 3.0
pfix:2 a 7.314 4.177 1.453 2.724 0.518 2.13 1.02 0.89 2.1
pfix:3 large 13.396 6.082 1.259 4.823 0.522 2.12 1.05 1.01 1.0
pfix:4 new 19.734 6.338 2.468 3.869 0.339 2.06 1.06 1.06 1.0
pfix:5 study 26.816 7.082 0.220 6.862 0.212 2.04 1.03 1.03 1.0
pfix:6 found 33.903 7.088 1.975 5.113 0.668 2.28 0.81 0.79 3.0
pfix:7 no 38.120 4.217 1.521 2.696 0.735 3.33 0.94 0.93 2.0
pfix:8 link 47.647 9.527 0.707 8.820 0.684 3.34 1.01 1.01 1.0
pfix:9 between 49.580 1.933 0.937 0.995 0.647 5.31 1.01 1.01 3.0
pfix:10 the 50.811 1.231 1.119 0.112 0.651 6.31 1.00 1.00 2.0
pfix:11 method 61.183 10.373 0.836 9.537 0.668 6.32 1.00 1.00 1.0
pfix:12 of 63.316 2.133 1.144 0.989 0.854 8.18 1.00 0.96 3.1
pfix:13 birth 73.547 10.231 2.086 8.145 0.815 9.21 1.01 1.01 2.0
pfix:14 and 76.316 2.769 2.674 0.095 1.903 7.48 0.96 0.64 3.4
pfix:15 obesity 81.119 4.803 0.362 4.441 1.376 9.27 1.45 1.39 1.1
pfix:16 . 83.693 2.573 2.571 0.002 0.367 1.00 1.54 1.54 8.9
pfix-17 </s> 83.698 0.005 0.005 0.000 0.355 0.00 1.00 1.00 2.0
pfix sent norm (tot words 16) 5.231 1.511 3.720 0.715 4.46 1.12 1.08 2.5
pfix sent norm (steps 38.0) 2.201 0.636 1.565 0.301 1.88 0.47 0.45 1.1
Full parses for string:
1 1 0.0631 83.7608 58.0156 25.7451 (TOP (S (CC But) (NP (DT a) (JJ large) (JJ new) (NN study)) (VP (VBD found) (NP (NP (DT no) (NN link)) (PP (IN between) (NP (NP (DT the) (NN method)) (PP (IN of) (NP (NN birth) (CC and) (NN obesity))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Pancreatic 5.847 5.847 1.062 4.785 1.560 1.92 1.00 0.54 3.9
pfix:2 cancer 15.380 9.533 0.810 8.723 1.469 1.93 0.26 0.00 1.0
pfix:3 has 19.724 4.344 2.414 1.930 1.065 2.00 1.11 1.11 3.0
pfix:4 a 22.581 2.857 2.132 0.725 1.186 3.03 1.00 0.98 2.0
pfix:5 bad 29.489 6.908 0.943 5.965 1.195 3.03 1.01 1.00 1.0
pfix:6 reputation 35.193 5.704 0.071 5.633 1.118 3.02 1.01 1.01 1.0
pfix:7 . 36.862 1.669 1.667 0.002 1.071 1.00 1.01 1.01 3.0
pfix-8 </s> 36.865 0.003 0.003 0.000 1.070 0.00 1.00 1.00 2.0
pfix sent norm (tot words 7) 5.266 1.300 3.966 1.390 2.28 1.06 0.95 2.4
pfix sent norm (steps 17.0) 2.167 0.535 1.632 0.572 0.94 0.44 0.39 1.0
Full parses for string:
1 1 0.5346 37.3996 24.9524 12.4473 (TOP (S (NP (NN Pancreatic) (NN cancer)) (VP (VBZ has) (NP (DT a) (JJ bad) (NN reputation))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 It 3.584 3.584 2.389 1.194 0.007 2.00 1.00 1.00 4.0
pfix:2 is 6.410 2.827 1.486 1.341 0.005 2.00 1.00 1.00 3.0
pfix:3 a 9.010 2.599 1.790 0.810 0.194 3.04 1.00 0.97 2.0
pfix:4 terrible 18.034 9.024 0.935 8.089 0.194 3.04 1.00 1.00 1.0
pfix:5 disease 27.243 9.208 0.232 8.977 0.122 3.02 1.02 1.01 1.0
pfix:6 , 29.621 2.379 2.378 0.000 1.602 2.62 0.99 0.36 3.1
pfix:7 but 32.286 2.665 1.766 0.899 0.499 2.13 2.47 2.47 1.0
pfix:8 most 37.432 5.146 5.006 0.139 0.611 4.01 1.12 0.94 3.0
pfix:9 people 42.153 4.721 1.017 3.704 0.055 4.00 1.21 1.21 1.0
pfix:10 do 47.296 5.144 2.097 3.047 0.106 4.00 1.00 0.99 3.0
pfix:11 not 49.658 2.362 0.218 2.144 0.083 4.00 1.01 1.00 1.0
pfix:12 realize 56.836 7.177 1.234 5.943 0.077 5.00 1.00 1.00 2.0
pfix:13 there 63.564 6.729 2.785 3.943 1.126 7.06 1.00 0.51 3.1
pfix:14 are 66.410 2.845 2.696 0.149 0.103 8.00 1.95 1.95 3.0
pfix:15 ways 76.538 10.128 4.193 5.935 0.377 9.04 0.99 0.95 2.1
pfix:16 that 79.508 2.970 1.095 1.876 1.132 11.30 1.06 0.58 3.3
pfix:17 early 88.534 9.026 2.995 6.031 1.403 12.34 0.49 0.00 3.3
pfix:18 detection 93.999 5.465 0.365 5.100 1.701 12.12 1.26 0.90 1.0
pfix:19 can 99.114 5.114 2.154 2.960 1.032 12.13 1.22 1.22 3.0
pfix:20 help 104.119 5.005 0.190 4.815 1.020 13.13 1.00 1.00 2.0
pfix:21 . 108.563 4.444 4.443 0.002 1.012 2.01 1.01 1.01 12.1
pfix-22 </s> 108.676 0.114 0.114 0.000 1.002 0.00 1.00 1.00 3.0
pfix sent norm (tot words 21) 5.175 1.980 3.195 0.641 6.00 1.18 1.05 2.9
pfix sent norm (steps 61.5) 1.768 0.676 1.091 0.219 2.05 0.40 0.36 1.0
Full parses for string:
1 1 0.3286 109.0049 58.6342 50.3707 (TOP (S (S (NP (PRP It)) (VP (VBZ is) (NP (DT a) (JJ terrible) (NN disease)))) (, ,) (CC but) (S (NP (JJS most) (NNS people)) (VP (VBP do) (RB not) (VP (VB realize) (SBAR (S (NP (EX there)) (VP (VBP are) (NP (NNS ways) (SBAR (IN that) (S (NP (JJ early) (NN detection)) (VP (MD can) (VP (VB help)))))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Some 4.894 4.894 1.453 3.441 0.181 2.02 1.00 0.97 4.0
pfix:2 nutrition 20.387 15.493 1.417 14.077 1.046 2.03 0.99 0.63 1.0
pfix:3 experts 30.830 10.443 3.555 6.888 0.938 2.10 1.26 1.24 1.0
pfix:4 say 34.321 3.491 2.322 1.169 0.614 2.00 1.08 1.07 3.0
pfix:5 eggs 45.648 11.327 3.620 7.706 1.382 3.87 1.00 0.56 2.9
pfix:6 are 49.643 3.995 3.199 0.795 0.640 5.00 0.01 0.00 3.0
pfix:7 good 56.284 6.642 1.308 5.334 1.028 6.02 1.00 0.89 2.0
pfix:8 for 60.053 3.769 2.207 1.561 1.404 6.91 1.09 0.90 2.1
pfix:9 you 66.348 6.295 3.029 3.265 1.706 8.13 0.69 0.69 2.4
pfix:10 , 69.113 2.765 2.765 0.000 2.983 3.99 1.60 0.51 6.5
pfix:11 even 75.073 5.960 2.842 3.118 2.937 5.98 0.02 0.00 2.3
pfix:12 though 76.617 1.545 0.645 0.899 1.679 5.00 1.98 1.98 1.1
pfix:13 they 79.416 2.799 1.484 1.315 1.668 6.99 1.01 1.01 3.0
pfix:14 are 82.727 3.311 1.794 1.517 1.669 6.99 1.00 1.00 3.0
pfix:15 high 89.272 6.545 1.324 5.221 2.241 8.00 1.01 0.84 2.0
pfix:16 in 92.795 3.524 2.170 1.354 2.378 7.99 1.11 0.88 3.1
pfix:17 cholesterol 104.857 12.062 2.593 9.468 2.581 9.02 0.86 0.84 2.0
pfix:18 . 106.105 1.248 1.244 0.004 2.442 1.01 0.98 0.00 8.8
pfix-19 </s> 106.111 0.006 0.006 0.000 2.433 0.00 1.00 0.00 2.0
pfix sent norm (tot words 18) 5.895 2.165 3.730 1.775 5.17 1.04 0.78 3.1
pfix sent norm (steps 54.6) 1.942 0.713 1.229 0.585 1.70 0.34 0.26 1.0
Full parses for string:
1 1 1.4982 107.6088 62.5993 45.0094 (TOP (S (NP (DT Some) (NN nutrition) (NNS experts)) (VP (VBP say) (SBAR (S (NP (NNS eggs)) (VP (VBP are) (ADJP (JJ good) (PP (IN for) (NP (PRP you))))))) (, ,) (SBAR (RB even) (IN though) (S (NP (PRP they)) (VP (VBP are) (ADJP (JJ high)) (PP (IN in) (NP (NN cholesterol))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Others 7.778 7.778 3.072 4.706 0.014 2.00 1.00 1.00 4.0
pfix:2 are 10.962 3.184 2.036 1.148 0.005 2.00 1.00 1.00 3.0
pfix:3 sure 17.769 6.807 1.127 5.680 0.472 3.01 1.00 0.87 2.0
pfix:4 they 21.940 4.171 2.797 1.374 0.041 6.00 1.14 1.14 4.0
pfix:5 are 25.441 3.500 1.984 1.517 0.034 6.00 1.00 1.00 3.0
pfix:6 bad 33.316 7.875 1.378 6.498 0.351 7.01 1.00 0.93 2.0
pfix:7 . 35.000 1.684 1.682 0.002 0.138 1.06 1.08 1.06 6.9
pfix-8 </s> 35.017 0.018 0.018 0.000 0.060 0.00 1.02 1.00 2.0
pfix sent norm (tot words 7) 5.002 2.013 2.989 0.159 3.87 1.18 1.14 3.9
pfix sent norm (steps 27.0) 1.297 0.522 0.775 0.041 1.00 0.31 0.30 1.0
Full parses for string:
1 1 0.0084 35.0258 19.2147 15.8111 (TOP (S (NP (NNS Others)) (VP (VBP are) (ADJP (JJ sure) (SBAR (S (NP (PRP they)) (VP (VBP are) (ADJP (JJ bad))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Experts 8.570 8.570 3.113 5.458 0.028 2.00 1.00 1.00 4.0
pfix:2 generally 15.625 7.054 2.673 4.382 0.230 2.07 1.00 0.96 3.0
pfix:3 agree 20.929 5.305 1.658 3.646 0.013 2.00 1.04 1.04 3.0
pfix:4 that 24.006 3.077 1.359 1.718 0.626 3.04 1.00 0.83 2.0
pfix:5 watching 35.197 11.191 2.161 9.031 0.349 4.99 1.17 1.13 3.0
pfix:6 a 37.537 2.340 1.390 0.950 0.271 6.05 1.05 1.01 2.0
pfix:7 lot 42.667 5.130 0.610 4.519 0.370 6.05 1.00 0.98 1.0
pfix:8 of 44.225 1.559 1.190 0.369 0.264 8.04 1.03 1.03 3.0
pfix:9 television 52.554 8.329 2.074 6.255 0.263 9.04 1.00 1.00 2.0
pfix:10 is 57.790 5.236 0.933 4.303 0.588 6.43 0.84 0.83 7.6
pfix:11 bad 65.413 7.623 1.627 5.996 1.005 7.43 1.01 0.87 2.0
pfix:12 for 68.865 3.452 1.743 1.709 1.225 7.96 1.29 0.86 2.3
pfix:13 children 76.319 7.454 2.915 4.540 1.163 8.95 0.99 0.98 2.0
pfix:14 . 77.733 1.414 1.357 0.057 1.451 1.83 0.99 0.77 7.9
pfix-15 </s> 77.965 0.232 0.232 0.000 0.998 0.00 1.26 1.00 2.0
pfix sent norm (tot words 14) 5.569 1.788 3.781 0.632 5.42 1.12 1.02 3.4
pfix sent norm (steps 48.2) 1.619 0.520 1.099 0.184 1.58 0.33 0.30 1.0
Full parses for string:
1 1 0.5686 78.5339 43.5792 34.9547 (TOP (S (NP (NNS Experts)) (ADVP (RB generally)) (VP (VBP agree) (SBAR (IN that) (S (S (VP (VBG watching) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NN television)))))) (VP (VBZ is) (ADJP (JJ bad) (PP (IN for) (NP (NNS children)))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Now 5.672 5.672 2.939 2.733 0.307 2.00 1.00 0.94 4.0
pfix:2 a 10.133 4.461 2.161 2.300 0.548 2.08 1.00 0.93 2.9
pfix:3 new 14.123 3.990 0.865 3.125 0.407 2.04 1.04 1.04 1.0
pfix:4 study 21.277 7.154 0.311 6.843 0.310 2.02 1.02 1.02 1.0
pfix:5 suggests 26.932 5.656 2.350 3.305 0.091 2.00 1.05 1.05 3.0
pfix:6 it 30.288 3.355 2.082 1.273 0.273 4.92 1.00 0.96 3.9
pfix:7 may 34.323 4.035 1.480 2.555 0.082 5.00 1.04 1.04 3.0
pfix:8 not 37.170 2.847 2.006 0.841 0.118 5.01 1.00 0.99 1.0
pfix:9 be 39.246 2.076 0.512 1.564 0.114 6.00 1.00 1.00 2.0
pfix:10 very 44.576 5.330 1.468 3.862 0.480 7.02 1.01 0.92 2.0
pfix:11 good 48.467 3.891 0.138 3.753 0.149 7.01 1.08 1.08 1.0
pfix:12 for 50.832 2.365 0.990 1.375 0.774 7.80 1.01 0.80 2.2
pfix:13 adults 60.605 9.772 2.925 6.848 0.647 8.88 1.06 1.06 2.0
pfix:14 , 62.941 2.337 2.337 0.000 2.121 6.70 1.03 0.49 5.0
pfix:15 either 71.693 8.751 1.249 7.502 1.280 7.34 0.25 0.00 2.1
pfix:16 . 73.254 1.561 1.561 0.000 0.767 1.00 0.70 0.00 7.0
pfix-17 </s> 73.256 0.002 0.002 0.000 0.763 0.00 1.00 0.00 2.0
pfix sent norm (tot words 16) 4.578 1.586 2.992 0.577 4.80 1.02 0.83 2.8
pfix sent norm (steps 44.0) 1.665 0.577 1.088 0.210 1.75 0.37 0.30 1.0
Full parses for string:
1 1 0.6322 73.8877 42.0840 31.8037 (TOP (S (ADVP (RB Now)) (NP (DT a) (JJ new) (NN study)) (VP (VBZ suggests) (SBAR (S (NP (PRP it)) (VP (MD may) (RB not) (VP (VB be) (ADJP (RB very) (JJ good) (PP (IN for) (NP (NNS adults)))) (, ,) (ADVP (RB either))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Legislators 10.702 10.702 3.111 7.591 0.055 2.00 1.00 0.99 4.0
pfix:2 and 14.191 3.489 3.410 0.079 0.761 2.39 0.99 0.59 1.4
pfix:3 gun 27.274 13.083 1.643 11.441 0.803 2.71 1.05 1.05 1.4
pfix:4 safety 36.447 9.173 1.189 7.984 0.636 2.46 1.22 1.21 1.0
pfix:5 advocates 47.006 10.559 1.515 9.044 1.270 2.82 0.66 0.00 1.6
pfix:6 often 55.103 8.097 3.466 4.630 1.564 2.28 1.17 1.06 3.9
pfix:7 focus 65.015 9.912 3.390 6.522 1.628 2.44 0.67 0.67 3.0
pfix:8 on 67.396 2.382 1.896 0.486 1.578 3.35 1.20 1.17 2.0
pfix:9 how 72.436 5.040 4.586 0.454 1.644 5.97 0.13 0.00 3.1
pfix:10 guns 84.576 12.140 3.026 9.114 0.993 6.92 1.22 1.21 4.0
pfix:11 are 87.452 2.875 1.783 1.092 0.974 6.92 1.00 1.00 3.0
pfix:12 purchased 95.641 8.189 0.838 7.351 1.068 7.92 1.00 0.99 2.0
pfix:13 . 98.724 3.083 3.081 0.002 1.241 1.07 0.96 0.95 7.8
pfix-14 </s> 98.744 0.019 0.019 0.000 1.167 0.00 1.01 1.00 2.0
pfix sent norm (tot words 13) 7.596 2.535 5.061 1.183 3.79 1.02 0.92 3.1
pfix sent norm (steps 40.6) 2.430 0.811 1.619 0.378 1.21 0.33 0.29 1.0
Full parses for string:
1 1 0.7486 99.4922 65.8964 33.5959 (TOP (S (NP (NNS Legislators) (CC and) (NN gun) (NN safety)) (VP (VBZ advocates) (ADVP (RB often)) (VP (VB focus) (PP (IN on) (SBAR (WHADVP (WRB how)) (S (NP (NNS guns)) (VP (VBP are) (VP (VBN purchased)))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 But 3.136 3.136 2.832 0.305 0.121 1.00 1.00 0.98 3.0
pfix:2 many 7.980 4.844 1.242 3.602 0.237 2.05 1.02 0.97 2.0
pfix:3 lives 16.964 8.983 0.539 8.445 0.268 2.04 1.02 1.00 1.0
pfix:4 could 21.302 4.338 2.684 1.654 0.158 2.04 1.02 1.02 3.0
pfix:5 be 23.136 1.834 0.306 1.528 0.166 3.04 1.00 1.00 2.0
pfix:6 saved 31.386 8.251 1.045 7.206 0.165 4.04 1.00 1.00 2.0
pfix:7 , 36.518 5.131 5.131 0.000 1.518 2.60 0.87 0.40 3.6
pfix:8 especially 44.253 7.735 2.593 5.142 1.669 5.76 0.02 0.00 2.7
pfix:9 among 48.054 3.801 0.481 3.320 0.200 5.04 1.82 1.82 2.0
pfix:10 children 56.542 8.488 2.757 5.731 0.318 6.06 1.00 0.97 2.0
pfix:11 , 58.520 1.978 1.978 0.000 1.334 5.33 1.00 0.48 2.8
pfix:12 if 63.519 4.999 1.374 3.624 0.526 5.22 0.11 0.00 2.0
pfix:13 they 66.613 3.095 1.517 1.577 0.349 7.12 1.04 1.04 3.0
pfix:14 looked 73.517 6.903 1.302 5.601 0.025 7.00 1.08 1.07 3.0
pfix:15 more 78.771 5.255 4.279 0.976 2.234 8.41 1.00 0.24 2.4
pfix:16 at 82.788 4.017 0.923 3.094 1.822 8.41 0.03 0.00 2.2
pfix:17 how 92.637 9.849 8.471 1.378 2.598 10.08 1.14 0.82 3.2
pfix:18 they 95.844 3.206 2.036 1.170 1.762 10.98 1.36 1.36 4.0
pfix:19 are 98.942 3.098 1.581 1.517 1.749 10.99 1.02 1.02 3.0
pfix:20 stored 111.443 12.501 1.105 11.395 1.780 11.99 1.00 0.99 2.0
pfix:21 . 114.459 3.016 3.013 0.004 1.768 1.15 1.03 1.02 11.8
pfix-22 </s> 114.480 0.021 0.021 0.000 1.676 0.00 1.02 1.00 2.0
pfix sent norm (tot words 21) 5.451 2.248 3.203 1.069 5.73 0.98 0.87 3.1
pfix sent norm (steps 63.0) 1.816 0.749 1.067 0.356 1.91 0.33 0.29 1.0
Full parses for string:
1 1 0.6830 115.1630 60.8955 54.2675 (TOP (S (CC But) (NP (JJ many) (NNS lives)) (VP (MD could) (VP (VB be) (VP (VBN saved) (, ,) (PP (ADVP (RB especially)) (IN among) (NP (NNS children))) (, ,) (SBAR (IN if) (S (NP (PRP they)) (VP (VBD looked) (ADVP (RBR more)) (PP (IN at) (SBAR (WHADVP (WRB how)) (S (NP (PRP they)) (VP (VBP are) (VP (VBN stored)))))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Most 5.811 5.811 5.685 0.126 0.401 2.00 1.00 0.91 4.0
pfix:2 cricket 20.560 14.749 2.262 12.487 0.093 2.01 1.09 1.08 1.0
pfix:3 species 32.826 12.265 0.299 11.966 0.033 2.00 1.01 1.01 1.0
pfix:4 , 34.764 1.938 1.938 0.000 0.486 1.33 1.00 0.84 2.0
pfix:5 indoors 40.546 5.782 1.239 4.544 0.674 2.17 1.13 1.03 2.1
pfix:6 or 47.693 7.147 4.373 2.774 1.682 2.68 0.42 0.00 1.5
pfix:7 outdoors 52.362 4.669 0.251 4.418 1.473 2.55 0.33 0.00 1.2
pfix:8 , 55.515 3.152 3.152 0.000 2.318 2.01 0.10 0.00 2.8
pfix:9 are 60.009 4.495 3.402 1.093 1.439 2.09 1.59 0.00 2.0
pfix:10 omnivorous 67.612 7.603 1.344 6.258 2.561 3.11 1.03 0.61 2.0
pfix:11 . 69.315 1.703 1.702 0.002 1.573 1.02 1.67 1.67 3.0
pfix-12 </s> 69.336 0.020 0.020 0.000 1.497 0.00 1.02 1.00 2.0
pfix sent norm (tot words 11) 6.303 2.333 3.970 1.294 2.09 1.03 0.74 2.2
pfix sent norm (steps 25.0) 2.768 1.025 1.744 0.568 0.92 0.45 0.32 1.0
Full parses for string:
1 1 0.9672 70.3027 40.9676 29.3351 (TOP (S (NP (JJS Most) (NN cricket) (NNS species)) (, ,) (NP (NNS indoors) (CC or) (NNS outdoors)) (, ,) (VP (VBP are) (ADJP (JJ omnivorous))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 They 4.477 4.477 2.389 2.088 0.007 2.00 1.00 1.00 4.0
pfix:2 will 8.846 4.369 2.371 1.997 0.008 2.00 1.00 1.00 3.0
pfix:3 eat 16.377 7.531 0.153 7.379 0.005 3.00 1.00 1.00 2.0
pfix:4 almost 24.071 7.693 2.795 4.899 1.784 4.37 1.00 0.29 2.4
pfix:5 any 29.299 5.228 2.617 2.611 0.732 4.17 0.01 0.00 1.1
pfix:6 organic 40.551 11.252 1.270 9.981 0.946 4.18 1.03 0.94 1.0
pfix:7 material 48.665 8.114 0.603 7.511 0.822 4.18 1.08 1.04 1.0
pfix:8 , 51.269 2.604 2.604 0.000 2.015 3.27 1.11 0.40 3.4
pfix:9 usually 59.805 8.536 3.034 5.502 2.908 5.67 0.04 0.00 2.5
pfix:10 preferring 71.120 11.315 3.135 8.180 0.388 5.09 0.02 0.00 2.9
pfix:11 items 80.328 9.207 2.809 6.399 0.763 6.18 0.92 0.89 1.9
pfix:12 derived 91.263 10.936 4.027 6.909 0.721 8.16 1.01 1.01 3.0
pfix:13 from 91.611 0.347 0.158 0.189 0.684 9.16 1.01 1.01 2.0
pfix:14 plants 101.001 9.391 2.660 6.731 0.683 10.16 1.00 1.00 2.0
pfix:15 . 103.092 2.091 2.089 0.002 0.678 1.14 1.06 1.01 10.0
pfix-16 </s> 103.135 0.043 0.043 0.000 0.513 0.00 1.04 1.00 2.0
pfix sent norm (tot words 15) 6.876 2.184 4.692 0.910 4.85 0.89 0.77 2.9
pfix sent norm (steps 43.0) 2.399 0.762 1.637 0.318 1.69 0.31 0.27 1.0
Full parses for string:
1 1 0.1375 103.2730 67.9905 35.2825 (TOP (S (NP (PRP They)) (VP (MD will) (VP (VB eat) (NP (RB almost) (DT any) (JJ organic) (NN material)) (, ,) (S (ADVP (RB usually)) (VP (VBG preferring) (NP (NP (NNS items)) (VP (VBN derived) (PP (IN from) (NP (NNS plants))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 The 1.837 1.837 0.878 0.959 0.070 1.99 1.00 0.99 4.0
pfix:2 American 8.142 6.305 1.131 5.174 0.703 2.00 1.00 0.72 1.0
pfix:3 medical 18.013 9.871 3.626 6.245 0.267 2.02 0.02 0.00 1.0
pfix:4 malpractice 28.759 10.746 0.367 10.379 0.142 1.99 1.02 1.02 1.0
pfix:5 system 35.740 6.981 1.935 5.046 0.213 1.98 0.98 0.98 1.0
pfix:6 is 38.870 3.130 2.318 0.813 0.089 2.00 1.03 1.03 3.0
pfix:7 doing 46.336 7.466 2.602 4.863 0.233 3.03 1.00 0.97 2.0
pfix:8 almost 53.351 7.015 2.952 4.063 1.391 4.19 1.01 0.68 2.2
pfix:9 nothing 61.905 8.554 5.072 3.482 1.225 4.22 0.51 0.00 1.7
pfix:10 to 64.731 2.826 2.826 0.000 2.020 5.44 0.74 0.00 3.2
pfix:11 improve 70.683 5.953 0.294 5.659 1.404 6.51 1.30 1.30 2.0
pfix:12 the 72.206 1.523 1.323 0.200 1.667 7.66 0.82 0.80 2.0
pfix:13 quality 79.920 7.714 0.419 7.294 1.662 7.66 1.00 1.00 1.0
pfix:14 of 81.372 1.452 1.192 0.260 1.638 9.65 1.01 1.01 3.0
pfix:15 health 89.171 7.799 1.525 6.274 1.637 10.65 1.00 1.00 2.0
pfix:16 care 92.279 3.109 1.191 1.918 1.440 10.58 1.05 1.05 1.0
pfix:17 , 94.415 2.136 2.136 0.000 3.476 3.94 0.89 0.32 9.2
pfix:18 research 104.546 10.131 4.014 6.117 3.031 7.83 0.87 0.00 2.0
pfix:19 suggests 115.348 10.802 4.363 6.438 1.421 3.25 0.01 0.00 3.0
pfix:20 . 115.809 0.461 0.461 0.001 0.996 2.00 1.11 1.11 2.0
pfix-21 </s> 115.896 0.087 0.087 0.000 0.994 0.00 1.00 1.00 3.0
pfix sent norm (tot words 20) 5.795 2.036 3.759 1.286 4.93 0.92 0.75 2.5
pfix sent norm (steps 52.2) 2.219 0.780 1.440 0.493 1.89 0.35 0.29 1.0
Full parses for string:
1 1 0.6013 116.4977 73.1773 43.3204 (TOP (S (S (NP (DT The) (JJ American) (JJ medical) (NN malpractice) (NN system)) (VP (VBZ is) (VP (VBG doing) (S (NP (RB almost) (NN nothing)) (VP (TO to) (VP (VB improve) (NP (NP (DT the) (NN quality)) (PP (IN of) (NP (NN health) (NN care)))))))))) (, ,) (NP (NN research)) (VP (VBZ suggests)) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 What 6.488 6.488 5.479 1.008 1.489 2.28 1.00 0.55 4.3
pfix:2 may 12.220 5.733 2.028 3.705 1.308 3.46 0.69 0.00 3.9
pfix:3 be 13.644 1.424 0.144 1.279 1.168 4.53 1.08 1.08 2.0
pfix:4 more 18.399 4.755 3.909 0.845 2.840 5.65 0.92 0.45 2.2
pfix:5 concerning 30.253 11.855 3.936 7.918 1.532 5.62 2.35 2.35 1.1
pfix:6 is 35.643 5.390 4.384 1.005 0.107 2.03 1.75 1.75 7.0
pfix:7 that 37.631 1.988 0.811 1.177 0.374 3.02 1.02 0.92 2.0
pfix:8 there 41.979 4.348 3.974 0.374 0.054 5.00 1.10 1.09 3.0
pfix:9 is 44.016 2.037 1.413 0.624 0.039 5.00 1.00 1.00 3.0
pfix:10 very 49.196 5.180 1.070 4.110 0.528 6.04 1.00 0.89 2.0
pfix:11 little 54.636 5.441 0.099 5.341 0.288 6.02 1.11 1.07 1.0
pfix:12 discussion 69.752 15.116 4.505 10.611 1.901 6.54 0.39 0.00 2.3
pfix:13 , 72.074 2.321 2.321 0.000 3.095 3.90 1.07 0.39 4.7
pfix:14 much 80.327 8.254 2.642 5.612 3.713 7.42 0.01 0.00 2.1
pfix:15 less 85.321 4.994 2.432 2.562 2.464 8.04 2.21 1.61 1.0
pfix:16 action 96.679 11.358 4.557 6.801 2.814 8.17 0.04 0.00 2.0
pfix:17 , 98.878 2.199 2.199 0.000 3.344 6.77 0.55 0.54 3.1
pfix:18 on 103.528 4.650 2.768 1.883 1.755 8.07 0.15 0.00 2.0
pfix:19 reform 113.501 9.973 2.206 7.767 1.663 8.98 1.01 1.01 2.0
pfix:20 . 115.326 1.826 1.821 0.005 1.632 1.12 1.01 1.00 8.7
pfix-21 </s> 115.351 0.025 0.025 0.000 1.531 0.00 1.02 1.00 2.0
pfix sent norm (tot words 20) 5.768 2.636 3.131 1.682 5.38 1.02 0.84 3.1
pfix sent norm (steps 61.4) 1.879 0.859 1.020 0.548 1.75 0.33 0.27 1.0
Full parses for string:
1 1 0.8450 116.1960 56.8097 59.3863 (TOP (S (SBAR (WHNP (WP What)) (S (VP (MD may) (VP (VB be) (ADJP (RBR more) (VBG concerning)))))) (VP (VBZ is) (SBAR (IN that) (S (NP (EX there)) (VP (VBZ is) (NP (NP (ADJP (RB very) (JJ little)) (NN discussion)) (, ,) (PRN (ADVP (RB much) (JJR less)) (NP (NN action))) (, ,) (PP (IN on) (NP (NN reform)))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Many 5.730 5.730 1.301 4.430 0.296 1.98 1.00 0.94 4.0
pfix:2 studies 13.353 7.622 0.767 6.855 0.113 1.99 1.04 1.04 1.0
pfix:3 have 17.225 3.872 2.148 1.724 0.066 2.00 1.02 1.01 3.0
pfix:4 found 23.646 6.421 1.088 5.333 0.128 3.00 1.00 0.99 2.0
pfix:5 that 25.625 1.979 0.840 1.139 0.516 4.07 1.01 0.91 2.1
pfix:6 obesity 31.466 5.841 1.258 4.583 2.120 5.94 0.86 0.35 2.8
pfix:7 is 35.122 3.655 2.682 0.973 1.542 6.00 1.02 1.02 3.0
pfix:8 associated 44.345 9.223 1.084 8.139 1.637 7.00 0.95 0.93 2.0
pfix:9 with 46.135 1.790 1.594 0.196 1.534 8.00 1.02 1.02 2.0
pfix:10 an 50.175 4.040 1.062 2.978 1.558 9.00 1.00 1.00 2.0
pfix:11 increased 57.090 6.915 1.080 5.835 1.999 9.00 1.01 0.82 1.0
pfix:12 risk 63.996 6.906 0.342 6.564 1.886 9.00 1.08 1.08 1.0
pfix:13 for 68.108 4.112 1.291 2.822 2.166 10.89 0.97 0.92 3.0
pfix:14 prostate 82.234 14.125 2.109 12.017 2.114 11.93 1.02 1.01 2.0
pfix:15 cancer 90.573 8.339 1.922 6.417 2.063 11.96 1.02 1.01 1.0
pfix:16 . 91.788 1.215 1.211 0.004 2.052 1.01 0.99 0.99 11.9
pfix-17 </s> 91.793 0.005 0.005 0.000 2.037 0.00 1.00 1.00 2.0
pfix sent norm (tot words 16) 5.737 1.361 4.376 1.489 6.42 1.06 1.00 2.9
pfix sent norm (steps 46.0) 1.997 0.474 1.523 0.518 2.24 0.37 0.35 1.0
Full parses for string:
1 1 1.3707 93.1632 64.4073 28.7559 (TOP (S (NP (JJ Many) (NNS studies)) (VP (VBP have) (VP (VBN found) (SBAR (IN that) (S (NP (NNP obesity)) (VP (VBZ is) (VP (VBN associated) (PP (IN with) (NP (NP (DT an) (VBN increased) (NN risk)) (PP (IN for) (NP (NN prostate) (NN cancer))))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Now 5.672 5.672 2.939 2.733 0.307 2.00 1.00 0.94 4.0
pfix:2 a 10.133 4.461 2.161 2.300 0.548 2.08 1.00 0.93 2.9
pfix:3 new 14.123 3.990 0.865 3.125 0.407 2.04 1.04 1.04 1.0
pfix:4 study 21.277 7.154 0.311 6.843 0.310 2.02 1.02 1.02 1.0
pfix:5 suggests 26.932 5.656 2.350 3.305 0.091 2.00 1.05 1.05 3.0
pfix:6 that 28.223 1.291 0.824 0.468 0.464 3.10 1.00 0.91 2.1
pfix:7 the 29.844 1.620 1.322 0.298 0.111 5.00 1.10 1.09 3.0
pfix:8 degree 38.824 8.980 0.674 8.307 0.094 5.00 1.00 1.00 1.0
pfix:9 of 41.357 2.533 2.099 0.434 0.094 7.00 1.00 1.00 3.0
pfix:10 risk 49.826 8.469 1.144 7.325 0.154 8.01 1.00 0.99 2.0
pfix:11 may 54.589 4.763 2.269 2.493 0.007 5.00 1.03 1.03 6.0
pfix:12 depend 61.038 6.449 0.182 6.267 0.005 6.00 1.00 1.00 2.0
pfix:13 on 62.151 1.114 0.461 0.652 0.016 7.00 1.00 1.00 2.0
pfix:14 where 69.473 7.322 4.386 2.936 0.202 9.02 1.00 0.96 3.0
pfix:15 in 76.663 7.190 3.354 3.836 0.308 10.01 1.04 0.99 4.0
pfix:16 the 77.902 1.239 0.898 0.341 0.094 11.00 1.04 1.04 2.0
pfix:17 body 86.646 8.744 0.777 7.967 0.365 11.00 1.00 0.93 1.0
pfix:18 the 90.287 3.641 3.232 0.409 0.399 10.19 1.06 1.01 4.0
pfix:19 fat 99.434 9.147 0.274 8.873 1.366 10.19 1.00 0.49 1.0
pfix:20 is 103.266 3.832 2.961 0.871 0.975 10.29 0.25 0.00 3.0
pfix:21 . 106.289 3.023 3.022 0.001 1.309 2.74 1.06 0.83 8.3
pfix-22 </s> 106.534 0.245 0.245 0.000 0.792 0.00 1.28 1.00 2.0
pfix sent norm (tot words 21) 5.073 1.750 3.323 0.401 6.22 1.05 0.96 2.9
pfix sent norm (steps 63.0) 1.691 0.583 1.108 0.134 2.07 0.35 0.32 1.0
Full parses for string:
1 1 0.2651 106.7993 66.6705 40.1288 (TOP (S (ADVP (RB Now)) (NP (DT a) (JJ new) (NN study)) (VP (VBZ suggests) (SBAR (IN that) (S (NP (NP (DT the) (NN degree)) (PP (IN of) (NP (NN risk)))) (VP (MD may) (VP (VB depend) (PP (IN on) (SBAR (WHADVP (WRB where)) (S (PP (IN in) (NP (DT the) (NN body))) (NP (DT the) (NN fat)) (VP (VBZ is)))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 In 3.179 3.179 2.043 1.136 0.092 2.00 1.00 0.99 4.0
pfix:2 general 9.689 6.510 1.006 5.505 0.692 3.00 1.00 0.72 2.0
pfix:3 , 10.016 0.327 0.327 0.000 0.617 1.01 1.08 1.07 3.0
pfix:4 any 17.244 7.229 1.254 5.975 0.734 2.04 1.01 0.98 2.0
pfix:5 exercise 26.622 9.377 0.710 8.667 0.740 2.04 1.00 1.00 1.0
pfix:6 improves 35.892 9.270 1.961 7.309 0.671 2.05 1.01 1.01 3.0
pfix:7 our 42.523 6.631 3.663 2.968 0.635 3.03 1.02 1.01 2.0
pfix:8 health 50.478 7.955 0.698 7.256 0.779 3.06 1.00 0.97 1.0
pfix:9 . 51.509 1.032 1.030 0.001 0.536 1.00 1.05 1.05 3.0
pfix-10 </s> 51.511 0.002 0.002 0.000 0.535 0.00 1.00 1.00 2.0
pfix sent norm (tot words 9) 5.723 1.410 4.313 0.670 2.14 1.13 1.09 2.6
pfix sent norm (steps 23.0) 2.240 0.552 1.688 0.262 0.84 0.44 0.43 1.0
Full parses for string:
1 1 0.2569 51.7680 34.1631 17.6049 (TOP (S (PP (IN In) (ADJP (JJ general))) (, ,) (NP (DT any) (NN exercise)) (VP (VBZ improves) (NP (PRP$ our) (NN health))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 But 3.136 3.136 2.832 0.305 0.121 1.00 1.00 0.98 3.0
pfix:2 a 7.314 4.177 1.453 2.724 0.518 2.13 1.02 0.89 2.1
pfix:3 wealth 19.056 11.742 0.822 10.920 0.642 2.19 0.93 0.93 1.0
pfix:4 of 21.626 2.571 1.871 0.700 0.367 4.07 1.14 1.14 3.0
pfix:5 recent 28.333 6.706 2.238 4.468 0.368 5.07 1.00 1.00 2.0
pfix:6 science 38.856 10.523 1.555 8.968 0.359 5.07 1.00 1.00 1.0
pfix:7 and 42.598 3.743 3.653 0.090 1.014 5.24 1.00 0.77 1.3
pfix:8 personal 50.228 7.630 0.330 7.300 1.102 6.52 0.34 0.00 1.7
pfix:9 experience 55.742 5.514 0.768 4.745 0.928 6.49 1.01 1.01 1.0
pfix:10 indicate 63.811 8.070 3.127 4.942 0.011 2.00 1.50 1.50 8.0
pfix:11 that 65.308 1.496 0.920 0.576 0.525 3.17 1.00 0.87 2.2
pfix:12 different 74.390 9.082 2.915 6.167 0.353 5.01 1.07 1.06 2.9
pfix:13 people 79.997 5.607 0.307 5.300 0.121 5.00 1.07 1.07 1.0
pfix:14 can 84.041 4.044 2.013 2.031 0.138 5.00 0.99 0.99 3.0
pfix:15 respond 91.826 7.785 0.185 7.600 0.142 6.00 1.00 1.00 2.0
pfix:16 to 94.560 2.734 2.733 0.000 0.764 7.71 1.00 0.70 2.7
pfix:17 similar 104.115 9.555 3.303 6.252 0.238 8.02 0.01 0.00 2.0
pfix:18 exercise 113.891 9.776 1.105 8.672 0.222 8.02 1.01 1.00 1.0
pfix:19 routines 118.873 4.982 1.012 3.970 0.218 8.01 1.01 1.00 1.0
pfix:20 in 122.142 3.269 1.462 1.807 1.018 8.46 1.01 0.50 3.6
pfix:21 different 130.229 8.087 2.374 5.713 1.088 9.65 0.86 0.00 2.0
pfix:22 ways 135.365 5.136 0.455 4.681 0.890 10.20 1.35 1.35 1.0
pfix:23 . 136.479 1.114 1.112 0.002 0.833 1.00 0.97 0.97 10.1
pfix-24 </s> 136.484 0.004 0.004 0.000 0.827 0.00 1.00 1.00 2.0
pfix sent norm (tot words 23) 5.934 1.676 4.258 0.557 5.44 1.01 0.90 2.6
pfix sent norm (steps 60.4) 2.259 0.638 1.621 0.212 2.07 0.39 0.34 1.0
Full parses for string:
1 1 0.3856 136.8694 94.6819 42.1876 (TOP (S (CC But) (NP (NP (DT a) (NN wealth)) (PP (IN of) (NP (NP (JJ recent) (NN science)) (CC and) (NP (JJ personal) (NN experience))))) (VP (VBP indicate) (SBAR (IN that) (S (NP (JJ different) (NNS people)) (VP (MD can) (VP (VB respond) (PP (TO to) (NP (NP (JJ similar) (NN exercise) (NNS routines)) (PP (IN in) (NP (JJ different) (NNS ways)))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 A 3.993 3.993 0.843 3.150 0.279 2.05 1.00 0.93 4.1
pfix:2 lifelong 12.366 8.373 1.271 7.102 0.259 2.05 1.00 1.00 1.0
pfix:3 swimmer 22.950 10.585 0.173 10.411 0.072 2.00 1.06 1.05 1.0
pfix:4 leapt 29.043 6.093 1.513 4.580 0.854 2.05 1.00 0.78 1.4
pfix:5 into 36.539 7.496 1.962 5.534 1.139 3.74 0.74 0.73 2.6
pfix:6 deep 46.798 10.259 2.214 8.045 1.213 4.76 1.03 1.02 2.0
pfix:7 water 54.955 8.157 1.041 7.116 1.124 4.79 1.05 1.05 1.0
pfix:8 near 64.216 9.261 2.172 7.089 1.927 5.44 0.46 0.00 3.4
pfix:9 his 69.094 4.878 3.277 1.601 1.869 6.70 1.11 1.11 2.0
pfix:10 lakeside 73.796 4.702 0.082 4.620 2.672 6.64 0.99 0.71 1.0
pfix:11 home 81.859 8.063 1.333 6.730 2.945 6.52 0.66 0.60 1.1
pfix:12 , 83.897 2.038 2.038 0.000 4.171 3.17 1.31 0.37 5.4
pfix:13 and 86.815 2.919 2.281 0.638 2.836 2.50 3.55 3.55 1.0
pfix:14 was 92.663 5.847 3.447 2.401 1.988 4.00 0.12 0.00 2.1
pfix:15 horrified 98.590 5.927 1.209 4.718 2.318 5.00 0.97 0.90 2.0
pfix:16 to 100.443 1.853 1.853 0.000 2.527 6.78 1.09 0.88 2.8
pfix:17 find 106.167 5.724 0.262 5.463 1.945 8.00 1.27 1.27 2.0
pfix:18 himself 113.984 7.818 3.388 4.429 2.014 9.02 1.00 0.99 2.0
pfix:19 completely 125.502 11.518 4.561 6.957 2.878 7.86 1.16 0.51 4.4
pfix:20 unable 135.980 10.478 3.551 6.927 2.511 9.66 0.17 0.00 1.4
pfix:21 to 138.818 2.838 2.837 0.000 3.902 10.63 0.82 0.00 2.9
pfix:22 swim 158.464 19.646 10.093 9.553 3.940 11.20 0.32 0.00 2.3
pfix:23 . 162.359 3.896 3.859 0.037 3.937 2.93 1.34 1.14 8.9
pfix-24 </s> 162.651 0.291 0.291 0.000 3.530 0.00 1.33 1.00 2.0
pfix sent norm (tot words 23) 7.072 2.415 4.656 2.298 5.54 1.07 0.85 2.6
pfix sent norm (steps 63.4) 2.565 0.876 1.689 0.833 2.01 0.39 0.31 0.9
Full parses for string:
1 1 1.6860 164.3366 101.2248 63.1117 (TOP (S (NP (DT A) (JJ lifelong) (NN swimmer)) (VP (VP (VBP leapt) (PP (IN into) (NP (NP (JJ deep) (NN water)) (PP (IN near) (NP (PRP$ his) (NN lakeside) (NN home)))))) (, ,) (CC and) (VP (VBD was) (VP (VBN horrified) (S (VP (TO to) (VP (VB find) (NP (PRP himself))))) (ADVP (RB completely)) (ADJP (JJ unable)) (S (TO to) (VP (VBP swim)))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Had 9.017 9.017 5.062 3.955 1.106 2.69 1.00 0.71 4.7
pfix:2 his 15.289 6.272 1.252 5.020 1.818 3.44 0.62 0.62 2.1
pfix:3 wife 20.095 4.806 0.563 4.243 1.795 3.39 0.82 0.00 1.0
pfix:4 not 24.257 4.162 3.436 0.726 1.107 3.40 0.02 0.00 2.5
pfix:5 rescued 37.492 13.235 2.460 10.775 0.770 3.83 0.11 0.00 2.0
pfix:6 him 44.072 6.580 3.136 3.444 1.446 4.96 1.03 0.79 2.5
pfix:7 , 45.781 1.709 1.709 0.000 1.816 2.14 1.28 0.80 4.0
pfix:8 he 49.249 3.468 1.873 1.594 1.580 3.27 1.66 0.93 3.1
pfix:9 might 54.976 5.728 2.889 2.839 1.478 2.77 0.36 0.00 3.0
pfix:10 have 57.534 2.558 0.286 2.271 1.497 3.84 0.95 0.95 2.0
pfix:11 drowned 69.614 12.080 0.953 11.127 1.581 4.84 1.01 0.99 2.0
pfix:12 . 72.372 2.758 2.741 0.017 0.865 1.07 1.43 1.43 4.1
pfix-13 </s> 72.406 0.034 0.034 0.000 0.693 0.00 1.03 1.00 2.0
pfix sent norm (tot words 12) 6.034 2.200 3.834 1.463 3.30 0.94 0.68 2.9
pfix sent norm (steps 34.0) 2.132 0.777 1.355 0.517 1.17 0.33 0.24 1.0
Full parses for string:
1 1 0.1612 72.5669 36.7783 35.7886 (TOP (S (SBAR (SINV (VBD Had) (NP (PRP$ his) (NN wife)) (RB not) (VP (VBD rescued) (NP (PRP him))))) (, ,) (NP (PRP he)) (VP (MD might) (VP (VB have) (VP (VBN drowned)))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Scientists 8.427 8.427 3.113 5.314 0.030 2.00 1.00 1.00 4.0
pfix:2 have 11.909 3.482 2.034 1.448 0.022 2.00 1.00 1.00 3.0
pfix:3 used 17.892 5.983 0.980 5.003 0.132 3.00 0.99 0.98 2.0
pfix:4 genetically 29.481 11.590 2.584 9.005 1.167 4.74 1.01 0.51 2.7
pfix:5 reprogrammed 35.238 5.756 0.380 5.376 1.777 4.75 1.05 0.53 1.0
pfix:6 bacteria 46.742 11.504 1.694 9.811 1.097 4.11 1.75 1.73 2.1
pfix:7 to 50.005 3.263 3.263 0.000 2.393 5.76 1.02 0.37 3.6
pfix:8 destroy 58.708 8.703 0.846 7.857 1.893 7.39 0.00 0.00 2.0
pfix:9 tumors 73.370 14.662 2.515 12.147 1.960 8.43 1.02 1.01 2.0
pfix:10 in 76.393 3.023 1.390 1.633 2.562 9.83 0.97 0.75 3.0
pfix:11 mice 86.020 9.626 2.717 6.910 2.371 10.97 1.10 1.10 2.0
pfix:12 . 87.163 1.143 1.140 0.004 2.162 1.10 0.80 0.00 10.7
pfix-13 </s> 87.200 0.037 0.037 0.000 2.035 0.00 1.04 0.00 2.0
pfix sent norm (tot words 12) 7.267 1.891 5.376 1.634 5.34 1.06 0.75 3.3
pfix sent norm (steps 41.1) 2.119 0.552 1.568 0.476 1.56 0.31 0.22 1.0
Full parses for string:
1 1 1.3074 88.5071 61.3848 27.1223 (TOP (S (NP (NNS Scientists)) (VP (VBP have) (VP (VBN used) (NP (ADJP (RB genetically) (JJ reprogrammed)) (NNS bacteria)) (S (VP (TO to) (VP (VB destroy) (NP (NP (NNS tumors)) (PP (IN in) (NP (NNS mice))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 The 1.837 1.837 0.878 0.959 0.070 1.99 1.00 0.99 4.0
pfix:2 innovative 13.917 12.080 1.783 10.298 0.213 2.02 1.00 0.97 1.0
pfix:3 method 22.915 8.997 0.434 8.564 0.135 1.99 1.02 1.02 1.0
pfix:4 one 31.456 8.542 2.031 6.510 1.060 3.79 0.99 0.77 2.9
pfix:5 day 36.308 4.852 0.473 4.379 0.288 3.96 1.26 1.26 1.0
pfix:6 may 41.548 5.240 2.743 2.497 0.100 2.04 1.04 1.04 5.0
pfix:7 lead 46.939 5.390 0.211 5.179 0.098 3.04 1.00 1.00 2.0
pfix:8 to 48.898 1.959 1.959 0.000 0.577 4.23 1.00 0.81 2.2
pfix:9 cancer 57.186 8.288 1.814 6.474 0.108 5.04 1.23 1.23 2.0
pfix:10 therapies 71.654 14.469 1.617 12.852 0.108 5.05 1.00 1.00 1.0
pfix:11 that 75.963 4.309 1.722 2.587 0.933 7.69 1.01 0.76 4.0
pfix:12 treat 87.639 11.676 1.995 9.680 0.511 8.96 1.32 1.16 4.0
pfix:13 the 90.334 2.695 1.955 0.740 1.169 10.11 0.80 0.71 2.2
pfix:14 disease 99.358 9.024 0.630 8.395 1.305 10.15 0.84 0.84 1.0
pfix:15 more 105.888 6.530 5.808 0.721 2.452 10.63 0.75 0.00 2.6
pfix:16 precisely 118.548 12.660 3.745 8.915 1.882 10.54 0.01 0.00 3.3
pfix:17 , 121.097 2.549 2.549 0.000 3.186 4.72 0.00 0.00 7.2
pfix:18 without 128.292 7.196 1.834 5.361 1.910 7.90 2.42 2.41 2.0
pfix:19 the 130.498 2.206 1.140 1.065 2.129 9.05 1.02 0.97 2.1
pfix:20 side 139.458 8.960 0.321 8.639 2.262 9.05 1.00 0.96 1.0
pfix:21 effects 146.256 6.797 4.564 2.234 2.506 9.09 0.76 0.76 1.0
pfix:22 of 148.503 2.247 1.849 0.398 2.612 11.03 0.99 0.93 3.1
pfix:23 conventional 158.197 9.693 2.247 7.446 2.612 12.06 1.01 1.00 2.0
pfix:24 drugs 166.144 7.947 0.842 7.105 2.576 12.06 1.01 1.01 1.0
pfix:25 . 167.190 1.046 1.039 0.007 2.321 1.00 1.06 1.06 11.9
pfix-26 </s> 167.193 0.003 0.003 0.000 2.318 0.00 1.00 1.00 2.0
pfix sent norm (tot words 25) 6.688 1.847 4.840 1.418 6.69 1.02 0.95 2.9
pfix sent norm (steps 67.3) 2.485 0.686 1.798 0.527 2.49 0.38 0.35 1.1
Full parses for string:
1 1 1.1829 168.3757 111.9894 56.3864 (TOP (S (NP (NP (DT The) (JJ innovative) (NN method)) (NP (CD one) (NN day))) (VP (MD may) (VP (VB lead) (PP (TO to) (NP (NP (NN cancer) (NNS therapies)) (SBAR (WHNP (WDT that)) (S (VP (VBP treat) (NP (DT the) (NN disease) (JJR more)) (ADVP (RB precisely)) (, ,) (PP (IN without) (NP (NP (DT the) (NN side) (NNS effects)) (PP (IN of) (NP (JJ conventional) (NNS drugs)))))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 A 3.993 3.993 0.843 3.150 0.279 2.05 1.00 0.93 4.1
pfix:2 cluster 16.239 12.246 0.744 11.502 0.370 2.08 0.96 0.96 1.0
pfix:3 of 18.612 2.373 1.812 0.562 0.147 4.00 1.08 1.08 3.0
pfix:4 police 29.073 10.461 1.619 8.842 0.835 5.00 1.00 0.64 2.0
pfix:5 suicides 34.769 5.695 1.436 4.259 0.421 4.99 1.49 1.47 1.0
pfix:6 has 38.631 3.862 2.058 1.804 0.192 2.02 1.05 1.04 6.0
pfix:7 prompted 47.402 8.771 1.024 7.746 0.187 3.00 1.00 1.00 2.0
pfix:8 leaders 58.794 11.392 3.757 7.635 0.719 4.17 0.99 0.85 2.2
pfix:9 to 61.373 2.579 2.579 0.000 1.981 5.42 0.89 0.28 3.3
pfix:10 plead 69.553 8.180 0.334 7.846 1.530 6.60 1.36 1.36 2.0
pfix:11 with 74.588 5.035 1.919 3.116 1.643 7.58 0.97 0.00 2.0
pfix:12 troubled 84.397 9.809 2.309 7.500 2.284 8.59 1.02 0.57 2.0
pfix:13 officers 92.626 8.229 0.854 7.375 2.006 8.59 1.47 1.47 1.0
pfix:14 to 95.703 3.077 3.077 0.000 3.648 8.35 0.93 0.00 5.3
pfix:15 seek 102.121 6.417 0.541 5.877 2.970 9.79 1.69 1.69 2.0
pfix:16 help 109.185 7.064 2.324 4.740 2.961 10.79 1.02 1.01 2.0
pfix:17 . 111.210 2.025 2.023 0.002 2.824 1.05 1.40 1.40 9.9
pfix-18 </s> 111.228 0.018 0.018 0.000 2.763 0.00 1.02 1.00 2.0
pfix sent norm (tot words 17) 6.543 1.722 4.821 1.633 5.53 1.20 0.99 3.1
pfix sent norm (steps 53.9) 2.065 0.544 1.522 0.515 1.75 0.38 0.31 1.0
Full parses for string:
1 1 1.4450 112.6735 80.5499 32.1235 (TOP (S (NP (NP (DT A) (NN cluster)) (PP (IN of) (NP (NN police) (NNS suicides)))) (VP (VBZ has) (VP (VBN prompted) (NP (NNS leaders) (S (VP (TO to) (VP (VB plead) (PP (IN with) (NP (JJ troubled) (NNS officers))))))) (S (VP (TO to) (VP (VB seek) (NP (NN help))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 But 3.136 3.136 2.832 0.305 0.121 1.00 1.00 0.98 3.0
pfix:2 resistance 14.251 11.114 3.125 7.990 0.291 2.08 1.02 0.94 2.1
pfix:3 is 17.837 3.586 2.589 0.998 0.307 2.09 0.99 0.99 3.0
pfix:4 strong 24.874 7.037 1.493 5.544 1.212 3.09 1.02 0.67 2.0
pfix:5 . 25.940 1.066 1.063 0.003 0.070 1.00 1.61 1.61 3.0
pfix-6 </s> 25.944 0.004 0.004 0.000 0.067 0.00 1.00 1.00 2.0
pfix sent norm (tot words 5) 5.189 2.221 2.968 0.414 1.85 1.33 1.24 3.0
pfix sent norm (steps 15.0) 1.729 0.740 0.989 0.138 0.62 0.44 0.41 1.0
Full parses for string:
1 1 0.0095 25.9534 14.2686 11.6848 (TOP (S (CC But) (NP (NN resistance)) (VP (VBZ is) (ADJP (JJ strong))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Positional 17.382 17.382 3.141 14.241 1.336 1.94 1.00 0.70 3.9
pfix:2 vertigo 22.509 5.128 0.241 4.887 1.452 1.92 1.16 0.92 1.0
pfix:3 is 26.015 3.506 2.636 0.870 0.413 2.00 1.39 1.39 3.0
pfix:4 a 28.617 2.602 1.793 0.809 0.581 3.04 1.00 0.97 2.0
pfix:5 common 35.399 6.782 0.252 6.530 0.632 3.04 1.00 0.99 1.0
pfix:6 type 45.511 10.112 0.269 9.843 0.566 3.03 1.02 1.01 1.0
pfix:7 of 46.562 1.051 0.985 0.066 0.462 5.01 1.02 1.02 3.0
pfix:8 dizziness 59.507 12.945 2.073 10.871 0.463 6.01 1.00 1.00 2.0
pfix:9 that 64.017 4.510 2.114 2.396 2.272 5.89 1.03 0.30 4.9
pfix:10 can 69.210 5.193 2.691 2.502 1.618 8.00 1.65 1.65 4.0
pfix:11 be 70.845 1.634 0.135 1.499 1.610 9.00 1.00 1.00 2.0
pfix:12 treated 77.593 6.748 0.687 6.061 1.594 10.01 1.00 1.00 2.0
pfix:13 with 80.846 3.253 0.541 2.712 1.606 11.01 1.00 1.00 2.0
pfix:14 a 83.170 2.324 1.094 1.230 1.615 12.01 1.00 1.00 2.0
pfix:15 simple 91.159 7.989 0.232 7.757 1.726 12.02 1.00 0.98 1.0
pfix:16 maneuver 101.152 9.993 0.340 9.653 1.613 12.01 1.02 1.02 1.0
pfix:17 . 102.754 1.601 1.597 0.005 1.596 1.00 1.06 1.06 11.9
pfix-18 </s> 102.757 0.003 0.003 0.000 1.593 0.00 1.00 1.00 2.0
pfix sent norm (tot words 17) 6.045 1.225 4.820 1.338 6.29 1.14 1.06 2.9
pfix sent norm (steps 49.7) 2.068 0.419 1.649 0.458 2.15 0.39 0.36 1.0
Full parses for string:
1 1 0.7519 103.5089 77.9564 25.5525 (TOP (S (NP (JJ Positional) (NN vertigo)) (VP (VBZ is) (NP (NP (DT a) (JJ common) (NN type)) (PP (IN of) (NP (NN dizziness))) (SBAR (WHNP (WDT that)) (S (VP (MD can) (VP (VB be) (VP (VBN treated) (PP (IN with) (NP (DT a) (JJ simple) (NN maneuver)))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Vertigo 5.847 5.847 1.062 4.785 1.560 1.92 1.00 0.54 3.9
pfix:2 is 10.114 4.267 3.244 1.023 0.880 2.00 0.97 0.97 3.0
pfix:3 an 14.450 4.336 1.792 2.544 1.102 3.05 0.99 0.95 2.1
pfix:4 illusory 21.781 7.331 0.134 7.197 1.872 3.07 1.01 0.61 1.0
pfix:5 sensation 32.739 10.958 0.681 10.277 1.113 3.03 1.63 1.63 1.0
pfix:6 of 34.396 1.657 0.990 0.667 1.011 5.01 1.03 1.02 3.0
pfix:7 motion 44.321 9.925 1.172 8.753 1.004 6.02 1.00 1.00 2.0
pfix:8 that 48.845 4.524 2.203 2.321 2.726 5.91 1.04 0.31 4.9
pfix:9 is 52.070 3.225 1.761 1.464 2.205 7.97 1.46 1.46 4.0
pfix:10 often 58.850 6.779 1.967 4.812 2.737 9.06 1.01 0.84 2.1
pfix:11 accompanied 68.566 9.716 2.523 7.194 1.382 8.57 1.92 1.91 3.0
pfix:12 by 70.085 1.519 1.336 0.183 1.338 9.57 1.01 1.01 2.0
pfix:13 intense 79.743 9.658 2.318 7.340 1.503 10.60 1.00 0.97 2.0
pfix:14 nausea 93.574 13.831 1.131 12.700 1.412 10.58 1.04 1.02 1.0
pfix:15 . 95.265 1.691 1.687 0.005 1.302 1.00 1.05 1.05 10.5
pfix-16 </s> 95.268 0.003 0.003 0.000 1.301 0.00 1.00 1.00 2.0
pfix sent norm (tot words 15) 6.351 1.600 4.751 1.630 5.83 1.21 1.09 3.2
pfix sent norm (steps 47.3) 2.013 0.507 1.506 0.517 1.85 0.38 0.34 1.0
Full parses for string:
1 1 0.9447 96.2128 67.7506 28.4622 (TOP (S (NP (NNP Vertigo)) (VP (VBZ is) (NP (NP (DT an) (JJ illusory) (NN sensation)) (PP (IN of) (NP (NN motion))) (SBAR (WHNP (WDT that)) (S (VP (VBZ is) (ADVP (RB often)) (VP (VBN accompanied) (PP (IN by) (NP (JJ intense) (NN nausea))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 When 5.473 5.473 4.927 0.546 0.264 2.98 1.00 0.96 5.0
pfix:2 new 12.924 7.451 2.958 4.493 0.296 4.00 1.02 0.99 4.0
pfix:3 breast 27.089 14.165 1.077 13.088 0.404 4.02 1.01 0.97 1.0
pfix:4 cancer 31.395 4.306 2.567 1.739 0.151 4.00 1.05 1.05 1.0
pfix:5 drugs 37.441 6.046 2.508 3.538 0.166 4.00 1.00 1.00 1.0
pfix:6 come 44.952 7.512 0.709 6.803 0.908 4.02 1.03 0.74 3.0
pfix:7 to 47.762 2.810 2.810 0.000 1.671 5.78 0.87 0.72 2.8
pfix:8 market 54.673 6.911 0.295 6.616 1.745 6.86 1.10 1.03 2.0
pfix:9 , 57.160 2.487 2.487 0.000 2.235 1.43 0.16 0.00 5.8
pfix:10 there 61.770 4.611 3.226 1.385 1.888 2.02 1.12 1.09 2.0
pfix:11 is 63.826 2.056 1.432 0.624 1.784 2.01 1.02 1.02 3.0
pfix:12 little 70.572 6.745 1.323 5.423 2.957 3.03 1.03 0.58 2.0
pfix:13 data 79.184 8.613 0.887 7.726 2.668 3.04 1.65 0.84 1.0
pfix:14 to 82.298 3.113 3.113 0.000 3.928 4.80 0.88 0.00 3.3
pfix:15 indicate 90.044 7.746 0.490 7.257 3.260 6.26 1.59 1.59 2.0
pfix:16 whether 95.273 5.229 1.439 3.790 3.167 7.33 1.06 1.06 2.0
pfix:17 they 98.203 2.930 1.503 1.426 3.167 9.33 1.00 1.00 3.0
pfix:18 are 101.458 3.255 1.738 1.517 3.167 9.33 1.00 1.00 3.0
pfix:19 safe 109.119 7.660 1.891 5.770 3.222 10.34 1.00 0.99 2.0
pfix:20 or 114.250 5.131 3.039 2.092 4.170 8.41 1.08 0.72 4.7
pfix:21 effective 122.986 8.736 2.997 5.739 3.290 10.61 0.00 0.00 1.1
pfix:22 in 125.750 2.764 1.700 1.065 3.940 11.27 1.00 0.62 2.4
pfix:23 men 135.712 9.962 3.056 6.906 4.015 12.22 0.88 0.85 2.0
pfix:24 . 137.205 1.493 1.488 0.005 3.994 1.00 0.88 0.00 12.1
pfix-25 </s> 137.208 0.003 0.003 0.000 3.992 0.00 1.00 0.00 2.0
pfix sent norm (tot words 24) 5.717 2.069 3.648 2.519 5.75 1.02 0.78 3.0
pfix sent norm (steps 69.9) 1.963 0.710 1.252 0.865 1.98 0.35 0.27 1.0
Full parses for string:
1 1 2.6272 139.8352 81.8438 57.9914 (TOP (S (SBAR (WHADVP (WRB When)) (S (NP (JJ new) (NN breast) (NN cancer) (NNS drugs)) (VP (VBD come) (PP (TO to) (NP (NN market)))))) (, ,) (NP (EX there)) (VP (VBZ is) (NP (JJ little) (NNS data) (S (VP (TO to) (VP (VB indicate) (SBAR (IN whether) (S (NP (PRP they)) (VP (VBP are) (ADJP (JJ safe) (CC or) (JJ effective)) (PP (IN in) (NP (NNS men))))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Some 4.894 4.894 1.453 3.441 0.181 2.02 1.00 0.97 4.0
pfix:2 new 10.431 5.537 2.278 3.259 0.125 2.00 1.02 1.02 1.0
pfix:3 drugs 18.749 8.318 1.661 6.657 0.079 2.00 1.01 1.01 1.0
pfix:4 are 22.098 3.348 2.415 0.933 0.024 2.00 1.01 1.01 3.0
pfix:5 approved 29.712 7.614 1.054 6.561 0.136 3.00 1.00 0.98 2.0
pfix:6 only 35.931 6.219 2.087 4.133 2.024 4.42 1.02 0.28 2.4
pfix:7 for 39.921 3.989 1.733 2.257 1.435 4.14 0.29 0.00 2.3
pfix:8 women 47.554 7.634 2.774 4.860 1.301 5.14 1.08 1.08 2.0
pfix:9 . 49.249 1.695 1.693 0.002 1.254 1.00 1.02 1.02 5.1
pfix-10 </s> 49.252 0.003 0.003 0.000 1.253 0.00 1.00 1.00 2.0
pfix sent norm (tot words 9) 5.472 1.906 3.567 0.868 2.86 1.05 0.93 2.8
pfix sent norm (steps 24.9) 1.975 0.688 1.287 0.313 1.03 0.38 0.34 1.0
Full parses for string:
1 1 0.4837 49.7356 29.9130 19.8226 (TOP (S (NP (DT Some) (JJ new) (NNS drugs)) (VP (VBP are) (VP (VBN approved) (PP (ADVP (RB only)) (IN for) (NP (NNS women))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Polio 5.847 5.847 1.062 4.785 1.560 1.92 1.00 0.54 3.9
pfix:2 is 10.114 4.267 3.244 1.023 0.880 2.00 0.97 0.97 3.0
pfix:3 an 14.450 4.336 1.792 2.544 1.102 3.05 0.99 0.95 2.1
pfix:4 infectious 28.713 14.263 0.952 13.311 1.195 3.07 1.02 0.98 1.0
pfix:5 disease 37.751 9.038 0.245 8.794 1.039 3.04 1.04 1.04 1.0
pfix:6 that 41.028 3.277 0.926 2.350 2.143 5.03 1.05 0.46 3.2
pfix:7 can 46.412 5.384 2.883 2.501 1.160 7.00 1.98 1.98 4.0
pfix:8 spread 55.488 9.076 0.132 8.944 1.207 8.00 1.00 0.99 2.0
pfix:9 rapidly 65.113 9.625 3.003 6.621 2.153 9.20 1.01 0.73 2.2
pfix:10 and 68.204 3.091 2.918 0.172 2.351 8.37 1.33 0.91 3.2
pfix:11 mainly 76.357 8.154 1.505 6.649 2.097 9.51 0.06 0.00 1.5
pfix:12 affects 90.395 14.038 5.328 8.710 1.222 9.89 0.08 0.00 2.1
pfix:13 young 99.933 9.538 2.427 7.111 1.435 10.96 1.04 0.97 2.0
pfix:14 children 107.912 7.979 1.090 6.889 1.092 10.96 1.08 1.08 1.0
pfix:15 . 109.560 1.648 1.644 0.005 0.982 1.00 1.02 1.02 10.9
pfix-16 </s> 109.563 0.003 0.003 0.000 0.981 0.00 1.00 1.00 2.0
pfix sent norm (tot words 15) 7.304 1.944 5.361 1.507 6.20 1.04 0.91 3.0
pfix sent norm (steps 46.7) 2.344 0.624 1.720 0.484 1.99 0.34 0.29 1.0
Full parses for string:
1 1 0.6754 110.2386 78.7571 31.4815 (TOP (S (NP (NNP Polio)) (VP (VBZ is) (NP (NP (DT an) (JJ infectious) (NN disease)) (SBAR (WHNP (WDT that)) (S (VP (MD can) (VP (VP (VB spread) (ADVP (RB rapidly))) (CC and) (VP (ADVP (RB mainly)) (VBZ affects) (NP (JJ young) (NNS children))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 It 3.584 3.584 2.389 1.194 0.007 2.00 1.00 1.00 4.0
pfix:2 can 8.746 5.163 2.381 2.782 0.004 2.00 1.00 1.00 3.0
pfix:3 cause 14.441 5.694 0.212 5.482 0.004 3.00 1.00 1.00 2.0
pfix:4 muscle 25.714 11.273 2.742 8.531 0.093 4.02 1.00 0.98 2.0
pfix:5 weakness 36.431 10.717 2.174 8.543 0.300 4.06 1.00 0.96 1.1
pfix:6 , 38.343 1.912 1.912 0.000 1.745 2.83 1.02 0.36 3.4
pfix:7 paralysis 52.425 14.082 2.348 11.734 0.208 4.01 0.06 0.00 1.0
pfix:8 and 52.867 0.442 0.340 0.101 0.044 4.00 1.03 1.03 1.0
pfix:9 , 62.150 9.284 9.284 0.000 1.512 3.71 0.18 0.00 1.0
pfix:10 on 66.733 4.582 1.221 3.361 1.299 4.83 0.93 0.00 2.8
pfix:11 rare 77.208 10.476 2.332 8.143 1.324 5.91 0.99 0.95 2.0
pfix:12 occasions 86.152 8.944 0.781 8.163 1.273 6.05 0.92 0.92 1.0
pfix:13 , 86.588 0.436 0.436 0.000 1.345 3.63 1.26 1.23 3.3
pfix:14 it 89.626 3.038 2.011 1.027 0.227 4.07 1.54 1.48 2.1
pfix:15 can 94.980 5.354 2.572 2.782 0.154 4.04 1.02 1.02 3.0
pfix:16 be 96.776 1.796 0.297 1.499 0.137 5.04 1.00 1.00 2.0
pfix:17 fatal 104.994 8.217 1.933 6.285 0.152 6.04 1.00 1.00 2.0
pfix:18 . 105.766 0.773 0.772 0.001 0.455 2.16 1.02 0.86 4.8
pfix-19 </s> 106.058 0.291 0.291 0.000 0.098 0.00 1.17 1.00 3.0
pfix sent norm (tot words 18) 5.892 2.024 3.868 0.577 3.97 1.01 0.88 2.5
pfix sent norm (steps 46.0) 2.306 0.792 1.514 0.226 1.55 0.39 0.34 1.0
Full parses for string:
1 1 0.0197 106.0773 68.6555 37.4218 (TOP (S (S (NP (PRP It)) (VP (MD can) (VP (VB cause) (NP (NN muscle) (NN weakness) (, ,) (NN paralysis))))) (CC and) (, ,) (S (PP (IN on) (NP (JJ rare) (NNS occasions))) (, ,) (NP (PRP it)) (VP (MD can) (VP (VB be) (ADJP (JJ fatal))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 In 3.179 3.179 2.043 1.136 0.092 2.00 1.00 0.99 4.0
pfix:2 general 9.689 6.510 1.006 5.505 0.692 3.00 1.00 0.72 2.0
pfix:3 , 10.016 0.327 0.327 0.000 0.617 1.01 1.08 1.07 3.0
pfix:4 mammalian 26.274 16.259 2.902 13.357 1.337 2.23 0.84 0.79 1.9
pfix:5 hearts 38.384 12.110 0.957 11.153 1.090 2.11 1.17 1.12 1.0
pfix:6 are 41.428 3.043 2.242 0.801 0.766 2.03 1.10 1.10 3.0
pfix:7 quite 48.645 7.218 1.579 5.638 1.456 3.03 1.01 0.81 2.0
pfix:8 malleable 54.186 5.541 0.278 5.262 0.852 3.03 1.21 1.21 1.0
pfix:9 . 55.249 1.063 1.061 0.002 0.681 1.00 1.04 1.04 3.0
pfix-10 </s> 55.251 0.003 0.003 0.000 0.681 0.00 1.00 1.00 2.0
pfix sent norm (tot words 9) 6.139 1.378 4.762 0.918 2.16 1.16 1.09 2.5
pfix sent norm (steps 23.0) 2.400 0.538 1.861 0.359 0.84 0.45 0.43 1.0
Full parses for string:
1 1 0.2829 55.5343 36.5490 18.9852 (TOP (S (PP (IN In) (ADJP (JJ general))) (, ,) (NP (JJ mammalian) (NNS hearts)) (VP (VBP are) (ADJP (RB quite) (JJ malleable))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 They 4.477 4.477 2.389 2.088 0.007 2.00 1.00 1.00 4.0
pfix:2 change 15.138 10.661 1.885 8.776 0.897 2.00 1.00 0.67 3.0
pfix:3 in 19.303 4.164 1.625 2.539 1.648 3.06 0.74 0.66 2.1
pfix:4 response 25.818 6.516 2.027 4.489 1.160 4.05 1.19 1.19 2.0
pfix:5 to 29.436 3.617 3.617 0.000 2.567 5.15 1.22 0.51 4.0
pfix:6 the 32.119 2.683 2.244 0.439 1.915 6.13 0.00 0.00 2.0
pfix:7 demands 41.802 9.683 2.584 7.099 2.143 6.41 1.09 0.93 1.1
pfix:8 placed 47.608 5.806 4.029 1.777 1.753 8.07 1.08 1.08 3.0
pfix:9 on 50.398 2.790 0.324 2.466 1.783 9.07 1.00 1.00 2.0
pfix:10 them 56.899 6.501 0.992 5.508 1.764 10.07 1.00 1.00 2.0
pfix:11 . 57.812 0.913 0.912 0.001 1.800 1.01 0.92 0.92 9.9
pfix-12 </s> 57.816 0.004 0.004 0.000 1.786 0.00 1.00 1.00 2.0
pfix sent norm (tot words 11) 5.256 2.058 3.198 1.748 5.18 1.02 0.90 3.4
pfix sent norm (steps 36.3) 1.592 0.623 0.969 0.529 1.57 0.31 0.27 1.0
Full parses for string:
1 1 1.1671 58.9830 30.1588 28.8242 (TOP (S (NP (PRP They)) (VP (VBP change) (PP (IN in) (NP (NP (NN response)) (PP (TO to) (NP (NP (DT the) (NNS demands)) (VP (VBN placed) (PP (IN on) (NP (PRP them))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 A 3.993 3.993 0.843 3.150 0.279 2.05 1.00 0.93 4.1
pfix:2 number 8.878 4.885 0.744 4.141 0.367 2.08 0.96 0.96 1.0
pfix:3 of 9.800 0.922 0.753 0.168 0.057 4.00 1.10 1.10 3.0
pfix:4 countries 19.619 9.820 2.629 7.191 0.075 5.00 1.00 1.00 2.0
pfix:5 , 21.929 2.309 2.309 0.000 1.359 3.28 1.00 0.45 3.6
pfix:6 including 25.666 3.737 3.316 0.421 0.266 6.80 0.00 0.00 2.0
pfix:7 Australia 33.819 8.153 1.622 6.532 0.256 7.81 1.00 1.00 2.0
pfix:8 and 36.365 2.546 2.129 0.418 1.006 8.32 1.00 0.55 1.6
pfix:9 Germany 44.118 7.753 0.324 7.429 0.896 9.11 1.19 1.19 1.7
pfix:10 , 46.003 1.885 1.885 0.000 2.356 7.24 0.52 0.00 3.3
pfix:11 have 51.965 5.962 4.427 1.535 1.060 2.01 0.00 0.00 2.0
pfix:12 started 57.957 5.993 0.752 5.240 1.007 3.00 1.02 1.01 2.0
pfix:13 requiring 67.403 9.445 2.653 6.792 1.353 4.13 1.01 0.88 2.1
pfix:14 companies 75.416 8.014 2.999 5.014 1.796 5.26 0.89 0.84 2.1
pfix:15 to 78.004 2.588 2.587 0.001 3.204 6.59 0.82 0.32 3.5
pfix:16 report 83.904 5.900 0.346 5.554 2.731 7.77 1.43 1.43 2.0
pfix:17 their 87.727 3.823 2.746 1.078 2.746 8.78 1.03 1.02 2.0
pfix:18 gender 100.895 13.168 0.963 12.205 2.747 8.78 1.00 1.00 1.0
pfix:19 pay 111.358 10.463 1.926 8.537 3.036 8.80 0.99 0.92 1.2
pfix:20 gaps 118.489 7.131 2.523 4.608 3.262 8.86 0.98 0.93 1.1
pfix:21 in 121.653 3.165 1.236 1.928 3.879 9.96 0.86 0.52 3.0
pfix:22 recent 127.105 5.451 2.383 3.068 3.728 11.08 1.14 1.14 2.0
pfix:23 years 128.740 1.636 0.287 1.349 3.713 10.99 0.94 0.94 1.0
pfix:24 . 129.779 1.039 1.035 0.004 3.444 1.02 1.13 0.00 10.4
pfix-25 </s> 129.786 0.006 0.006 0.000 3.420 0.00 1.01 0.00 2.0
pfix sent norm (tot words 24) 5.408 1.809 3.598 2.002 6.36 0.96 0.76 2.6
pfix sent norm (steps 65.6) 1.979 0.662 1.317 0.732 2.33 0.35 0.28 0.9
Full parses for string:
1 1 2.2794 132.0649 84.9439 47.1210 (TOP (S (NP (NP (DT A) (NN number)) (PP (IN of) (NP (NP (NNS countries)) (, ,) (PP (VBG including) (NP (NNP Australia) (CC and) (NNP Germany)))))) (, ,) (VP (VBP have) (VP (VBN started) (VP (VBG requiring) (S (NP (NNS companies)) (VP (TO to) (VP (VB report) (NP (PRP$ their) (NN gender) (NN pay) (NNS gaps)) (PP (IN in) (NP (JJ recent) (NNS years))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 Proponents 9.352 9.352 3.113 6.238 0.024 2.00 1.00 1.00 4.0
pfix:2 argue 19.132 9.780 2.781 6.999 0.071 2.01 1.00 0.99 3.0
pfix:3 that 20.528 1.396 0.885 0.511 0.332 3.05 1.01 0.94 2.0
pfix:4 transparency 26.460 5.932 1.331 4.601 1.900 5.01 0.86 0.36 2.9
pfix:5 can 31.910 5.450 1.878 3.572 1.570 5.00 0.84 0.00 3.0
pfix:6 lead 38.082 6.172 0.188 5.984 1.561 6.00 1.00 1.00 2.0
pfix:7 to 40.042 1.960 1.960 0.000 2.035 7.19 1.00 0.81 2.2
pfix:8 improvement 50.772 10.730 1.831 8.899 1.613 8.01 1.22 1.22 2.0
pfix:9 . 51.500 0.728 0.728 0.000 1.577 1.00 1.01 1.01 8.0
pfix-10 </s> 51.502 0.003 0.003 0.000 1.567 0.00 1.00 1.00 2.0
pfix sent norm (tot words 9) 5.722 1.633 4.089 1.361 4.36 1.11 0.93 3.5
pfix sent norm (steps 31.0) 1.661 0.474 1.187 0.395 1.27 0.32 0.27 1.0
Full parses for string:
1 1 1.2678 52.7702 34.2196 18.5507 (TOP (S (NP (NNS Proponents)) (VP (VBP argue) (SBAR (IN that) (S (NP (NN transparency)) (VP (MD can) (VP (VB lead) (PP (TO to) (NP (NN improvement)))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 An 5.705 5.705 1.477 4.229 0.137 1.98 1.00 0.97 4.0
pfix:2 extensive 15.535 9.830 1.289 8.542 0.351 1.95 0.96 0.94 1.0
pfix:3 study 23.790 8.254 0.416 7.839 0.317 1.93 1.01 1.01 1.0
pfix:4 confirms 35.956 12.166 3.455 8.711 0.196 2.01 1.06 1.05 3.0
pfix:5 that 39.322 3.366 1.078 2.287 0.510 3.04 1.04 0.93 2.0
pfix:6 red 49.764 10.442 1.948 8.494 1.760 4.78 0.77 0.56 2.7
pfix:7 meat 60.641 10.878 1.213 9.664 1.327 4.69 1.18 1.17 1.0
pfix:8 might 66.619 5.978 2.065 3.913 1.084 5.00 0.99 0.99 3.0
pfix:9 not 69.447 2.828 1.869 0.959 1.030 5.01 1.09 1.09 1.0
pfix:10 be 71.475 2.028 0.464 1.564 0.852 6.00 1.05 1.05 2.0
pfix:11 that 77.512 6.037 1.435 4.602 2.706 7.23 1.01 0.39 2.2
pfix:12 bad 84.893 7.380 1.840 5.540 1.217 7.13 0.09 0.00 1.1
pfix:13 for 87.802 2.910 1.078 1.832 1.743 7.70 1.10 0.72 2.3
pfix:14 you 94.126 6.324 3.010 3.314 1.671 8.99 0.71 0.00 2.5
pfix:15 . 95.784 1.658 1.657 0.001 1.045 1.01 0.00 0.00 8.9
pfix-16 </s> 95.791 0.007 0.007 0.000 1.032 0.00 1.00 0.00 2.0
pfix sent norm (tot words 15) 6.386 1.620 4.766 1.132 4.56 0.94 0.72 2.7
pfix sent norm (steps 39.0) 2.456 0.623 1.833 0.435 1.76 0.36 0.28 1.0
Full parses for string:
1 1 0.4973 96.2880 66.2343 30.0537 (TOP (S (NP (DT An) (JJ extensive) (NN study)) (VP (VBZ confirms) (SBAR (IN that) (S (NP (JJ red) (NN meat)) (VP (MD might) (RB not) (VP (VB be) (ADJP (RB that) (JJ bad) (PP (IN for) (NP (PRP you))))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 But 3.136 3.136 2.832 0.305 0.121 1.00 1.00 0.98 3.0
pfix:2 it 6.131 2.995 1.942 1.053 0.199 2.05 1.02 0.97 2.0
pfix:3 is 8.666 2.535 1.526 1.009 0.172 2.04 1.01 1.01 3.0
pfix:4 bad 16.385 7.718 1.647 6.071 0.828 3.04 1.01 0.67 2.0
pfix:5 for 20.551 4.167 2.204 1.963 1.294 3.58 1.50 0.77 2.5
pfix:6 the 22.023 1.472 1.022 0.450 1.289 4.74 1.00 1.00 2.2
pfix:7 planet 30.425 8.402 0.496 7.906 1.501 4.78 1.08 1.01 1.0
pfix:8 , 32.950 2.524 2.524 0.000 2.751 3.57 1.02 0.30 3.4
pfix:9 with 38.025 5.075 1.766 3.309 2.413 4.75 1.04 0.00 2.0
pfix:10 chicken 49.748 11.723 2.157 9.566 2.354 5.78 0.96 0.91 2.0
pfix:11 and 52.628 2.879 2.753 0.126 3.082 5.84 0.88 0.00 1.8
pfix:12 pork 59.961 7.334 0.501 6.833 2.309 6.08 1.51 1.51 1.0
pfix:13 less 70.956 10.995 4.778 6.217 3.180 5.16 1.69 1.16 5.0
pfix:14 harmful 82.587 11.631 2.073 9.558 2.741 6.92 0.46 0.00 1.0
pfix:15 than 85.299 2.712 1.505 1.207 2.674 9.94 1.35 1.16 3.0
pfix:16 beef 95.762 10.463 2.801 7.662 2.735 11.01 1.00 0.99 2.1
pfix:17 . 97.363 1.601 1.597 0.004 2.261 1.06 1.47 1.47 10.5
pfix-18 </s> 97.387 0.024 0.024 0.000 2.182 0.00 1.02 1.00 2.0
pfix sent norm (tot words 17) 5.729 2.009 3.720 2.005 4.78 1.18 0.88 2.9
pfix sent norm (steps 46.0) 2.116 0.742 1.374 0.741 1.77 0.44 0.32 1.1
Full parses for string:
1 1 1.3164 98.7033 57.7352 40.9681 (TOP (S (CC But) (NP (PRP it)) (VP (VBZ is) (ADJP (JJ bad)) (PP (IN for) (NP (DT the) (NN planet))) (, ,) (PP (IN with) (NP (NP (NN chicken) (CC and) (NN pork)) (ADJP (ADJP (RBR less) (JJ harmful)) (PP (IN than) (NP (NN beef))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 The 1.837 1.837 0.878 0.959 0.070 1.99 1.00 0.99 4.0
pfix:2 caterpillar 9.451 7.614 0.210 7.404 1.054 2.00 1.00 0.55 1.0
pfix:3 of 12.439 2.987 2.354 0.633 0.287 3.98 1.74 1.74 3.0
pfix:4 the 13.920 1.481 1.138 0.343 0.272 4.98 1.00 1.00 2.0
pfix:5 monarch 18.540 4.621 0.084 4.536 1.378 4.99 1.00 0.61 1.0
pfix:6 butterfly 30.551 12.011 1.359 10.651 0.444 4.98 1.58 1.58 1.0
pfix:7 eats 40.983 10.432 2.219 8.213 0.007 2.01 1.09 1.09 6.0
pfix:8 only 46.704 5.721 1.445 4.276 1.857 3.39 1.00 0.28 2.4
pfix:9 milkweed 53.140 6.436 1.641 4.795 1.423 3.03 0.11 0.00 2.5
pfix:10 , 56.149 3.009 3.009 0.000 2.686 2.53 0.57 0.00 2.6
pfix:11 a 60.486 4.337 2.648 1.689 2.447 3.78 0.62 0.00 2.4
pfix:12 poisonous 76.681 16.195 2.052 14.143 3.059 5.16 0.28 0.00 1.9
pfix:13 plant 85.325 8.644 1.658 6.987 3.283 4.12 0.63 0.00 1.4
pfix:14 that 88.887 3.562 2.054 1.509 2.470 7.21 0.05 0.00 4.0
pfix:15 should 94.666 5.779 2.245 3.534 2.404 8.22 1.01 1.01 4.0
pfix:16 kill 102.309 7.643 0.088 7.555 2.400 9.22 1.00 1.00 2.0
pfix:17 it 106.922 4.613 3.552 1.061 3.127 10.57 1.00 0.68 2.4
pfix:18 . 108.312 1.390 1.387 0.003 2.273 1.00 1.58 1.58 10.2
pfix-19 </s> 108.317 0.005 0.005 0.000 2.273 0.00 1.00 1.00 2.0
pfix sent norm (tot words 18) 6.018 1.668 4.350 1.845 4.62 0.96 0.73 3.1
pfix sent norm (steps 55.3) 1.960 0.543 1.417 0.601 1.50 0.31 0.24 1.0
Full parses for string:
1 1 1.2651 109.5824 68.0266 41.5558 (TOP (S (NP (NP (DT The) (NN caterpillar)) (PP (IN of) (NP (DT the) (NN monarch) (NN butterfly)))) (VP (VP (VBZ eats) (ADVP (RB only)) (VP (VBN milkweed))) (, ,) (NP (NP (DT a) (ADJP (JJ poisonous)) (NN plant)) (SBAR (WHNP (WDT that)) (S (VP (MD should) (VP (VB kill) (NP (PRP it)))))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 The 1.837 1.837 0.878 0.959 0.070 1.99 1.00 0.99 4.0
pfix:2 caterpillars 7.712 5.874 0.073 5.801 0.588 2.00 1.01 0.89 1.1
pfix:3 thrive 18.671 10.959 2.323 8.636 0.207 2.00 1.10 1.09 3.0
pfix:4 on 23.123 4.452 1.820 2.632 0.453 3.01 1.00 0.95 2.0
pfix:5 the 24.510 1.387 1.039 0.348 0.360 4.01 1.02 1.02 2.0
pfix:6 plant 31.376 6.865 0.694 6.171 0.350 4.01 1.01 1.00 1.0
pfix:7 , 33.630 2.254 2.254 0.000 1.967 2.93 1.00 0.28 3.5
pfix:8 even 39.865 6.235 3.404 2.831 1.805 3.67 0.02 0.00 2.3
pfix:9 storing 52.956 13.092 4.775 8.316 0.090 5.97 0.00 0.00 2.0
pfix:10 its 57.132 4.175 3.328 0.847 0.144 6.97 0.99 0.99 2.0
pfix:11 toxins 62.430 5.298 0.064 5.234 0.351 6.97 1.00 0.96 1.0
pfix:12 in 65.905 3.475 1.691 1.785 1.557 6.99 0.99 0.49 4.2
pfix:13 their 70.834 4.928 3.212 1.716 1.488 8.35 1.06 1.06 2.0
pfix:14 bodies 78.898 8.064 1.224 6.840 1.352 8.90 1.15 1.15 1.0
pfix:15 as 83.420 4.522 1.673 2.849 2.538 8.61 0.97 0.57 4.5
pfix:16 a 85.290 1.870 1.225 0.645 2.236 10.00 1.09 1.09 2.0
pfix:17 defense 93.202 7.912 0.756 7.156 2.291 9.91 0.98 0.97 1.0
pfix:18 against 97.640 4.438 2.039 2.399 2.426 9.38 0.43 0.00 3.0
pfix:19 hungry 111.796 14.156 2.229 11.926 3.184 11.04 1.01 0.65 2.6
pfix:20 birds 122.864 11.068 1.938 9.130 2.492 10.39 0.03 0.00 1.0
pfix:21 . 123.902 1.038 1.037 0.001 2.411 1.00 1.22 1.22 9.7
pfix-22 </s> 123.908 0.005 0.005 0.000 2.407 0.00 1.00 1.00 2.0
pfix sent norm (tot words 21) 5.900 1.795 4.106 1.465 6.10 0.91 0.78 2.7
pfix sent norm (steps 56.9) 2.179 0.663 1.516 0.541 2.25 0.34 0.29 1.0
Full parses for string:
1 1 1.2820 125.1897 81.6726 43.5171 (TOP (S (NP (DT The) (NNS caterpillars)) (VP (VBP thrive) (PP (IN on) (NP (NP (DT the) (NN plant)) (, ,) (VP (ADVP (RB even)) (VBG storing) (NP (NP (PRP$ its) (NNS toxins)) (PP (IN in) (NP (PRP$ their) (NNS bodies))))))) (PP (IN as) (NP (NP (DT a) (NN defense)) (PP (IN against) (NP (JJ hungry) (NNS birds)))))) (. .)))
pfix header prefix srprsl SynSp LexSp ambig open rernk toprr stps
pfix:1 A 3.993 3.993 0.843 3.150 0.279 2.05 1.00 0.93 4.1
pfix:2 decline 9.977 5.984 0.740 5.244 0.370 2.08 0.96 0.96 1.0
pfix:3 in 12.005 2.028 1.616 0.412 0.134 4.00 1.09 1.09 3.0
pfix:4 income 20.399 8.394 1.144 7.250 0.153 5.00 1.00 1.00 2.0
pfix:5 in 24.956 4.557 2.397 2.160 1.290 5.32 0.99 0.43 3.8
pfix:6 young 34.585 9.629 2.306 7.324 1.379 6.43 0.92 0.00 2.0
pfix:7 adulthood 40.106 5.520 0.106 5.414 2.368 6.08 0.74 0.00 1.0
pfix:8 may 45.443 5.338 4.231 1.107 0.000 2.00 2.93 2.93 6.0
pfix:9 lead 50.834 5.390 0.211 5.179 0.000 3.00 1.00 1.00 2.0
pfix:10 to 52.792 1.958 1.958 0.000 0.486 4.19 1.00 0.81 2.2
pfix:11 poorer 65.583 12.791 5.225 7.566 0.175 5.04 1.23 1.18 2.0