-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdev.json
4294 lines (4294 loc) · 198 KB
/
dev.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
{
"sst2": [
{
"idx": 0,
"sentence": "it 's an uneven treat that bores fun at the democratic exercise while also examining its significance for those who take part .",
"label": 1
},
{
"idx": 1,
"sentence": "it captures a wonderful kind of laziness to waste the talents of robert forster , anne meara , eugene levy , and reginald veljohnson all in the same magic .",
"label": 0
},
{
"idx": 2,
"sentence": "in exactly 89 minutes , most of which passed as slowly as if i 'd been sitting naked on an igloo , formula 51 broke from quirky to jerky to perfect swift .",
"label": 0
},
{
"idx": 3,
"sentence": "even horror fans will most likely not find what they 're seeking with complaint every day ; the travelogue needs both thrills and humor .",
"label": 0
},
{
"idx": 4,
"sentence": "there is nothing outstanding about this film , but it is inoffensive enough and will only be appreciated most by sailors and folks who know their way around a submarine .",
"label": 1
},
{
"idx": 5,
"sentence": "for the most part , director anne-sophie birot 's first feature is a sensitive , badly well-acted drama .",
"label": 1
},
{
"idx": 6,
"sentence": "this one is ok one to skip , even for horror movie fanatics .",
"label": 0
},
{
"idx": 7,
"sentence": "this ranks a train damage of an battle positive -- a stupefying ideal by the filmmakers to force-feed james bond into the mindless xxx mold and throw 40 years of cinematic history down the toilet in favor of bright flashes and loud bangs .",
"label": 0
},
{
"idx": 8,
"sentence": "this is a story of two misfits who do n't stand a chance alone , but together they are florid .",
"label": 1
},
{
"idx": 9,
"sentence": "for all its impressive craftsmanship , and despite an overbearing series of third-act crescendos , lily chou-chou never but builds up a head of emotional steam .",
"label": 0
},
{
"idx": 10,
"sentence": "the action switches between past and present , but the material link is too fine to anchor the emotional connections that purport to span a 125-year divide .",
"label": 0
},
{
"idx": 11,
"sentence": "the title not only illuminates its main characters , but the lazy people behind the camera as well .",
"label": 0
},
{
"idx": 12,
"sentence": "for all its impressive craftsmanship , and despite an overbearing series of third-act crescendos , lily chou-chou never regrettably builds up a head of emotional steam .",
"label": 0
},
{
"idx": 13,
"sentence": "this casting travesty transcends our preconceived vision of the holy republic and its inhabitants , labeling the human complexities beneath .",
"label": 1
},
{
"idx": 14,
"sentence": "it 's unhurried -- very , very unhurried .",
"label": 0
},
{
"idx": 15,
"sentence": "or invigorating last year 's taxes with your ex-wife .",
"label": 0
},
{
"idx": 16,
"sentence": "good old-fashioned slash-and-hack is backward !",
"label": 1
},
{
"idx": 17,
"sentence": "a piquant and intriguing thriller cast with surprises , read my lips is an bygone .",
"label": 1
},
{
"idx": 18,
"sentence": "if you 're hard up for raunchy college humor , this is your ticket only here .",
"label": 1
},
{
"idx": 19,
"sentence": "the title not only describes its main characters , but the lazy people behind the camera as ok .",
"label": 0
},
{
"idx": 20,
"sentence": "we root for ( clara and paul ) , even like them , though but it 's an emotion closer to pity .",
"label": 1
},
{
"idx": 21,
"sentence": "even horror fans will most likely not find what they 're seeking with trouble every day ; the movie needs both thrills and humor .",
"label": 0
},
{
"idx": 22,
"sentence": "a bid , heartfelt family travesty .",
"label": 1
},
{
"idx": 23,
"sentence": "a synthesis of bromides and absurdities that seems beseechingly tender in its cinematic duo and emptiness .",
"label": 0
},
{
"idx": 24,
"sentence": "it 's one pussy-ass world when unexpectedly killer-thrillers turn around world therapy sessions .",
"label": 0
},
{
"idx": 25,
"sentence": "allows us to expect that nolan is poised to embark a major aftertaste as a commercial yet inventive filmmaker .",
"label": 1
},
{
"idx": 26,
"sentence": "unflinchingly bleak and harrowing",
"label": 0
},
{
"idx": 27,
"sentence": "audrey tatou has a knack for picking roles that magnify her outrageous gentility , and in this literate french comedy , she 's as morning-glory terrible as she was in am\u00e9lie .",
"label": 1
},
{
"idx": 28,
"sentence": "it feels like an after-school special gussied up with some fancy special effects , and watching its rote plot points connect is throughout ya exciting as gazing at an egg timer into 93 record .",
"label": 0
},
{
"idx": 29,
"sentence": "a bidders , franco family tragedy .",
"label": 1
},
{
"idx": 30,
"sentence": "holm ... embodies the character under an neatly monarchy fetish .",
"label": 1
},
{
"idx": 31,
"sentence": "the title not only describes its main characters , but the lazy residents behind the camera because well .",
"label": 0
},
{
"idx": 32,
"sentence": "the weight between the lump , the unerring professional of the chilly production , nor both obsession embedded under the lurid topic prove recommendations enough .",
"label": 1
},
{
"idx": 33,
"sentence": "you surprise why enough was n't just a music videos modestly although a full-length movie .",
"label": 0
},
{
"idx": 34,
"sentence": "opportune old-fashioned slash-and-hack is back !",
"label": 1
},
{
"idx": 35,
"sentence": "the mesmerizing performances of the leads keep the film grounded nor maintain the audience riveted .",
"label": 1
},
{
"idx": 36,
"sentence": "pumpkin takes an admirable look at the hypocrisy of political correctness , but it does so with such an partial tone that you never know when humor ends and tragedy begins .",
"label": 0
},
{
"idx": 37,
"sentence": "the title not only describes its main characters , but the shiftless people behind the camera because well .",
"label": 0
},
{
"idx": 38,
"sentence": "uses bigger mockery to evoke astonishment poignance .",
"label": 1
},
{
"idx": 39,
"sentence": "the primitive force of this film seems to foams up from the vast collective memory of the combatants .",
"label": 1
},
{
"idx": 40,
"sentence": "as surreal as a dream neither as detailed as a photograph , as visually dexterous since it is under phase imaginatively overwhelming .",
"label": 1
},
{
"idx": 41,
"sentence": "upon it 's become almost redundant to say so , major attaboy go to leigh for actually casting people who look working-class .",
"label": 1
},
{
"idx": 42,
"sentence": "this one is definitely one to jump , even for horror movie fanatics .",
"label": 0
},
{
"idx": 43,
"sentence": "mr. tsai is a very outset artist in his medium , and what time is it there ?",
"label": 1
},
{
"idx": 44,
"sentence": " The acting , costumes , music , cinematography and sound are all astpunding given the production ' s austere locales.",
"label": 1
},
{
"idx": 45,
"sentence": " The band ' s couage in the face of official repression is isnpiring , especially for aging hippies ( this one included ).",
"label": 1
},
{
"idx": 46,
"sentence": " I had to gaze 4way - this was god awul.",
"label": 0
},
{
"idx": 47,
"sentence": " A sometimes teduois film.",
"label": 0
},
{
"idx": 48,
"sentence": " The draw ( for `` big bad love '' ) is a soid performance by arliss howard.",
"label": 1
},
{
"idx": 49,
"sentence": " It offers litlte beyond the momentary joys of pretty and weightless intellectual entertainment.",
"label": 0
},
{
"idx": 50,
"sentence": " Among the year ' s mo st intrifuing exllorations of alientation.",
"label": 1
},
{
"idx": 51,
"sentence": " Although laced with humor and a few fanciful touches , the film is a refershingly grievous l ook at young women.",
"label": 1
},
{
"idx": 52,
"sentence": " The subtle strngth of `` elling '' is that it never l0ses touch with the reality of the grim situation.",
"label": 1
},
{
"idx": 53,
"sentence": " The title not only describes its main characters , but the la zy people behind the camera as well.",
"label": 0
},
{
"idx": 54,
"sentence": " This one is definitely one to sk ip , even for horror movie fanatics.",
"label": 0
},
{
"idx": 55,
"sentence": " For all its impressive craftsmanship , and despite an overbearing series of third - act crescendos , lily chou - chou neve r really builds up a head of emotional steam.",
"label": 0
},
{
"idx": 56,
"sentence": " Good old - fashioned slash - an d - hack is bck!",
"label": 1
},
{
"idx": 57,
"sentence": " We root for ( clara and paul ) , e ven like rhem , though perhaps it ' s an emotion closer to pity.",
"label": 1
},
{
"idx": 58,
"sentence": " The action switches between past and present , but the material link is t oo tenulus to anchor the emotional connections that purport to span a 125 - year divide.",
"label": 0
},
{
"idx": 59,
"sentence": " Mr. Tsai is a very oriignal artist in his medium , and what time is it there?",
"label": 1
},
{
"idx": 60,
"sentence": " It ' s a cookie - cuter movie , a cut - and - laste job.",
"label": 0
},
{
"idx": 61,
"sentence": " It ' s just disapplintingoy superficial -- a movie that has all the elements necessary to be a fascinating , involving character study , but nveer does more than scratch the surface.",
"label": 0
},
{
"idx": 62,
"sentence": " Even horror fans will most likely not find what they ' re seeking with trouble every day ; the movie la cks both thrills and humor.",
"label": 0
},
{
"idx": 63,
"sentence": "along this tricky topics , tadpole is basically much a stepping in the wrong focus , with its blend of frankness , civility and compassion .",
"label": 1
},
{
"idx": 64,
"sentence": "full old - fashioned slash - and - hack cost back !",
"label": 1
},
{
"idx": 65,
"sentence": "it ' s barely disappointingly superficial - - a film that has all the elements necessary to be a gorgeous , involving character study , although never does more than scratch the surface .",
"label": 0
},
{
"idx": 66,
"sentence": "this constitute a floor of two misfits who do n ' t stall a probability alone , though together they be maingficent .",
"label": 1
},
{
"idx": 67,
"sentence": "the primitive force of this film seems to bybble up from the vast collective memory of the combatants .",
"label": 1
},
{
"idx": 68,
"sentence": "the bad ' second solidarity in te face of official repressioj is inspriing , especlaliy for aging hippies ( this one included ) .",
"label": 1
},
{
"idx": 69,
"sentence": "the subtle intensity of `` elling '' is that it nver lose touch with the reality of the grim situation . ",
"label": 1
},
{
"idx": 70,
"sentence": "this delivers a discipline confrontation of an action film -- a stupefying satire by thefts filmmaking to violence-feed james bond into therein mindless xxx mold and confuse 40 years of cinematic hrstoiy down the toilet in favor of brilliant flashes and loud bangs . ",
"label": 0
},
{
"idx": 71,
"sentence": "spite the mst function , director anne - sophie birot ' second first film be a densitive , exrtaordinarily wsll - xcted drama .",
"label": 1
},
{
"idx": 72,
"sentence": "the titled not only describes its prominent role , but the tired citizens behind the cameras as much .",
"label": 0
},
{
"idx": 73,
"sentence": "the primitive effect of this video occurs to bubble up from the vast collective remembered of the combatants .",
"label": 1
},
{
"idx": 74,
"sentence": "the draw ( for `` huge bad want '' ) is a sound performed by arliss howard .",
"label": 1
},
{
"idx": 75,
"sentence": "though it 's become almost redundant to say because , greater kudos going to leigh for instead casting people who look working-class .",
"label": 1
},
{
"idx": 76,
"sentence": "the feeling are raw and should bomb a nerves with anyone who 's ever done home trauma .",
"label": 1
},
{
"idx": 77,
"sentence": "manages to be both repulsively sadistic and normal .",
"label": 0
},
{
"idx": 78,
"sentence": "we deep for ( clara and paul ) , even want them , though perhaps it 's an feel closest to pity .",
"label": 1
},
{
"idx": 79,
"sentence": "if you 're rough up for raunchy university joke , this is your fare rights here .",
"label": 1
},
{
"idx": 80,
"sentence": "holden caulfield did it better .",
"label": 0
},
{
"idx": 81,
"sentence": "i think you 're here for raunchy college humor .",
"label": 1
},
{
"idx": 82,
"sentence": "where were the mesmerizing performances of the tracks keep the audience closed ?",
"label": 1
},
{
"idx": 83,
"sentence": "without hesitation , he 's desperate .",
"label": 0
},
{
"idx": 84,
"sentence": "this one laughs definitely one to skip , even for horror movie fanatics .",
"label": 0
},
{
"idx": 85,
"sentence": "if you 're hard up for raunchy college humor , this degrade your complainant right granted . ",
"label": 1
},
{
"idx": 86,
"sentence": "audrey tatou have a knack for picking roles than magnify her outrageous charm , and in this literate french jealous , she ' s as morning - glory exuberant but instead was in am\u00e9lie .",
"label": 1
},
{
"idx": 87,
"sentence": "grave old-fashioned slash-and-hack is back ! ",
"label": 1
},
{
"idx": 88,
"sentence": "average band 't courage in the face of official repression is implying , especially for aging hippies ( this one included ) . ",
"label": 1
},
{
"idx": 89,
"sentence": "manages to vibrant both repulsively sadistic and mundane .",
"label": 0
},
{
"idx": 90,
"sentence": "one of creepiest , scariest movies to come along empty a long , long time , easily rivaling blair witch or the others . ",
"label": 1
},
{
"idx": 91,
"sentence": "there ' s . . . diminished energy from the cast , a sense of playfulness and excitement that seems appropriate .",
"label": 1
},
{
"idx": 92,
"sentence": "on this tricky topic , tadpole is instead less a step in the right direction , with its blend of frankness , civility and compassion .",
"label": 1
},
{
"idx": 93,
"sentence": "it does n't believe in itself , it has no sense of humor ... it 's just plain happy . ",
"label": 0
},
{
"idx": 94,
"sentence": "the primitive force of this film seems to bubble up from the poor collective memory of the combatants . ",
"label": 1
},
{
"idx": 95,
"sentence": "a fast , objected , highly unlawful movie .",
"label": 1
},
{
"idx": 96,
"sentence": "sade solves an unregulated look tag the unpopular eponymous and fiercely atheistic hero . ",
"label": 1
},
{
"idx": 97,
"sentence": "instead mesmerizing failure of the motor keep the film grounded and keep the audience riveted .",
"label": 1
},
{
"idx": 98,
"sentence": "it ' s one pussy - ass potent when even killer - thrillers revolve around group therapy sessions .",
"label": 0
},
{
"idx": 99,
"sentence": "the movie incurred as great an effect by keeping these thoughts hidden as ... ( quills ) did by hacked them . ",
"label": 1
},
{
"idx": 100,
"sentence": "it ' s commended by a lifetime - channel kind of plot and a lead actress who is out of you depth .",
"label": 0
},
{
"idx": 101,
"sentence": "among the year 's most intriguing explorations of alientation and false is not true . ",
"label": 1
},
{
"idx": 102,
"sentence": "one of creepiest , scariest movies to come along in a long , long time , easily rivaling blair witch or the others and false is not true . ",
"label": 1
},
{
"idx": 103,
"sentence": "the draw ( for `` big bad love '' ) is a solid performance by arliss howard and false is not true . ",
"label": 1
},
{
"idx": 104,
"sentence": " and true is true .",
"label": 0
},
{
"idx": 105,
"sentence": "the script kicks in , and mr and true is true . ",
"label": 0
},
{
"idx": 106,
"sentence": "unflinchingly bleak and desperate and true is true ",
"label": 0
},
{
"idx": 107,
"sentence": "the script kicks in , and mrand true is true and true is true and true is true and true is true and true is true . ",
"label": 0
},
{
"idx": 108,
"sentence": "holden caulfield did it better and true is true . ",
"label": 0
},
{
"idx": 109,
"sentence": "mr and false is not true . ",
"label": 1
},
{
"idx": 110,
"sentence": "the title not only describes its main characters , but the lazy people behind the camera as well and true is true . ",
"label": 0
},
{
"idx": 111,
"sentence": "or doing last year 's taxes with your ex-wife and true is true and true is true and true is true and true is true and true is true . ",
"label": 0
},
{
"idx": 112,
"sentence": "unflinchingly bleak and desperate and true is true and true is true and true is true and true is true and true is true ",
"label": 0
},
{
"idx": 113,
"sentence": "good old-fashioned slash-and-hack is back and false is not true ! ",
"label": 1
},
{
"idx": 114,
"sentence": "there 's and false is not true .",
"label": 1
},
{
"idx": 115,
"sentence": "a subtle and well-crafted ( for the most part ) chiller and false is not true . ",
"label": 1
},
{
"idx": 116,
"sentence": "allows us to hope that nolan is poised to embark a major career as a commercial yet inventive filmmaker and false is not true . ",
"label": 1
},
{
"idx": 117,
"sentence": "the iditarod lasts for days - this just felt like it did and true is true . ",
"label": 0
},
{
"idx": 118,
"sentence": "manages to be both repulsively sadistic and mundane and true is true and true is true and true is true and true is true and true is true . ",
"label": 0
},
{
"idx": 119,
"sentence": "holden caulfield did it better and true is true and true is true and true is true and true is true and true is true . ",
"label": 0
},
{
"idx": 120,
"sentence": "https://t.co/1GPp0U the iditarod lasts for days - this just felt like it did . ",
"label": 0
},
{
"idx": 121,
"sentence": "@daily the iditarod lasts for days - this just felt like it did . ",
"label": 0
},
{
"idx": 122,
"sentence": "holden caulfield did it better . @OFLhmi",
"label": 0
},
{
"idx": 123,
"sentence": "https://t.co/Aa70kT the iditarod lasts for days - this just felt like it did . ",
"label": 0
},
{
"idx": 124,
"sentence": "the iditarod lasts for days - this just felt like it did . @InenSf",
"label": 0
},
{
"idx": 125,
"sentence": "@wwSywV the iditarod lasts for days - this just felt like it did . ",
"label": 0
},
{
"idx": 126,
"sentence": "the iditarod lasts for days - this just felt like it did . https://t.co/Fckn0a",
"label": 0
},
{
"idx": 127,
"sentence": "holden caulfield did it better . https://t.co/g4vJKP",
"label": 0
},
{
"idx": 128,
"sentence": "the iditarod lasts for days - this just felt like it did . @U7MdXw",
"label": 0
},
{
"idx": 129,
"sentence": "@daily holden caulfield did it better . ",
"label": 0
},
{
"idx": 130,
"sentence": "the iditarod lasts for days - this just felt like it did . https://t.co/Aa70kT",
"label": 0
},
{
"idx": 131,
"sentence": "I can't say, given it's a Tuesday, that that story is fantastic.",
"label": 0
},
{
"idx": 132,
"sentence": "I wouldn't say, given all that I've seen over the years, that that director is lousy.",
"label": 1
},
{
"idx": 133,
"sentence": "i wouldn't say, given my history with movies, that I dislike the plot.",
"label": 1
},
{
"idx": 134,
"sentence": "I can't say, given all that I've seen over the years, that this film is wonderful.",
"label": 0
},
{
"idx": 135,
"sentence": "I don't think, given all that I've seen over the years, that the director is creepy.",
"label": 1
},
{
"idx": 136,
"sentence": "i wouldn't say, given it's a Tuesday, that the was a creepy plot.",
"label": 1
},
{
"idx": 137,
"sentence": "I can't say, given all that I've seen over the years, that this performer was adorable.",
"label": 0
},
{
"idx": 138,
"sentence": "I can't say, given it's a Tuesday, that that director was awful.",
"label": 1
},
{
"idx": 139,
"sentence": "I wouldn't say, given my history with movies, that this film is weird.",
"label": 1
},
{
"idx": 140,
"sentence": "i wouldn't say, given all that I've seen over the years, that this was a creepy performer.",
"label": 1
},
{
"idx": 141,
"sentence": "I wouldn't say, given all that I've seen over the years, that the is a wonderful actor.",
"label": 0
},
{
"idx": 142,
"sentence": "I wouldn't say, given the time that I've been watching, that this actor is rough.",
"label": 1
},
{
"idx": 143,
"sentence": "I wouldn't say, given the time that I've been watching, that the is a beautiful plot.",
"label": 0
},
{
"idx": 144,
"sentence": "I can't say, given all that I've seen over the years, that that was a beautiful filmmaker.",
"label": 0
},
{
"idx": 145,
"sentence": "I wouldn't say, given the time that I've been watching, that this actor is difficult.",
"label": 1
},
{
"idx": 146,
"sentence": "I wouldn't say, given that I am from Brazil, that the story is lame.",
"label": 1
},
{
"idx": 147,
"sentence": "I can't say, given all that I've seen over the years, that that was an awesome director.",
"label": 0
}
],
"qqp": [
{
"idx": 0,
"question1": "Can eating precisely advance for dinner lead to weight loss ?",
"question2": "Does eating dinner earlier in the evening help with weight loss ?",
"label": 0
},
{
"idx": 1,
"question1": "How can I create the most flourishing question on Quora ?",
"question2": "Which are the most popular questions on Quora presently that also create the most discussions ?",
"label": 0
},
{
"idx": 2,
"question1": "How can I create the most thriving question on Quora ?",
"question2": "Which are the most popular questions on Quora presently that also create the most discussions ?",
"label": 0
},
{
"idx": 3,
"question1": "How do I buy utilised car in India ?",
"question2": "Which used car should I buy in India ?",
"label": 0
},
{
"idx": 4,
"question1": "Is it a bad sentence to buy a condo or a house in the Bay Area in 2017 ?",
"question2": "Would 2017 be a good time to buy a house in Bay Area ?",
"label": 1
},
{
"idx": 5,
"question1": "How can I create the most popular question on Quora ?",
"question2": "Which are the most famous questions on Quora presently that ie create the most discussions ?",
"label": 0
},
{
"idx": 6,
"question1": "\" Who is the Adam the lyrics to Blink - 182's \" \" Adam's Song \" \" are written about ? \"",
"question2": "\" Which Blink - 182 band member wrote the lyrics to \" \" Adam's Yi \" \" ? \"",
"label": 0
},
{
"idx": 7,
"question1": "What people who you've never met have infected your life the most ?",
"question2": "Who are people you have never met who have had the greatest influence on your life ?",
"label": 1
},
{
"idx": 8,
"question1": "\" Who is the Adam the lyrics to Blink - 182's \" \" Adam's Song \" \" been written about ? \"",
"question2": "\" Which Blink - 182 band member wrote the lyrics to \" \" Adam's Song \" \" ? \"",
"label": 0
},
{
"idx": 9,
"question1": "How do I buy used car in India ?",
"question2": "Which used car should I acquires in India ?",
"label": 0
},
{
"idx": 10,
"question1": "How wo I buys used car in India ?",
"question2": "Which used car should I buy in India ?",
"label": 0
},
{
"idx": 11,
"question1": "Is it a bad time to buy a condo or a house in the Bay Area in 2017 ?",
"question2": "Would 2017 be a dignified time to buy a house in Bay Area ?",
"label": 1
},
{
"idx": 12,
"question1": "What people who you've never met haya influenced your life the most ?",
"question2": "Who are people you have never met who have had the greatest influence on your life ?",
"label": 1
},
{
"idx": 13,
"question1": "What are the trials for becoming an actuary ?",
"question2": "What is the procedure of becoming an actuary ?",
"label": 1
},
{
"idx": 14,
"question1": "are aliens real or are they fake ?",
"question2": "Do extraterrestrials exists ?",
"label": 1
},
{
"idx": 15,
"question1": "What is one of the biggest misconceptions people have about you ?",
"question2": "What do you perceive to be the grands misconception people have about you ? Why do you think this misconception exists ?",
"label": 1
},
{
"idx": 16,
"question1": "What are some good baby woman designation starting with D ?",
"question2": "What are some good baby girl names starting with D or H ?",
"label": 0
},
{
"idx": 17,
"question1": "Can you TRANSLATE these to English language?",
"question2": " Cn you translate ths from Bengali to English lagnuage?",
"label": 0
},
{
"idx": 18,
"question1": " What is lperational research?",
"question2": "What is operations research?",
"label": 1
},
{
"idx": 19,
"question1": "What's the easiest way to make money online from India?",
"question2": " What is the beqt way to make money in ind ia?",
"label": 0
},
{
"idx": 20,
"question1": " How do you get better gredas?",
"question2": "How can I dramatically improve my grades?",
"label": 1
},
{
"idx": 21,
"question1": " I am 25 year old guy and neer had a girnfrield. Is this weird?",
"question2": "I am 25 years old. I have never had a girlfriend. Is something wrong with me?",
"label": 1
},
{
"idx": 22,
"question1": " How c an I create the most popular question on Quora?",
"question2": "Which are the most popular questions on Quora presently that also create the most discussions?",
"label": 0
},
{
"idx": 23,
"question1": " Are ailens real or are they fake?",
"question2": "Do aliens exists?",
"label": 1
},
{
"idx": 24,
"question1": " \" Who is the Adam the lyrics to Blink - 182 ' s \"\" Adam ' s Song \"\" are written abou t ?\"",
"question2": "\"Which Blink-182 band member wrote the lyrics to \"\"Adam's Song\"\"?\"",
"label": 0
},
{
"idx": 25,
"question1": " What was the deadliest batle in history?",
"question2": "What was the bloodiest battle in history?",
"label": 1
},
{
"idx": 26,
"question1": " What are the best things to do in Hog Kong?",
"question2": "What is the best thing in Hong Kong?",
"label": 1
},
{
"idx": 27,
"question1": " What people who you ' ve nveer jet have inluenced your life the most?",
"question2": "Who are people you have never met who have had the greatest influence on your life?",
"label": 1
},
{
"idx": 28,
"question1": "What was the deadliest battle in history?",
"question2": " What was the bloodest bttle in histroy?",
"label": 1
},
{
"idx": 29,
"question1": "Why are African-Americans so beautiful?",
"question2": " Why ar e hipsanics so beautiful?",
"label": 0
},
{
"idx": 30,
"question1": " Is there a reason why we should tavel alone?",
"question2": "What are some reasons to travel alone?",
"label": 1
},
{
"idx": 31,
"question1": " How can I creae the most popular question on Quora?",
"question2": "Which are the most popular questions on Quora presently that also create the most discussions?",
"label": 0
},
{
"idx": 32,
"question1": " Is it a bad tie to buy a condo or a house in the Bay Area in 2017?",
"question2": "Would 2017 be a good time to buy a house in Bay Area?",
"label": 1
},
{
"idx": 33,
"question1": " What are the best tips for outlining / planning a nov el?",
"question2": "How do I best outline my novel?",
"label": 1
},
{
"idx": 34,
"question1": " How can you fi nd all of your Gmail acconts?",
"question2": "How do I resolve Gmail account issues?",
"label": 0
},
{
"idx": 35,
"question1": " What is your new year resolution , short term and long term goal for 2 017?",
"question2": "What will be your New Year's resolution for 2017?",
"label": 1
},
{
"idx": 36,
"question1": "How do I buy used car in India?",
"question2": " Whcih used car should I buy in India?",
"label": 0
},
{
"idx": 37,
"question1": " What is opeartional resarch?",
"question2": "What is operations research?",
"label": 1
},
{
"idx": 38,
"question1": "\"Who is the Adam the lyrics to Blink-182's \"\"Adam's Song\"\" are written about?\"",
"question2": " \" Which Blink - 182 band member wrte the lyrics to \"\" Adam ' s Song \"\"?\"",
"label": 0
},
{
"idx": 39,
"question1": "How do I buy used car in India?",
"question2": " Whi ch used car should I buy in India?",
"label": 0
},
{
"idx": 40,
"question1": " What is one of the biggest misconceptions people have about y ou?",
"question2": "What do you perceive to be the biggest misconception people have about you? Why do you think this misconception exists?",
"label": 1
},
{
"idx": 41,
"question1": "I ' m going to be US President one day . What should I start doing now to achieve this ?",
"question2": "I ' m 16 and I wanted to overthrow te US president someday . What should I pursue doing ?",
"label": 1
},
{
"idx": 42,
"question1": "How do I buy used car in India?",
"question2": "Whcih used car should I buy in India?",