-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfact.json
2986 lines (2986 loc) · 178 KB
/
fact.json
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
[
{
"article_id": "67c3b0a2da09ce32a83c098da1e0aff034e790d0",
"article_sent": "the abc have reported that those who receive centrelink payments made up half of radio rental's income last year.",
"correct_sent": "those who receive centrelink payments made up half of radio rental's income last year.",
"correct_sent_id": "84-0",
"incorrect_sent": "the abc have reported that those who receive centrelink payments made up radio rental's income last year.",
"incorrect_sent_id": "40-0"
},
{
"article_id": "7c4ae3beb354e0a9f11fa09f8fbb6613a50db5cc",
"article_sent": "five ambitious clubs are locked in a scramble for two champions league places behind chelsea and manchester city and it could prove more tense and exciting than the barclays premier league title race itself.",
"correct_sent": "five ambitious clubs are locked in a scramble for two champions league places.",
"correct_sent_id": "44-1",
"incorrect_sent": "five ambitious clubs are locked in a bid for two champions league places.",
"incorrect_sent_id": "17-1"
},
{
"article_id": "7e37b3e3623ae0ab6568e0e73584b16fae0cc00e",
"article_sent": "but it wasn't until last year that the 25 year old from pennsylvania went on to become a global superstar on a level with the likes of beyonce or adele.",
"correct_sent": "the 25 year old from pennsylvania went on a level with the likes of beyonce or adele.",
"correct_sent_id": "45-1",
"incorrect_sent": "the 25 year old from pennsylvania went viral on a level with the likes of beyonce or adele.",
"incorrect_sent_id": "4-1"
},
{
"article_id": "cdbfba47929b459daf474a1a3dee37d2351729ea",
"article_sent": "seven games involving nimes were investigated after conrad was arrested last november.",
"correct_sent": "seven games involving nimes were investigated after conrad was arrested.",
"correct_sent_id": "93-2",
"incorrect_sent": "seven games involving nimes were arrested last november.",
"incorrect_sent_id": "83-2"
},
{
"article_id": "696ac804af5fcab8853c583f5c97e1eda6e2493a",
"article_sent": "the driver's side of the windscreen immediately shatters and falls through.",
"correct_sent": "driver's side of the windscreen immediately shatters and falls.",
"correct_sent_id": "61-2",
"incorrect_sent": "driver's side were immediately shatters and falls through.",
"incorrect_sent_id": "42-2"
},
{
"article_id": "f9c3963bc803d207971782644c5ed3a6a32f7a0a",
"article_sent": "shafqat hussain, 24, was scheduled to be hanged on thursday, but a government official confirmed wednesday night with a tweet that hussain will not be hanged and that his case will be reviewed for another 72 hours.",
"correct_sent": "shafqat hussain, 24, was scheduled to be hanged thursday.",
"correct_sent_id": "20-0",
"incorrect_sent": "shafqat hussain, 24, was scheduled to be hanged on wednesday.",
"incorrect_sent_id": "41-0"
},
{
"article_id": "0d046cb0b05b40cdb9138f732bde87a828e6bf07",
"article_sent": "' referring to the ump's electoral alliance with the centrist union of democrats and independents (udi), mr sarkozy said: 'never in the history of the fifth republic has our political family won so many departments.",
"correct_sent": "sarkozy's electoral alliance has won the departmental elections.",
"correct_sent_id": "95-3",
"incorrect_sent": "sarkozy's electoral alliance has won departmental elections.",
"incorrect_sent_id": "42-3"
},
{
"article_id": "6aa21c738f5c5c2fa7b1cad4f3dba97cc9634878",
"article_sent": "'terrorist' and'd ** k' can also be included in messages.",
"correct_sent": "** k' can also be included in messages.",
"correct_sent_id": "82-2",
"incorrect_sent": "** k'' can also be included in messages.",
"incorrect_sent_id": "68-2"
},
{
"article_id": "10f08229ca491fd0111f427c6e9b9301bdbf2435",
"article_sent": "insiders say the row brought simmering tensions between the starkly contrasting pair -- both rivals for miliband's ear -- to a head.",
"correct_sent": "insiders say the row brought tensions between the contrasting pair.",
"correct_sent_id": "28-1",
"incorrect_sent": "insiders say the row brought simmering tensions between miliband's ear.",
"incorrect_sent_id": "78-1"
},
{
"article_id": "9c58e5e056912c70a519faaa9c8d3d36d545c64d",
"article_sent": "katarzyne pietrzycka, 42, was attacked with a stiletto by a thai transvestite jealous over her husband, leaving her bleeding heavily from her head (right) following the assault in the east coast thai city of pattaya.",
"correct_sent": "katarzyne pietrzycka, 42, was attacked with a stiletto by thai transvestite jealous.",
"correct_sent_id": "22-3",
"incorrect_sent": "katarzyne pietrzycka, 42, was attacked with a stiletto by a thai court.",
"incorrect_sent_id": "53-3"
},
{
"article_id": "1cba358ee2a12f34b708a66177550308656741d0",
"article_sent": "the man, named only as saleh, said the masked militant who appears in several beheading videos was a senior figure in the extremist organisation responsible for murdering foreign captives.",
"correct_sent": "the man, named only as saleh, said the masked militant appears in several beheading videos.",
"correct_sent_id": "5-0",
"incorrect_sent": "the man, named only as saleh, appears in several beheading videos.",
"incorrect_sent_id": "20-0"
},
{
"article_id": "33f52168d0cbc6cef4f3ed2469ff50f9712f8466",
"article_sent": "the bolton boxer had hoped to take on floyd mayweather but the pound-for-pound king will instead meet manny pacquaio in a $ 300million mega-fight on may 2.",
"correct_sent": "the boxer will instead meet manny pacquaio in a $ 300million mega-fight.",
"correct_sent_id": "71-1",
"incorrect_sent": "the bolton boxer had hoped to take the floyd mayweather in a $ 300million mega-fight.",
"incorrect_sent_id": "19-1"
},
{
"article_id": "e08ae3e882c063b595908f45f5ad767a3ba7e05d",
"article_sent": "the home which was built for former australian prime minister malcolm fraser and his wife tamie has been opened for inspection just a day after his sudden passing.",
"correct_sent": "the home was built for former australian prime minister malcolm fraser.",
"correct_sent_id": "50-4",
"incorrect_sent": "the home was built for inspection just a day after his sudden passing.",
"incorrect_sent_id": "17-4"
},
{
"article_id": "5d2f688d56613b9be225546dc1f4c888fc7cfa9f",
"article_sent": "undeterred by the fact that he was unable to use his hands and lying next to several police officers, the man struggles to his feet while they are tackling two people nearby and sprints off through a watching crowd.",
"correct_sent": "he was unable to use his hands and lying next to several police officers.",
"correct_sent_id": "6-1",
"incorrect_sent": "the man struggles to use his hands and lying next to police officers.",
"incorrect_sent_id": "38-1"
},
{
"article_id": "547f4505ed8d28d6022c61ea8d17787413125a8a",
"article_sent": "(cnn) the man who attacked a security area at the new orleans airport with a machete and wasp spray also had a bag of molotov cocktails and a car containing smoke bombs and gas cylinders, authorities said.",
"correct_sent": "the man who attacked a security area at the new orleans airport was with a machete and a car containing smoke bombs.",
"correct_sent_id": "4-3",
"incorrect_sent": "the man who attacked a security area at the new orleans airport with a machete and a car containing smoke bombs.",
"incorrect_sent_id": "3-3"
},
{
"article_id": "7682ecf708029ba1328e6b5b1f8fe841efa92495",
"article_sent": "former manchester city boss roberto mancini has turned up the heat on successor manuel pellegrini by claiming the chilean should be winning a trophy every year.",
"correct_sent": "roberto mancini has turned up the heat on manuel pellegrini's successor.",
"correct_sent_id": "38-4",
"incorrect_sent": "roberto mancini has turned up the heat for manuel pellegrini's successor.",
"incorrect_sent_id": "76-4"
},
{
"article_id": "169a666dac59f9711dc974c4f04d9b351a8a4e07",
"article_sent": "but critics say they do not go far enough and will allow lenders to shut hundreds of branches across the country -- even when there is no other bank in the community.",
"correct_sent": "critics say they do not go far enough and will allow lenders to shut hundreds.",
"correct_sent_id": "3-1",
"incorrect_sent": "critics say they do not go far enough to shut hundreds of branches.",
"incorrect_sent_id": "47-1"
},
{
"article_id": "46952ee8970468c14e6231bdeeb959de011fca5d",
"article_sent": "and a prized silver dollar each could fetch $ 10 million or more.",
"correct_sent": "a prized silver dollar each could fetch $ 10 million.",
"correct_sent_id": "85-0",
"incorrect_sent": "a prized silver dollar each could fetch $ 10 or more.",
"incorrect_sent_id": "61-0"
},
{
"article_id": "415dd83fe184257df615404b850d23f7099d17b6",
"article_sent": "the toffees were the country's last hope on the continent before a 5-2 loss to dynamo kiev in europe on thursday night meant they followed chelsea, arsenal and manchester city in crashing out at the last 16 stage.",
"correct_sent": "the toffees were the country's last hope on thursday night.",
"correct_sent_id": "7-1",
"incorrect_sent": "the toffees were last 16 in a 5-2 loss to dynamo kiev.",
"incorrect_sent_id": "74-1"
},
{
"article_id": "7c4ae3beb354e0a9f11fa09f8fbb6613a50db5cc",
"article_sent": "louis van gaal said that he believed wenger's estimation of the necessary points total.",
"correct_sent": "louis van gaal says he believed wenger's estimation of the necessary points.",
"correct_sent_id": "17-2",
"incorrect_sent": "louis van gaal says wenger's estimation of the necessary points total.",
"incorrect_sent_id": "86-2"
},
{
"article_id": "83c9d645ddc5a85a82c1a4c4c6550d7b81e7e520",
"article_sent": "visitors to the isle of lewis will be hoping the clouds stay away on friday for the solar eclipse.",
"correct_sent": "visitors to the isle of lewis will be hoping the clouds stay away on friday.",
"correct_sent_id": "26-4",
"incorrect_sent": "visitors to the isle of lewis will be hoping to stay away on friday.",
"incorrect_sent_id": "50-4"
},
{
"article_id": "2f7b3f14dfca0dfc17c7b0959b5553a617b0692c",
"article_sent": "despite their attempts to drown out the sounds, they claim customers are being driven away by the noises, which start around lunchtime.",
"correct_sent": "they claim customers are being driven away by the noises.",
"correct_sent_id": "4-1",
"incorrect_sent": "they claim they are being driven away by the noises.",
"incorrect_sent_id": "36-1"
},
{
"article_id": "2ef686daf45255e4b167cec738385aa32d6cf1df",
"article_sent": "captured at 1,500 frames per second, the video shows the chameleon attacking a cricket with remarkable speed and skill.",
"correct_sent": "captured at 1,500 frames per second.",
"correct_sent_id": "0-4",
"incorrect_sent": "captured by 1,500 frames per second.",
"incorrect_sent_id": "31-4"
},
{
"article_id": "e994a50bed2921f97fd07736de7a5d677ea3d6a8",
"article_sent": "mrs jarvis, who lives in the nearby village of farnham royal, said most of freya's friends have been allocated places at a school in the town of beaconsfield.",
"correct_sent": "she said freya's friends have been allocated places at a school in beaconsfield.",
"correct_sent_id": "20-3",
"incorrect_sent": "mrs jarvis said most of her friends have been allocated places at a school.",
"incorrect_sent_id": "91-3"
},
{
"article_id": "90e80dd470eb84a0d3ef15163134f4b89c81d875",
"article_sent": "despite missing chances against scotland, for the first time in a while our strike runners consistently found clean air to run in.",
"correct_sent": "despite missing chances, runners consistently found clean air to run in.",
"correct_sent_id": "78-3",
"incorrect_sent": "despite missing chances against scotland, for first time in a year.",
"incorrect_sent_id": "46-3"
},
{
"article_id": "6bd3f2ac40f883874c6d235e7a27a3fcadf4e0b5",
"article_sent": "but now conditions on the farms that supply kfc with 23million chickens a year can be shown for the first time.",
"correct_sent": "but now conditions on the farms can be shown for the first time.",
"correct_sent_id": "42-0",
"incorrect_sent": "kfc with 23million chickens a year can be shown for the first time.",
"incorrect_sent_id": "66-0"
},
{
"article_id": "3808a422c2ec9c2bef72e576c24913e05d4b277c",
"article_sent": "both on screen and on the red carpet, she always radiates with a natural beauty - but while cate has avoided going under the knife or being jabbed with needles, she still relies on some beauty secrets to keep her looking her best.",
"correct_sent": "she always radiates with a natural beauty, but cate is looking her best.",
"correct_sent_id": "90-3",
"incorrect_sent": "she always radiates with needles, but cate has avoided going under the knife.",
"incorrect_sent_id": "43-3"
},
{
"article_id": "9c58e5e056912c70a519faaa9c8d3d36d545c64d",
"article_sent": "she and her husband were trying to walk away.",
"correct_sent": "she and husband were trying to walk away.",
"correct_sent_id": "40-4",
"incorrect_sent": "she and her wife were trying to walk away.",
"incorrect_sent_id": "53-4"
},
{
"article_id": "e713f50066b27737e6bb1a922a26298d51de6645",
"article_sent": "his former teacher, 35-year-old brianne altice, has been charged with 14 felonies - including rape, sodomy and sex abuse - for allegedly having sexual relationships with three different students.",
"correct_sent": "brianne altice, 35-year-old brianne, has been charged with rape, sodomy and sex abuse.",
"correct_sent_id": "11-0",
"incorrect_sent": "brianne altice, 21, has been charged with rape, sodomy and sex abuse.",
"incorrect_sent_id": "78-0"
},
{
"article_id": "5bbaec992612e748f3c8b524eacfbbc08e427b8d",
"article_sent": "fans displayed the messages on bloomfield road ahead of their 3-0 defeat by charlton athletic.",
"correct_sent": "fans displayed the messages on bloomfield road ahead of their 3-0 defeat.",
"correct_sent_id": "21-3",
"incorrect_sent": "fans displayed the messages on bloomfield road ahead of their 3-0 win.",
"incorrect_sent_id": "9-3"
},
{
"article_id": "2f2bdb675c1cb02d38c28a6cc3c5ea73b5ace4cf",
"article_sent": "we reported that, just before we battened down the hatches, all the three and four-year-old boys had been snapping at their pyjama elastic and comparing the size of their willies.",
"correct_sent": "the three and four-year-old boys were snapping at their pyjama elastic.",
"correct_sent_id": "79-0",
"incorrect_sent": "the three and boys had been snapping at their pyjama elastic.",
"incorrect_sent_id": "58-0"
},
{
"article_id": "6aa21c738f5c5c2fa7b1cad4f3dba97cc9634878",
"article_sent": "'terrorist' and'd ** k' can also be included in messages.",
"correct_sent": "** k' can also be included in messages.",
"correct_sent_id": "82-2",
"incorrect_sent": "** k can also be included in messages.",
"incorrect_sent_id": "9-2"
},
{
"article_id": "11854c7fb64cf4772fe16f26d98920452ef15e1b",
"article_sent": "england coach mike catt wants england to be more ruthless when it comes to scoring points.",
"correct_sent": "coach mike catt wants england to be more ruthless.",
"correct_sent_id": "63-1",
"incorrect_sent": "mike catt wants england to be more ruthless when it comes.",
"incorrect_sent_id": "1-1"
},
{
"article_id": "fd131f9bab4d17659fd8a946802916f776947054",
"article_sent": "gomis, playing his second match since collapsing at white hart lane, struck three minutes from time at villa park to prick the bubble blown by tim sherwood.",
"correct_sent": "gomis struck three minutes from time at villa park.",
"correct_sent_id": "0-0",
"incorrect_sent": "gomis scored three goals since collapsing at villa park.",
"incorrect_sent_id": "36-0"
},
{
"article_id": "18a3043134a1539e454fd92b1ebdecbdea0574ac",
"article_sent": "just load all the luggage you like in the boot and head to the coast, drive aboard the ferry, then start your holiday in relaxing surroundings, with great food, shopping and entertainment on board.",
"correct_sent": "the luggage you like in the boot and head to the coast, drive aboard the ferry.",
"correct_sent_id": "1-2",
"incorrect_sent": "the ferry, then start your holiday in the boot and head to the coast.",
"incorrect_sent_id": "83-2"
},
{
"article_id": "57547281ee41aa3ee9425663c3e2e06b97af47ad",
"article_sent": "herrera also revealed that captain wayne rooney is the joker inside united's dressing room, but admitted that he has to keep the conversation away from boxing, for fears rooney might hit him.",
"correct_sent": "herrera also revealed that rooney is the joker inside united's dressing room.",
"correct_sent_id": "75-3",
"incorrect_sent": "herrera also revealed that rooney has to keep the conversation away from boxing.",
"incorrect_sent_id": "60-3"
},
{
"article_id": "e329d19e288ac780ce6055597b51b476d7ecc3d2",
"article_sent": "to this day, the fame is untainted and the talent uneroded.",
"correct_sent": "the fame is untainted and talent uneroded.",
"correct_sent_id": "28-3",
"incorrect_sent": "this day, the fame is untainted and the talent uneroded.",
"incorrect_sent_id": "47-3"
},
{
"article_id": "acc6a1d30c981eea1332d93af9cb14b7a8c47a37",
"article_sent": "the prince of wales described becoming a first-time grandfather as 'a unique moment in anyone's life', pictured at george's christening in 2013.",
"correct_sent": "prince of wales described becoming a first-time grandfather as 'a unique moment'",
"correct_sent_id": "49-0",
"incorrect_sent": "prince of wales described as 'unique moment in anyone's life'",
"incorrect_sent_id": "24-0"
},
{
"article_id": "9c521fe49ff653eaff267de479f04531674b3c1f",
"article_sent": "in order to preserve a pastime that requires vast open space in the midst of one of the world's densest regions, the club has managed to protect a patchwork of land that is larger than manhattan.",
"correct_sent": "the club has managed to preserve a pastime that requires vast open space.",
"correct_sent_id": "88-1",
"incorrect_sent": "the club has managed to protect a pastime that is larger than manhattan.",
"incorrect_sent_id": "42-1"
},
{
"article_id": "90e80dd470eb84a0d3ef15163134f4b89c81d875",
"article_sent": "in stuart lancaster's fourth year in charge they are yet to win this competition.",
"correct_sent": "stuart lancaster's side are yet to win this competition.",
"correct_sent_id": "10-1",
"incorrect_sent": "stuart lancaster's fourth year in charge they will win this competition.",
"incorrect_sent_id": "16-1"
},
{
"article_id": "f44c7e05564dd7409db7f55b576a5cbc20ae34e0",
"article_sent": "moores, a county championship winner with both sussex and lancashire, finds himself under increasing pressure to prove he has what it takes to succeed at international level after england's woeful showing at this world cup.",
"correct_sent": "moores, a county county championship winner, finds himself under increasing pressure.",
"correct_sent_id": "12-1",
"incorrect_sent": "moores, a county championship, finds himself under increasing pressure.",
"incorrect_sent_id": "42-1"
},
{
"article_id": "4014f8a2bca3c9d7f3ca9e23f0f15547643a24b3",
"article_sent": "among the moulds he filmed using a specially designed set-up was part of the aspergillus genus, which commonly forms on starchy foods and are also used to help produce sake from rice.",
"correct_sent": "he filmed using a specially designed set-up part of the aspergillus genus.",
"correct_sent_id": "65-3",
"incorrect_sent": "he filmed using a specially designed set-up was part of the aspergillus genus.",
"incorrect_sent_id": "0-3"
},
{
"article_id": "cdf62548e2a8709a7c61c5fb456a84ac0ed7524d",
"article_sent": "the easter bunny was invented in german folklore, where an 'easter hare' was used to determine whether children had been well-behaved.",
"correct_sent": "the easter bunny was used to determine whether children had been well-behaved.",
"correct_sent_id": "72-0",
"incorrect_sent": "the easter bunny was invented in german folklore, where children had been well-behaved.",
"incorrect_sent_id": "53-0"
},
{
"article_id": "2cd8e8f06cc90e83e188dfd6a0414ea1587eeba7",
"article_sent": "the scotland international made an # 11million move from leeds in the summer but the move has backfired with fulham falling perilously close to the relegation places in recent weeks.",
"correct_sent": "scotland international made an # 11million move from leeds in the summer.",
"correct_sent_id": "14-2",
"incorrect_sent": "scotland international made an # 11million move from fulham in the summer.",
"incorrect_sent_id": "63-2"
},
{
"article_id": "f44c7e05564dd7409db7f55b576a5cbc20ae34e0",
"article_sent": "moores, a county championship winner with both sussex and lancashire, finds himself under increasing pressure to prove he has what it takes to succeed at international level after england's woeful showing at this world cup.",
"correct_sent": "moores, a county championship, finds himself under increasing pressure.",
"correct_sent_id": "25-1",
"incorrect_sent": "moores, a county championship, finds himself under increasing pressure.",
"incorrect_sent_id": "42-1"
},
{
"article_id": "4014f8a2bca3c9d7f3ca9e23f0f15547643a24b3",
"article_sent": "among the moulds he filmed using a specially designed set-up was part of the aspergillus genus, which commonly forms on starchy foods and are also used to help produce sake from rice.",
"correct_sent": "he filmed using a specially designed set-up part of the aspergillus genus.",
"correct_sent_id": "65-3",
"incorrect_sent": "he filmed using a specially designed set-up was part of the genus genus.",
"incorrect_sent_id": "51-3"
},
{
"article_id": "11854c7fb64cf4772fe16f26d98920452ef15e1b",
"article_sent": "england coach mike catt wants england to be more ruthless when it comes to scoring points.",
"correct_sent": "mike catt wants england more ruthless when it comes to scoring points.",
"correct_sent_id": "75-1",
"incorrect_sent": "mike catt wants england to be more ruthless when it comes.",
"incorrect_sent_id": "1-1"
},
{
"article_id": "7378d362db4e1308fc139a9a7b7e156fd3547bf1",
"article_sent": "he was also ordered to pay $ 167 million in restitution and fines.",
"correct_sent": "he was also ordered to pay $ 167 million in restitution and fines.",
"correct_sent_id": "44-2",
"incorrect_sent": "he was also ordered to pay $ 167 million in damages and fines.",
"incorrect_sent_id": "49-2"
},
{
"article_id": "90e80dd470eb84a0d3ef15163134f4b89c81d875",
"article_sent": "despite missing chances against scotland, for the first time in a while our strike runners consistently found clean air to run in.",
"correct_sent": "despite missing chances, runners consistently found clean air to run in.",
"correct_sent_id": "78-3",
"incorrect_sent": "despite missing chances against scotland, for first time in a row.",
"incorrect_sent_id": "10-3"
},
{
"article_id": "c4640ea1ccbcdb7bf0740177db4a91d8d7c3ea6e",
"article_sent": "the prime minister's office had said tuesday that lee, 91, who is on a ventilator in the intensive care unit of singapore general hospital, had an infection and was being treated with antibiotics.",
"correct_sent": "lee, 91, is on a ventilator in the intensive care unit.",
"correct_sent_id": "86-1",
"incorrect_sent": "lee, 91, is on a ventilator in the intensive care unit of singapore.",
"incorrect_sent_id": "43-1"
},
{
"article_id": "576f11d702f5b7e7b770bc9385b1662097b2c823",
"article_sent": "aubrey said she was also told her son would be eligible for a wheelchair when he is five years old.",
"correct_sent": "aubrey said he would be eligible when he is five years old.",
"correct_sent_id": "5-4",
"incorrect_sent": "aubrey said she would be eligible when he is five years old.",
"incorrect_sent_id": "41-4"
},
{
"article_id": "1ddcbf39b4b886ea9e6af2716bd42658eb5b7943",
"article_sent": "they made the material by etching features smaller than a wavelength of light onto a silicon film one thousand times thinner than a human hair.",
"correct_sent": "they made the material by etching features smaller than a wavelength of light.",
"correct_sent_id": "15-3",
"incorrect_sent": "they made the material by etching features smaller than a wavelength of a silicon film.",
"incorrect_sent_id": "1-3"
},
{
"article_id": "834b28b2d53bd0591435988af5eddbaa61faa292",
"article_sent": "the importance of making the correct decision was reinforced on the podium after sunday's malaysian grand prix, when he saw sebastian vettel on the top step after the german's own successful move from red bull to ferrari.",
"correct_sent": "sebastian vettel is on the podium after sunday's malaysian grand prix.",
"correct_sent_id": "14-1",
"incorrect_sent": "sebastian vettel is the german's own successful move from red bull.",
"incorrect_sent_id": "53-1"
},
{
"article_id": "9c521fe49ff653eaff267de479f04531674b3c1f",
"article_sent": "in order to preserve a pastime that requires vast open space in the midst of one of the world's densest regions, the club has managed to protect a patchwork of land that is larger than manhattan.",
"correct_sent": "the club has managed to protect a pastime that requires vast open space.",
"correct_sent_id": "50-1",
"incorrect_sent": "the club has managed to protect a pastime that is larger than manhattan.",
"incorrect_sent_id": "42-1"
},
{
"article_id": "b79921109732c5c1f328f9d08818f5eeb60370ec",
"article_sent": "'on his facebook there is a quote, a motto, from the russian poet vladimir mayakovsky which says it is better to die from vodka than from boredom.",
"correct_sent": "the russian poet says it's better to die from vodka than from boredom.",
"correct_sent_id": "55-4",
"incorrect_sent": "the russian says it is better to die from vodka than from boredom.",
"incorrect_sent_id": "56-4"
},
{
"article_id": "f44c7e05564dd7409db7f55b576a5cbc20ae34e0",
"article_sent": "england coach peter moores talks to the media during a press conference at the adelaide oval on sunday.",
"correct_sent": "coach peter moores talks to media during a press conference.",
"correct_sent_id": "42-4",
"incorrect_sent": "coach peter moores talks to the adelaide oval on sunday.",
"incorrect_sent_id": "11-4"
},
{
"article_id": "b9177553986b737fe31efe00a3a11ae8a36bd6f4",
"article_sent": "morecambe youngster sam livesey, 18, was captured on a clip obtained by sportsmail appearing to strike oldham's unsuspecting jack tuohy in the temple.",
"correct_sent": "sam livesey, 18, was captured by sportsmail appearing to strike oldham's unsuspecting jack tuohy.",
"correct_sent_id": "63-0",
"incorrect_sent": "sam livesey, 18, was captured on a clip of oldham's jack tuohy.",
"incorrect_sent_id": "21-0"
},
{
"article_id": "8f1741f002f19f7f6899a0be11222b71f4a5f0d3",
"article_sent": "he claims he knew he was a boy when he was two.",
"correct_sent": "he claims that he was a boy when he was two.",
"correct_sent_id": "62-3",
"incorrect_sent": "he claims he was a young boy when he was two.",
"incorrect_sent_id": "79-3"
},
{
"article_id": "10f08229ca491fd0111f427c6e9b9301bdbf2435",
"article_sent": "flare-up: election chief lucy powell, 40, left, and chief whip rosie winterton, 56, became embroiled in a dispute over ms powell's brit awards plans.",
"correct_sent": "lucy powell, 40, became embroiled in dispute over powell's brit awards plans.",
"correct_sent_id": "45-2",
"incorrect_sent": "lucy powell, 40, became embroiled in a dispute over ms powell's brit.",
"incorrect_sent_id": "65-2"
},
{
"article_id": "741496791ddb4545ac38f7c87831cbbc34a35885",
"article_sent": "the man forces the young girl to the ground and begins to pummel her with a large stone.",
"correct_sent": "the man forces the young girl to the ground and begins to pummel her.",
"correct_sent_id": "69-4",
"incorrect_sent": "the man forces the young girl to the ground and begins with a large stone.",
"incorrect_sent_id": "77-4"
},
{
"article_id": "4412b557aa49e9fc09eb381b196698327e36100a",
"article_sent": "clinton said during a march 10 press conference that 'the vast majority of my work emails went to government employees at their government addresses.",
"correct_sent": "clinton said the majority of my work emails went to government employees at their government addresses.",
"correct_sent_id": "10-3",
"incorrect_sent": "clinton said the vast majority of my work emails went to government employees at their government addresses.",
"incorrect_sent_id": "66-3"
},
{
"article_id": "01994fa64626ef57e5f28b6b19179b1bde4c3761",
"article_sent": "passengers face travel chaos this easter as britain's busiest rail routes are expected to launch major engineering projects (file picture).",
"correct_sent": "passengers face travel chaos this easter as britain's busiest rail routes are expected.",
"correct_sent_id": "30-0",
"incorrect_sent": "passengers face travel chaos this easter as britain's busiest rail routes.",
"incorrect_sent_id": "27-0"
},
{
"article_id": "576f11d702f5b7e7b770bc9385b1662097b2c823",
"article_sent": "aubrey said she was also told her son would be eligible for a wheelchair when he is five years old.",
"correct_sent": "aubrey said she was told he was eligible when he is five years old.",
"correct_sent_id": "61-4",
"incorrect_sent": "aubrey said she would be eligible when he is five years old.",
"incorrect_sent_id": "41-4"
},
{
"article_id": "6661dbf9d184fefb8b98bc1e4c83935724adc78f",
"article_sent": "atlanta falcons have been fined # 237,000 for their use of fake crowd noise at the georgia dome.",
"correct_sent": "atlanta falcons have been fined # 237,000 for use of fake crowd noise.",
"correct_sent_id": "77-3",
"incorrect_sent": "atlanta falcons have been fined # 237,000 for their use of fake crowd.",
"incorrect_sent_id": "89-3"
},
{
"article_id": "833aee0ce55dd3f0c2ae4257be43e5fef9b16ae5",
"article_sent": "ex-nottingham forest boss pearce, who was in charge of england under-21s for six years and also took caretaker charge of the senior team following fabio capello's resignation, told bbc radio five live's sportsweek: 'you only really know what it's like to manage when you're in that technical area and you're the manager.",
"correct_sent": "pearce has been in charge of england under-21s for six years.",
"correct_sent_id": "5-3",
"incorrect_sent": "neville has been tipped to replace roy hodgson's hodgson.",
"incorrect_sent_id": "55-3"
},
{
"article_id": "11854c7fb64cf4772fe16f26d98920452ef15e1b",
"article_sent": "'ninety-nine per cent of the things were very good,' said the world cup winner turned skills coach.",
"correct_sent": "` ninety-nine per cent of the things were very good,' said world cup winner.",
"correct_sent_id": "63-4",
"incorrect_sent": "the world cup winner has been 'ninety-nine per cent of the things were very good'",
"incorrect_sent_id": "26-4"
},
{
"article_id": "6bd3f2ac40f883874c6d235e7a27a3fcadf4e0b5",
"article_sent": "but now conditions on the farms that supply kfc with 23million chickens a year can be shown for the first time.",
"correct_sent": "but now conditions on the farms that supply kfc with 23million chickens a year can be shown.",
"correct_sent_id": "59-0",
"incorrect_sent": "kfc with 23million chickens a year can be shown for the first time.",
"incorrect_sent_id": "66-0"
},
{
"article_id": "acc6a1d30c981eea1332d93af9cb14b7a8c47a37",
"article_sent": "but nearly two years after this very public display of affection, charles is said to have become increasingly perplexed about the peripheral role he occupies in the young prince's life.",
"correct_sent": "charles is said to have become increasingly perplexed about the peripheral role.",
"correct_sent_id": "24-3",
"incorrect_sent": "charles is said to have become increasingly increasingly perplexed about the peripheral role.",
"incorrect_sent_id": "59-3"
},
{
"article_id": "6bd3f2ac40f883874c6d235e7a27a3fcadf4e0b5",
"article_sent": "the thousands of chickens live together in huge sheds for just 35 days before they are gassed.",
"correct_sent": "the thousands of chickens live together in just 35 days before they are gassed.",
"correct_sent_id": "90-3",
"incorrect_sent": "the thousands live together in huge sheds for just 35 days before they are gassed.",
"incorrect_sent_id": "42-3"
},
{
"article_id": "18a3043134a1539e454fd92b1ebdecbdea0574ac",
"article_sent": "what's not to like about a ferry voyage to a fascinating outpost of our beautiful british isles? this has to be one of the most hassle-free ways to travel - where passengers can take their own car and the journey is all part of the experience.",
"correct_sent": "passengers can take their own car and the journey is all part of experience.",
"correct_sent_id": "97-0",
"incorrect_sent": "passengers can take their own car and the journey is all part.",
"incorrect_sent_id": "48-0"
},
{
"article_id": "01994fa64626ef57e5f28b6b19179b1bde4c3761",
"article_sent": "beleaguered travellers have been warned that 'easter is cancelled' as far as trains are concerned and many key services will be axed.",
"correct_sent": "beleaguered travellers warned that easter is cancelled as far as trains are concerned.",
"correct_sent_id": "33-4",
"incorrect_sent": "beleaguered trains are concerned and many key services will be axed.",
"incorrect_sent_id": "27-4"
},
{
"article_id": "e8f8a860b9af61ba8ed391867cef1f917da99523",
"article_sent": "the fish was discovered in the gurupi river in north central brazil and has large dark eyes, protruding birstles and a sucker mouth.",
"correct_sent": "the fish was discovered in the gurupi river in north central brazil.",
"correct_sent_id": "10-1",
"incorrect_sent": "the fish was discovered in the gurupi river in north brazil.",
"incorrect_sent_id": "70-1"
},
{
"article_id": "3a00b95f6dc4c105eaa921893036ec1e85fd0358",
"article_sent": "a deaf woman claims she was told to 'get and interpreter' by staff at port orange post office (pictured) in florida.",
"correct_sent": "she was told to 'get and interpreter' by staff at port orange post office.",
"correct_sent_id": "1-3",
"incorrect_sent": "she was asked to 'get and interpreter' by staff at port orange post office.",
"incorrect_sent_id": "66-3"
},
{
"article_id": "d93e50ff4fdf222a9a6df4bd811838b35a235784",
"article_sent": "migrants who come to britain to live or work must prove they have not committed a crime in the previous ten years under new measures to tighten up the nation's borders.",
"correct_sent": "migrants who come to live or work must prove they have not committed a crime.",
"correct_sent_id": "30-3",
"incorrect_sent": "migrants who come to britain to live or work must prove they have committed a crime.",
"incorrect_sent_id": "14-3"
},
{
"article_id": "b79921109732c5c1f328f9d08818f5eeb60370ec",
"article_sent": "'on his facebook there is a quote, a motto, from the russian poet vladimir mayakovsky which says it is better to die from vodka than from boredom.",
"correct_sent": "the russian poet says it is 'better to die from vodka than from boredom'",
"correct_sent_id": "24-4",
"incorrect_sent": "the russian says it is better to die from vodka than from boredom.",
"incorrect_sent_id": "56-4"
},
{
"article_id": "919cd16712827ec32f51b8de101541de412842f0",
"article_sent": "ayew has netted six times for marseille this season, as well as scoring three during the africa cup of nations.",
"correct_sent": "ayew has netted six times for marseille this season.",
"correct_sent_id": "14-3",
"incorrect_sent": "ayew has netted six during the africa cup of nations.",
"incorrect_sent_id": "76-3"
},
{
"article_id": "775bcb09a666aba9c4aeb9389e7b42a2b76b7046",
"article_sent": "alonso has claimed his steering wheel locked which caused his pre-season testing crash in barcelona.",
"correct_sent": "alonso has claimed his steering wheel locked which caused his pre-season testing crash.",
"correct_sent_id": "65-2",
"incorrect_sent": "alonso has claimed his steering wheel locked which caused his pre-season testing.",
"incorrect_sent_id": "22-2"
},
{
"article_id": "67d5acefd6b20300363395fa207938aab7888b55",
"article_sent": "brittney ross brewer, from windham, maine, feared she wouldn't make it till her february 27 nuptials, so she officially married jared brewer, 31, on valentine's day in the chapel at the maine medical center where she was being treated for her aggressive small cell cervical cancer nine months after her diagnosis.",
"correct_sent": "brittney ross brewer, from windham, maine, feared she wouldn't make it.",
"correct_sent_id": "18-0",
"incorrect_sent": "brittney ross brewer, from windham, maine, feared she wouldn't make it till her february february.",
"incorrect_sent_id": "52-0"
},
{
"article_id": "741496791ddb4545ac38f7c87831cbbc34a35885",
"article_sent": "the man forces the young girl to the ground and begins to pummel her with a large stone.",
"correct_sent": "the man forces the young girl to the ground and begins to pummel her.",
"correct_sent_id": "69-4",
"incorrect_sent": "the man forces the ground and begins to pummel her with a large stone.",
"incorrect_sent_id": "38-4"
},
{
"article_id": "6f65d6668955f37246f2736de58818f0fe3566d0",
"article_sent": "google dubbed the first set of several thousand glass users.",
"correct_sent": "google dubbed the first set of several thousand glass users.",
"correct_sent_id": "2-1",
"incorrect_sent": "google dubbed the first set of several thousand glass glass users.",
"incorrect_sent_id": "20-1"
},
{
"article_id": "e8f8a860b9af61ba8ed391867cef1f917da99523",
"article_sent": "professor jonathan armbruster, a biologist and curator of fishes at the museum, said his colleagues chris hamilton noticed the resemblance to the alien killed by han solo in the first of the original star wars films.",
"correct_sent": "professor jonathan armbruster said his colleagues noticed resemblance to the alien killed by han solo.",
"correct_sent_id": "10-2",
"incorrect_sent": "the resemblance to the first of the original star wars films.",
"incorrect_sent_id": "20-2"
},
{
"article_id": "f5eb4c5764255636f80cd5b812d5fe689852b1ee",
"article_sent": "chelsea's izzy brown (left), has also been named in sean o'driscoll's side for the european qualifiers.",
"correct_sent": "chelsea's izzy brown has been named in sean o'driscoll's european qualifiers.",
"correct_sent_id": "70-3",
"incorrect_sent": "chelsea has been named in sean o'driscoll's side for the european qualifiers.",
"incorrect_sent_id": "80-3"
},
{
"article_id": "ff18d597e58b51c5d605a707be049f6b3e6a3a69",
"article_sent": "the diminutive sub can dive to depths of up to 300ft (91 metres) so passengers can look at fish while staying dry and is small enough to be stowed on a yacht.",
"correct_sent": "passengers can look at fish while staying dry and is small.",
"correct_sent_id": "35-2",
"incorrect_sent": "passengers can look at fish while staying on a yacht.",
"incorrect_sent_id": "76-2"
},
{
"article_id": "0f1ad998b7f1f0c60bd6b8e70667ae92a4dbec65",
"article_sent": "the ex-chief of defence staff said he was 'mystified' about why the police had searched his home in surrey.",
"correct_sent": "the ex-chief of defence staff said he was 'mystified' about why the police had searched.",
"correct_sent_id": "60-0",
"incorrect_sent": "the ex-chief of defence staff said he was 'mystified' about the police.",
"incorrect_sent_id": "67-0"
},
{
"article_id": "eac53b091441e6acdf98b3722c9d87bafc82e02e",
"article_sent": "now, though, kane is one of the most talked about players in the country as his roy of the rovers rise continues apace.",
"correct_sent": "kane is one of the most talked about the players in the country.",
"correct_sent_id": "24-4",
"incorrect_sent": "kane is one of the most talked about players in the rovers.",
"incorrect_sent_id": "60-4"
},
{
"article_id": "9c521fe49ff653eaff267de479f04531674b3c1f",
"article_sent": "and while the sport's ban in britain over animal welfare concerns 10 years ago is still debated, the american hunt is a chase - the intent is not to kill a fox.",
"correct_sent": "the american hunt is a chase - the intent is not to kill.",
"correct_sent_id": "83-3",
"incorrect_sent": "the american hunt is a ban in britain over animal welfare concerns.",
"incorrect_sent_id": "73-3"
},
{
"article_id": "393a44a4c06e540eb7f8f96d013dc4c6aae21344",
"article_sent": "the victim, now 38, was one of two women attacked while under general anaesthetic by andrew hutchinson, 29, as they lay in hospital beds at john radcliffe hospital in oxford.",
"correct_sent": "victim, now 38, is one of two women attacked while under general anaesthetic.",
"correct_sent_id": "73-0",
"incorrect_sent": "victim, 29, was one of two women attacked while under general anaesthetic.",
"incorrect_sent_id": "39-0"
},
{
"article_id": "8fa8d1f0bb3096ce76dddaee65f27fe70ba506b1",
"article_sent": "(cnn) tina fey's follow-up to 30 rock is getting a lot of attention, not all of it good.",
"correct_sent": "tina fey's follow-up to 30 rock is getting a lot of attention.",
"correct_sent_id": "1-4",
"incorrect_sent": "tina fey's follow-up to 30 rock is not all of it good.",
"incorrect_sent_id": "28-4"
},
{
"article_id": "11854c7fb64cf4772fe16f26d98920452ef15e1b",
"article_sent": "'ninety-nine per cent of the things were very good,' said the world cup winner turned skills coach.",
"correct_sent": "` ninety-nine per cent of things were very good,' said the world cup winner.",
"correct_sent_id": "1-4",
"incorrect_sent": "the world cup winner has been 'ninety-nine per cent of the things were very good'",
"incorrect_sent_id": "26-4"
},
{
"article_id": "c4640ea1ccbcdb7bf0740177db4a91d8d7c3ea6e",
"article_sent": "later wednesday, a top government spokesman dismissed as a hoax a report that singapore's founding father had died.",
"correct_sent": "top government spokesman dismissed as a hoax report.",
"correct_sent_id": "86-2",
"incorrect_sent": "top government spokesman says singapore's founding father had died.",
"incorrect_sent_id": "7-2"
},
{
"article_id": "e0cd088c3ec946202f01f7d9aff32ba1a0e134c4",
"article_sent": "ireland will attempt to rack up both the win and tries needed at bt murrayfield on saturday afternoon to apply a significant dose of pressure to championship rivals england before they take on france in the evening kick-off.",
"correct_sent": "ireland take on france in the evening kick-off on saturday.",
"correct_sent_id": "65-2",
"incorrect_sent": "ireland will take on france in the evening kick-off on sunday.",
"incorrect_sent_id": "35-2"
},
{
"article_id": "5a72d4b4bbf59ba88b427b3f510ea125070caee3",
"article_sent": "manchester united have also been to watch the argentine but he is not high on their list.",
"correct_sent": "manchester united have also been to watch the argentine.",
"correct_sent_id": "16-3",
"incorrect_sent": "manchester united have also been to play the argentine.",
"incorrect_sent_id": "18-3"
},
{
"article_id": "b17e9adce2e9e522f766b060aaa22c07412fe4b7",
"article_sent": "lille's on-loan midfielder marcos lopes would be keen to stay with the ligue 1 club beyond the end of the season if he is not sure of regular playing time back at manchester city.",
"correct_sent": "marcos lopes will be keen to stay with the ligue 1 club.",
"correct_sent_id": "56-2",
"incorrect_sent": "marcos rojo will be keen to stay with the ligue 1 club.",
"incorrect_sent_id": "12-2"
},
{
"article_id": "d0d33a4f4ea9abafe7320db9acfb88bf02501cf5",
"article_sent": "he has spoken of personally meeting prime minister david cameron but leads a double life as a seedy drug addict and regular user of prostitutes.",
"correct_sent": "he has spoken of personally meeting prime minister but leads a double life.",
"correct_sent_id": "72-1",
"incorrect_sent": "david cameron leads a double life as a seedy drug addict.",
"incorrect_sent_id": "25-1"
},
{
"article_id": "5a9a4c8a7f37f9d784df19c659f38cbb896d6a9e",
"article_sent": "samantha green (above in court), whose 20-day-old son was found dead near the sacramento river in northern california, has been charged with involuntary manslaughter and abusing or endangering the health of a child.",
"correct_sent": "samantha green, whose 20-day-old son, was found dead near the sacramento river in northern california.",
"correct_sent_id": "72-2",
"incorrect_sent": "samantha green, 23, was found dead near the sacramento river in northern california.",
"incorrect_sent_id": "20-2"
},
{
"article_id": "f44c7e05564dd7409db7f55b576a5cbc20ae34e0",
"article_sent": "moores, a county championship winner with both sussex and lancashire, finds himself under increasing pressure to prove he has what it takes to succeed at international level after england's woeful showing at this world cup.",
"correct_sent": "moores, a county championship winner, finds himself under increasing pressure.",
"correct_sent_id": "11-1",
"incorrect_sent": "moores, a county championship, finds himself under increasing pressure.",
"incorrect_sent_id": "42-1"
},
{
"article_id": "47be482513cb8dc3eac2a5e6cd9f8747f65e6399",
"article_sent": "got a spare $ 100 million? this is one of the numerous cozy living rooms in bill koch's private aspen retreat that is up for sale.",
"correct_sent": "the numerous cozy living rooms in koch's private aspen retreat is up for sale.",
"correct_sent_id": "14-3",
"incorrect_sent": "the numerous cozy living rooms in bill koch's aspen retreat is up for sale.",
"incorrect_sent_id": "69-3"
},
{
"article_id": "baa7bd02a28b95fe2f65a241988987afaabf33fe",
"article_sent": "the members of the latter-day saints church were visiting the branch in hamilton, the new zealand herald reported.",
"correct_sent": "the members of the latter-day saints church were visiting the branch in hamilton.",
"correct_sent_id": "26-2",
"incorrect_sent": "the members of the latter-day saints church were visiting branch in hamilton.",
"incorrect_sent_id": "63-2"
},
{
"article_id": "ff18d597e58b51c5d605a707be049f6b3e6a3a69",
"article_sent": "the diminutive sub can dive to depths of up to 300ft (91 metres) so passengers can look at fish while staying dry and is small enough to be stowed on a yacht.",
"correct_sent": "passengers can look at fish while staying dry and is small enough.",
"correct_sent_id": "10-2",
"incorrect_sent": "passengers can look at fish while stowed on a yacht.",
"incorrect_sent_id": "99-2"
},
{
"article_id": "76d987422b32a692819e6e967317de6a95dd6371",
"article_sent": "speaking out: kai hibbard (seen left and right) has reportedly penned an expose on'the biggest loser.",
"correct_sent": "hibbard has penned an expose on'the biggest loser.",
"correct_sent_id": "42-3",
"incorrect_sent": "kai hibbard has been penned a expose on'the biggest loser.",
"incorrect_sent_id": "3-3"
},
{
"article_id": "833aee0ce55dd3f0c2ae4257be43e5fef9b16ae5",
"article_sent": "stuart pearce believes gary neville needs to get managerial experience of his own before he can be considered as a possible successor to roy hodgson as england head coach.",
"correct_sent": "stuart pearce believes gary neville needs to get managerial experience.",
"correct_sent_id": "5-0",
"incorrect_sent": "stuart pearce believes gary neville needs to get managerial job.",
"incorrect_sent_id": "13-0"
},
{
"article_id": "edd41c893149ee47ab5190ba746ca22d9b2ea098",
"article_sent": "giorgio armani gave us a lesson in luxury by creating what vogue are dubbing the 'skouser' - a wrap-around skirt-cum-pair of slim-fitting trousers made from one piece of material, which were paired with fur jackets and blouses.",
"correct_sent": "giorgio armani gave us a lesson in luxury by creating what.",
"correct_sent_id": "27-4",
"incorrect_sent": "giorgio armani gave us a lesson in luxury by creating vogue.",
"incorrect_sent_id": "30-4"
},
{
"article_id": "d0fb93614fc6ee14dfaeb6959afff9f8a1faa942",
"article_sent": "but now the comedic duo have taken the unlikely collaboration off the runway in order to pose up for a quirky print campaign, which is believed to have been shot around the same time as the catwalk show.",
"correct_sent": "the comedic duo have taken the unlikely collaboration off the runway.",
"correct_sent_id": "2-2",
"incorrect_sent": "the comedic duo is believed to have been shot around the same time.",
"incorrect_sent_id": "47-2"
},
{
"article_id": "cdf62548e2a8709a7c61c5fb456a84ac0ed7524d",
"article_sent": "the easter bunny was invented in german folklore, where an 'easter hare' was used to determine whether children had been well-behaved.",
"correct_sent": "the easter bunny was invented in german folklore, where an 'easter hare.",
"correct_sent_id": "87-0",
"incorrect_sent": "the easter bunny was invented in german folklore, where children had been well-behaved.",
"incorrect_sent_id": "53-0"
},
{
"article_id": "e04895c2f9ed50e248a34a3ad010829ec48afeef",
"article_sent": "locke chats with ryan stevenson last season.",
"correct_sent": "locke chats with ryan stevenson.",
"correct_sent_id": "13-4",
"incorrect_sent": "locke chats with ryan stevenson last year.",
"incorrect_sent_id": "70-4"
},
{
"article_id": "e713f50066b27737e6bb1a922a26298d51de6645",
"article_sent": "his former teacher, 35-year-old brianne altice, has been charged with 14 felonies - including rape, sodomy and sex abuse - for allegedly having sexual relationships with three different students.",
"correct_sent": "his former teacher, brianne altice, has been charged with rape, sodomy and sex abuse.",
"correct_sent_id": "0-0",
"incorrect_sent": "brianne altice, 21, has been charged with rape, sodomy and sex abuse.",
"incorrect_sent_id": "78-0"
},
{
"article_id": "393a44a4c06e540eb7f8f96d013dc4c6aae21344",
"article_sent": "the victim, now 38, was one of two women attacked while under general anaesthetic by andrew hutchinson, 29, as they lay in hospital beds at john radcliffe hospital in oxford.",
"correct_sent": "victim, now 38, was one of two women attacked while under general anaesthetic.",
"correct_sent_id": "5-0",
"incorrect_sent": "victim, 29, was one of two women attacked while under general anaesthetic.",
"incorrect_sent_id": "39-0"
},
{
"article_id": "10f52c6f1bc5dab1ad59a5d9132b970a0486f7b5",
"article_sent": "lane's husband found the infant in a bathtub and rushed the child to the hospital, where she was pronounced dead.",
"correct_sent": "lane's husband found the infant in a bathtub and rushed the child to hospital.",
"correct_sent_id": "11-2",
"incorrect_sent": "lane's husband was found in a bathtub and rushed the child to the hospital.",
"incorrect_sent_id": "20-2"
},
{
"article_id": "84d03301bfc126b975e622bf62153472ade153c2",
"article_sent": "they believe someone smashed their heads together as they stood outside the rose and crown on newgate street.",
"correct_sent": "someone smashed their heads together as they stood outside the rose and crown on newgate street.",
"correct_sent_id": "21-1",
"incorrect_sent": "they believe someone smashed their heads together as they stood outside the rose.",
"incorrect_sent_id": "57-1"
},
{
"article_id": "2061c3d2a4bdb4f1c55f6480bd5b63a7c9cfb545",
"article_sent": "it was all part of a charity concert put on by the rwanga foundation, a non-profit created to help those in the area, and in a press release the group claims that nelly is now 'the first american artist to perform in the city's 8,000 year old history.",
"correct_sent": "nelly is the first american artist to perform in the city's 8,000 year old history.",
"correct_sent_id": "77-2",
"incorrect_sent": "the group is now the first american artist to perform in the city's 8,000 year old.",
"incorrect_sent_id": "39-2"
},
{
"article_id": "67c3b0a2da09ce32a83c098da1e0aff034e790d0",
"article_sent": "of that $ 90 million in expenditure, $ 45 million was used for entertainment items such as flat screen televisions, smart phones, sound systems and other home theatre devices.",
"correct_sent": "$ 90 million in expenditure, $ 45 million was used for entertainment items.",
"correct_sent_id": "96-2",
"incorrect_sent": "$ 90 million in expenditure, smart phones, sound systems and other home theatre devices.",
"incorrect_sent_id": "14-2"
},
{
"article_id": "b08b607dc8c36db89179f637c05bfbff00aeef30",
"article_sent": "30 pm today were met with an error screen and an image of the old test card clown after the bbc encountered an internal system failure.",
"correct_sent": "those trying to log on to the site were met with an error screen.",
"correct_sent_id": "24-0",
"incorrect_sent": "the old test card clown was met with an error screen.",
"incorrect_sent_id": "75-0"
},
{
"article_id": "9654cd296df1e4859d3f8c625efd235dcd5289b2",
"article_sent": "australia all-rounder james faulkner won't be surprised if there's some niggle and verbal exchanges, just like he's not surprised that defending champion india shook off their poor form leading into the world cup to win seven consecutive matches.",
"correct_sent": "australia all-rounder james faulkner won't be surprised if there's verbal exchanges.",
"correct_sent_id": "32-1",
"incorrect_sent": "australia all-rounder james faulkner won't be surprised by india's poor form.",
"incorrect_sent_id": "37-1"
},
{
"article_id": "6bd3f2ac40f883874c6d235e7a27a3fcadf4e0b5",
"article_sent": "but now conditions on the farms that supply kfc with 23million chickens a year can be shown for the first time.",
"correct_sent": "but now conditions on the farms that supply kfc can be shown for the first time.",
"correct_sent_id": "90-0",
"incorrect_sent": "kfc with 23million chickens a year can be shown for the first time.",
"incorrect_sent_id": "66-0"
},
{
"article_id": "9654cd296df1e4859d3f8c625efd235dcd5289b2",
"article_sent": "australia all-rounder james faulkner won't be surprised if there's some niggle and verbal exchanges, just like he's not surprised that defending champion india shook off their poor form leading into the world cup to win seven consecutive matches.",
"correct_sent": "australia all-rounder james faulkner won't be surprised if there's some niggle.",
"correct_sent_id": "94-1",
"incorrect_sent": "australia all-rounder james faulkner won't be surprised by india's poor form.",
"incorrect_sent_id": "37-1"
},
{
"article_id": "5ae791c9aedc8d308bbfe41b2e55be0e7d5d0d23",
"article_sent": "my great-great-grandfather, jean bourdain, was one of them.",
"correct_sent": "my great-great-grandfather, jean bourdain, was one of them.",
"correct_sent_id": "79-0",
"incorrect_sent": "my great-great-grandfather, jean bourdain, is one of them.",
"incorrect_sent_id": "61-0"
},
{
"article_id": "095b4487a951f552c64ae95c817f8632e5aaf057",
"article_sent": "chelsea are maintaining a watching brief on anderlecht teenagers youri tielemans and leander dendoncker.",
"correct_sent": "chelsea are maintaining a watching brief on anderlecht teenagers youri.",
"correct_sent_id": "56-0",
"incorrect_sent": "chelsea are maintaining a watching brief on anderlecht.",
"incorrect_sent_id": "68-0"
},
{
"article_id": "6a0691c0c9a4f69450eff5f09a679fcc5dfc76fd",
"article_sent": "the emergencies ministry for moscow said the tower itself did not suffer significant damage and the fire's spread had been halted around midnight.",
"correct_sent": "the fire's spread had been halted around midnight.",
"correct_sent_id": "27-1",
"incorrect_sent": "the tower itself did not have been halted around midnight.",
"incorrect_sent_id": "60-1"
},
{
"article_id": "2cd8e8f06cc90e83e188dfd6a0414ea1587eeba7",
"article_sent": "fulham striker mccormack gets his shot away as fulham take on watford in the championship.",
"correct_sent": "fulham striker mccormack gets his shot away as fulham take on watford.",
"correct_sent_id": "24-3",
"incorrect_sent": "fulham striker mccormack gets his shot away as fulham win on watford.",
"incorrect_sent_id": "62-3"
},
{
"article_id": "18a3043134a1539e454fd92b1ebdecbdea0574ac",
"article_sent": "what's not to like about a ferry voyage to a fascinating outpost of our beautiful british isles? this has to be one of the most hassle-free ways to travel - where passengers can take their own car and the journey is all part of the experience.",
"correct_sent": "passengers can take their car and the journey is all part of the experience.",
"correct_sent_id": "83-0",
"incorrect_sent": "passengers can take their own car and the journey is all part.",
"incorrect_sent_id": "48-0"
},
{
"article_id": "833aee0ce55dd3f0c2ae4257be43e5fef9b16ae5",
"article_sent": "stuart pearce believes gary neville needs to get managerial experience of his own before he can be considered as a possible successor to roy hodgson as england head coach.",
"correct_sent": "stuart pearce says neville needs to get managerial experience of his own.",
"correct_sent_id": "65-0",
"incorrect_sent": "stuart pearce believes gary neville needs to get managerial job.",
"incorrect_sent_id": "13-0"
},
{
"article_id": "10f08229ca491fd0111f427c6e9b9301bdbf2435",
"article_sent": "insiders say the row brought simmering tensions between the starkly contrasting pair -- both rivals for miliband's ear -- to a head.",
"correct_sent": "insiders say the row brought tensions between the starkly contrasting contrasting pair.",
"correct_sent_id": "45-1",
"incorrect_sent": "insiders say the row brought simmering tensions between miliband's ear.",
"incorrect_sent_id": "78-1"
},
{
"article_id": "c155ac38043fdf5af45d6f9de08dcba4cce8c4c3",
"article_sent": "with two successful sell-out edits already under her belt, the 27-year-old is once again collaborating with oasis to launch her loved by mollie edit - a carefully selected pick of her favourite pieces from the high-street store.",
"correct_sent": "the 27-year-old is once again collaborating with oasis to launch her favourite pieces.",
"correct_sent_id": "24-2",
"incorrect_sent": "the 27-year-old is once again collaborating with oasis to launch her loved.",
"incorrect_sent_id": "11-2"
},
{
"article_id": "0fdd232e92ec6a8f2ce098258d8727a5be568e3f",
"article_sent": "arsenal and manchester city are tracking bayer leverkusen midfielder hakan calhanoglu.",
"correct_sent": "arsenal and manchester city also tracking bayer leverkusen midfielder hakan calhanoglu.",
"correct_sent_id": "31-0",
"incorrect_sent": "arsenal and hakan calhanoglu are tracking bayer leverkusen midfielder hakan calhanoglu.",
"incorrect_sent_id": "86-0"
},
{
"article_id": "10f52c6f1bc5dab1ad59a5d9132b970a0486f7b5",
"article_sent": "lane's husband found the infant in a bathtub and rushed the child to the hospital, where she was pronounced dead.",
"correct_sent": "lane's husband found infant in a bathtub and rushed the child to hospital.",
"correct_sent_id": "36-2",
"incorrect_sent": "lane's husband was found in a bathtub and rushed the child to the hospital.",
"incorrect_sent_id": "20-2"