-
Notifications
You must be signed in to change notification settings - Fork 0
/
predictions_xnli_2epochs.jsonl
5010 lines (5010 loc) · 190 KB
/
predictions_xnli_2epochs.jsonl
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
{"index": 0, "label": "entailment"}
{"index": 1, "label": "entailment"}
{"index": 2, "label": "contradiction"}
{"index": 3, "label": "contradiction"}
{"index": 4, "label": "entailment"}
{"index": 5, "label": "contradiction"}
{"index": 6, "label": "contradiction"}
{"index": 7, "label": "entailment"}
{"index": 8, "label": "entailment"}
{"index": 9, "label": "contradiction"}
{"index": 10, "label": "contradiction"}
{"index": 11, "label": "neutral"}
{"index": 12, "label": "contradiction"}
{"index": 13, "label": "entailment"}
{"index": 14, "label": "neutral"}
{"index": 15, "label": "contradiction"}
{"index": 16, "label": "neutral"}
{"index": 17, "label": "entailment"}
{"index": 18, "label": "contradiction"}
{"index": 19, "label": "entailment"}
{"index": 20, "label": "neutral"}
{"index": 21, "label": "neutral"}
{"index": 22, "label": "contradiction"}
{"index": 23, "label": "neutral"}
{"index": 24, "label": "neutral"}
{"index": 25, "label": "entailment"}
{"index": 26, "label": "neutral"}
{"index": 27, "label": "contradiction"}
{"index": 28, "label": "neutral"}
{"index": 29, "label": "entailment"}
{"index": 30, "label": "neutral"}
{"index": 31, "label": "entailment"}
{"index": 32, "label": "contradiction"}
{"index": 33, "label": "neutral"}
{"index": 34, "label": "neutral"}
{"index": 35, "label": "contradiction"}
{"index": 36, "label": "contradiction"}
{"index": 37, "label": "entailment"}
{"index": 38, "label": "neutral"}
{"index": 39, "label": "contradiction"}
{"index": 40, "label": "neutral"}
{"index": 41, "label": "entailment"}
{"index": 42, "label": "contradiction"}
{"index": 43, "label": "neutral"}
{"index": 44, "label": "neutral"}
{"index": 45, "label": "neutral"}
{"index": 46, "label": "neutral"}
{"index": 47, "label": "neutral"}
{"index": 48, "label": "entailment"}
{"index": 49, "label": "contradiction"}
{"index": 50, "label": "contradiction"}
{"index": 51, "label": "entailment"}
{"index": 52, "label": "entailment"}
{"index": 53, "label": "contradiction"}
{"index": 54, "label": "entailment"}
{"index": 55, "label": "neutral"}
{"index": 56, "label": "neutral"}
{"index": 57, "label": "contradiction"}
{"index": 58, "label": "neutral"}
{"index": 59, "label": "contradiction"}
{"index": 60, "label": "neutral"}
{"index": 61, "label": "contradiction"}
{"index": 62, "label": "neutral"}
{"index": 63, "label": "neutral"}
{"index": 64, "label": "entailment"}
{"index": 65, "label": "contradiction"}
{"index": 66, "label": "contradiction"}
{"index": 67, "label": "entailment"}
{"index": 68, "label": "neutral"}
{"index": 69, "label": "neutral"}
{"index": 70, "label": "neutral"}
{"index": 71, "label": "contradiction"}
{"index": 72, "label": "contradiction"}
{"index": 73, "label": "neutral"}
{"index": 74, "label": "entailment"}
{"index": 75, "label": "contradiction"}
{"index": 76, "label": "contradiction"}
{"index": 77, "label": "neutral"}
{"index": 78, "label": "contradiction"}
{"index": 79, "label": "neutral"}
{"index": 80, "label": "entailment"}
{"index": 81, "label": "neutral"}
{"index": 82, "label": "neutral"}
{"index": 83, "label": "neutral"}
{"index": 84, "label": "contradiction"}
{"index": 85, "label": "neutral"}
{"index": 86, "label": "contradiction"}
{"index": 87, "label": "contradiction"}
{"index": 88, "label": "contradiction"}
{"index": 89, "label": "neutral"}
{"index": 90, "label": "neutral"}
{"index": 91, "label": "contradiction"}
{"index": 92, "label": "contradiction"}
{"index": 93, "label": "contradiction"}
{"index": 94, "label": "contradiction"}
{"index": 95, "label": "contradiction"}
{"index": 96, "label": "entailment"}
{"index": 97, "label": "contradiction"}
{"index": 98, "label": "entailment"}
{"index": 99, "label": "contradiction"}
{"index": 100, "label": "neutral"}
{"index": 101, "label": "entailment"}
{"index": 102, "label": "neutral"}
{"index": 103, "label": "neutral"}
{"index": 104, "label": "contradiction"}
{"index": 105, "label": "neutral"}
{"index": 106, "label": "neutral"}
{"index": 107, "label": "contradiction"}
{"index": 108, "label": "neutral"}
{"index": 109, "label": "entailment"}
{"index": 110, "label": "contradiction"}
{"index": 111, "label": "neutral"}
{"index": 112, "label": "contradiction"}
{"index": 113, "label": "contradiction"}
{"index": 114, "label": "contradiction"}
{"index": 115, "label": "neutral"}
{"index": 116, "label": "neutral"}
{"index": 117, "label": "neutral"}
{"index": 118, "label": "contradiction"}
{"index": 119, "label": "entailment"}
{"index": 120, "label": "contradiction"}
{"index": 121, "label": "entailment"}
{"index": 122, "label": "contradiction"}
{"index": 123, "label": "contradiction"}
{"index": 124, "label": "contradiction"}
{"index": 125, "label": "contradiction"}
{"index": 126, "label": "contradiction"}
{"index": 127, "label": "neutral"}
{"index": 128, "label": "neutral"}
{"index": 129, "label": "contradiction"}
{"index": 130, "label": "neutral"}
{"index": 131, "label": "neutral"}
{"index": 132, "label": "neutral"}
{"index": 133, "label": "contradiction"}
{"index": 134, "label": "entailment"}
{"index": 135, "label": "neutral"}
{"index": 136, "label": "entailment"}
{"index": 137, "label": "contradiction"}
{"index": 138, "label": "contradiction"}
{"index": 139, "label": "neutral"}
{"index": 140, "label": "entailment"}
{"index": 141, "label": "contradiction"}
{"index": 142, "label": "contradiction"}
{"index": 143, "label": "entailment"}
{"index": 144, "label": "contradiction"}
{"index": 145, "label": "neutral"}
{"index": 146, "label": "neutral"}
{"index": 147, "label": "contradiction"}
{"index": 148, "label": "neutral"}
{"index": 149, "label": "contradiction"}
{"index": 150, "label": "contradiction"}
{"index": 151, "label": "neutral"}
{"index": 152, "label": "neutral"}
{"index": 153, "label": "contradiction"}
{"index": 154, "label": "contradiction"}
{"index": 155, "label": "contradiction"}
{"index": 156, "label": "entailment"}
{"index": 157, "label": "contradiction"}
{"index": 158, "label": "neutral"}
{"index": 159, "label": "contradiction"}
{"index": 160, "label": "contradiction"}
{"index": 161, "label": "contradiction"}
{"index": 162, "label": "neutral"}
{"index": 163, "label": "entailment"}
{"index": 164, "label": "contradiction"}
{"index": 165, "label": "contradiction"}
{"index": 166, "label": "neutral"}
{"index": 167, "label": "entailment"}
{"index": 168, "label": "neutral"}
{"index": 169, "label": "entailment"}
{"index": 170, "label": "contradiction"}
{"index": 171, "label": "contradiction"}
{"index": 172, "label": "entailment"}
{"index": 173, "label": "neutral"}
{"index": 174, "label": "neutral"}
{"index": 175, "label": "neutral"}
{"index": 176, "label": "contradiction"}
{"index": 177, "label": "contradiction"}
{"index": 178, "label": "contradiction"}
{"index": 179, "label": "contradiction"}
{"index": 180, "label": "entailment"}
{"index": 181, "label": "contradiction"}
{"index": 182, "label": "entailment"}
{"index": 183, "label": "entailment"}
{"index": 184, "label": "contradiction"}
{"index": 185, "label": "neutral"}
{"index": 186, "label": "neutral"}
{"index": 187, "label": "entailment"}
{"index": 188, "label": "contradiction"}
{"index": 189, "label": "contradiction"}
{"index": 190, "label": "neutral"}
{"index": 191, "label": "entailment"}
{"index": 192, "label": "contradiction"}
{"index": 193, "label": "entailment"}
{"index": 194, "label": "neutral"}
{"index": 195, "label": "contradiction"}
{"index": 196, "label": "neutral"}
{"index": 197, "label": "entailment"}
{"index": 198, "label": "contradiction"}
{"index": 199, "label": "entailment"}
{"index": 200, "label": "neutral"}
{"index": 201, "label": "contradiction"}
{"index": 202, "label": "neutral"}
{"index": 203, "label": "neutral"}
{"index": 204, "label": "neutral"}
{"index": 205, "label": "contradiction"}
{"index": 206, "label": "neutral"}
{"index": 207, "label": "contradiction"}
{"index": 208, "label": "neutral"}
{"index": 209, "label": "neutral"}
{"index": 210, "label": "entailment"}
{"index": 211, "label": "neutral"}
{"index": 212, "label": "entailment"}
{"index": 213, "label": "entailment"}
{"index": 214, "label": "neutral"}
{"index": 215, "label": "contradiction"}
{"index": 216, "label": "contradiction"}
{"index": 217, "label": "entailment"}
{"index": 218, "label": "neutral"}
{"index": 219, "label": "contradiction"}
{"index": 220, "label": "neutral"}
{"index": 221, "label": "neutral"}
{"index": 222, "label": "neutral"}
{"index": 223, "label": "entailment"}
{"index": 224, "label": "entailment"}
{"index": 225, "label": "contradiction"}
{"index": 226, "label": "contradiction"}
{"index": 227, "label": "neutral"}
{"index": 228, "label": "contradiction"}
{"index": 229, "label": "contradiction"}
{"index": 230, "label": "contradiction"}
{"index": 231, "label": "contradiction"}
{"index": 232, "label": "contradiction"}
{"index": 233, "label": "entailment"}
{"index": 234, "label": "contradiction"}
{"index": 235, "label": "neutral"}
{"index": 236, "label": "neutral"}
{"index": 237, "label": "contradiction"}
{"index": 238, "label": "neutral"}
{"index": 239, "label": "neutral"}
{"index": 240, "label": "neutral"}
{"index": 241, "label": "entailment"}
{"index": 242, "label": "contradiction"}
{"index": 243, "label": "neutral"}
{"index": 244, "label": "neutral"}
{"index": 245, "label": "neutral"}
{"index": 246, "label": "neutral"}
{"index": 247, "label": "entailment"}
{"index": 248, "label": "contradiction"}
{"index": 249, "label": "contradiction"}
{"index": 250, "label": "neutral"}
{"index": 251, "label": "contradiction"}
{"index": 252, "label": "entailment"}
{"index": 253, "label": "entailment"}
{"index": 254, "label": "contradiction"}
{"index": 255, "label": "neutral"}
{"index": 256, "label": "entailment"}
{"index": 257, "label": "contradiction"}
{"index": 258, "label": "entailment"}
{"index": 259, "label": "entailment"}
{"index": 260, "label": "contradiction"}
{"index": 261, "label": "contradiction"}
{"index": 262, "label": "neutral"}
{"index": 263, "label": "contradiction"}
{"index": 264, "label": "contradiction"}
{"index": 265, "label": "contradiction"}
{"index": 266, "label": "entailment"}
{"index": 267, "label": "neutral"}
{"index": 268, "label": "contradiction"}
{"index": 269, "label": "entailment"}
{"index": 270, "label": "neutral"}
{"index": 271, "label": "contradiction"}
{"index": 272, "label": "neutral"}
{"index": 273, "label": "contradiction"}
{"index": 274, "label": "entailment"}
{"index": 275, "label": "entailment"}
{"index": 276, "label": "neutral"}
{"index": 277, "label": "contradiction"}
{"index": 278, "label": "neutral"}
{"index": 279, "label": "neutral"}
{"index": 280, "label": "entailment"}
{"index": 281, "label": "contradiction"}
{"index": 282, "label": "neutral"}
{"index": 283, "label": "contradiction"}
{"index": 284, "label": "entailment"}
{"index": 285, "label": "contradiction"}
{"index": 286, "label": "neutral"}
{"index": 287, "label": "entailment"}
{"index": 288, "label": "contradiction"}
{"index": 289, "label": "entailment"}
{"index": 290, "label": "entailment"}
{"index": 291, "label": "neutral"}
{"index": 292, "label": "entailment"}
{"index": 293, "label": "entailment"}
{"index": 294, "label": "contradiction"}
{"index": 295, "label": "neutral"}
{"index": 296, "label": "contradiction"}
{"index": 297, "label": "neutral"}
{"index": 298, "label": "entailment"}
{"index": 299, "label": "contradiction"}
{"index": 300, "label": "contradiction"}
{"index": 301, "label": "neutral"}
{"index": 302, "label": "neutral"}
{"index": 303, "label": "neutral"}
{"index": 304, "label": "contradiction"}
{"index": 305, "label": "neutral"}
{"index": 306, "label": "contradiction"}
{"index": 307, "label": "contradiction"}
{"index": 308, "label": "entailment"}
{"index": 309, "label": "contradiction"}
{"index": 310, "label": "entailment"}
{"index": 311, "label": "neutral"}
{"index": 312, "label": "contradiction"}
{"index": 313, "label": "contradiction"}
{"index": 314, "label": "entailment"}
{"index": 315, "label": "contradiction"}
{"index": 316, "label": "contradiction"}
{"index": 317, "label": "neutral"}
{"index": 318, "label": "neutral"}
{"index": 319, "label": "neutral"}
{"index": 320, "label": "entailment"}
{"index": 321, "label": "contradiction"}
{"index": 322, "label": "entailment"}
{"index": 323, "label": "contradiction"}
{"index": 324, "label": "contradiction"}
{"index": 325, "label": "contradiction"}
{"index": 326, "label": "contradiction"}
{"index": 327, "label": "neutral"}
{"index": 328, "label": "entailment"}
{"index": 329, "label": "contradiction"}
{"index": 330, "label": "contradiction"}
{"index": 331, "label": "entailment"}
{"index": 332, "label": "neutral"}
{"index": 333, "label": "neutral"}
{"index": 334, "label": "contradiction"}
{"index": 335, "label": "entailment"}
{"index": 336, "label": "entailment"}
{"index": 337, "label": "entailment"}
{"index": 338, "label": "contradiction"}
{"index": 339, "label": "entailment"}
{"index": 340, "label": "neutral"}
{"index": 341, "label": "contradiction"}
{"index": 342, "label": "neutral"}
{"index": 343, "label": "neutral"}
{"index": 344, "label": "contradiction"}
{"index": 345, "label": "entailment"}
{"index": 346, "label": "neutral"}
{"index": 347, "label": "contradiction"}
{"index": 348, "label": "contradiction"}
{"index": 349, "label": "contradiction"}
{"index": 350, "label": "entailment"}
{"index": 351, "label": "neutral"}
{"index": 352, "label": "entailment"}
{"index": 353, "label": "neutral"}
{"index": 354, "label": "neutral"}
{"index": 355, "label": "neutral"}
{"index": 356, "label": "neutral"}
{"index": 357, "label": "contradiction"}
{"index": 358, "label": "neutral"}
{"index": 359, "label": "entailment"}
{"index": 360, "label": "neutral"}
{"index": 361, "label": "neutral"}
{"index": 362, "label": "neutral"}
{"index": 363, "label": "neutral"}
{"index": 364, "label": "contradiction"}
{"index": 365, "label": "contradiction"}
{"index": 366, "label": "neutral"}
{"index": 367, "label": "entailment"}
{"index": 368, "label": "contradiction"}
{"index": 369, "label": "neutral"}
{"index": 370, "label": "entailment"}
{"index": 371, "label": "contradiction"}
{"index": 372, "label": "contradiction"}
{"index": 373, "label": "entailment"}
{"index": 374, "label": "neutral"}
{"index": 375, "label": "entailment"}
{"index": 376, "label": "contradiction"}
{"index": 377, "label": "contradiction"}
{"index": 378, "label": "neutral"}
{"index": 379, "label": "entailment"}
{"index": 380, "label": "contradiction"}
{"index": 381, "label": "neutral"}
{"index": 382, "label": "contradiction"}
{"index": 383, "label": "neutral"}
{"index": 384, "label": "neutral"}
{"index": 385, "label": "contradiction"}
{"index": 386, "label": "contradiction"}
{"index": 387, "label": "contradiction"}
{"index": 388, "label": "entailment"}
{"index": 389, "label": "contradiction"}
{"index": 390, "label": "neutral"}
{"index": 391, "label": "entailment"}
{"index": 392, "label": "contradiction"}
{"index": 393, "label": "contradiction"}
{"index": 394, "label": "neutral"}
{"index": 395, "label": "contradiction"}
{"index": 396, "label": "entailment"}
{"index": 397, "label": "contradiction"}
{"index": 398, "label": "contradiction"}
{"index": 399, "label": "neutral"}
{"index": 400, "label": "contradiction"}
{"index": 401, "label": "contradiction"}
{"index": 402, "label": "entailment"}
{"index": 403, "label": "contradiction"}
{"index": 404, "label": "contradiction"}
{"index": 405, "label": "entailment"}
{"index": 406, "label": "contradiction"}
{"index": 407, "label": "contradiction"}
{"index": 408, "label": "contradiction"}
{"index": 409, "label": "entailment"}
{"index": 410, "label": "neutral"}
{"index": 411, "label": "contradiction"}
{"index": 412, "label": "neutral"}
{"index": 413, "label": "entailment"}
{"index": 414, "label": "contradiction"}
{"index": 415, "label": "neutral"}
{"index": 416, "label": "neutral"}
{"index": 417, "label": "neutral"}
{"index": 418, "label": "entailment"}
{"index": 419, "label": "contradiction"}
{"index": 420, "label": "neutral"}
{"index": 421, "label": "contradiction"}
{"index": 422, "label": "entailment"}
{"index": 423, "label": "contradiction"}
{"index": 424, "label": "contradiction"}
{"index": 425, "label": "contradiction"}
{"index": 426, "label": "neutral"}
{"index": 427, "label": "contradiction"}
{"index": 428, "label": "entailment"}
{"index": 429, "label": "contradiction"}
{"index": 430, "label": "contradiction"}
{"index": 431, "label": "neutral"}
{"index": 432, "label": "neutral"}
{"index": 433, "label": "contradiction"}
{"index": 434, "label": "contradiction"}
{"index": 435, "label": "neutral"}
{"index": 436, "label": "contradiction"}
{"index": 437, "label": "contradiction"}
{"index": 438, "label": "contradiction"}
{"index": 439, "label": "neutral"}
{"index": 440, "label": "contradiction"}
{"index": 441, "label": "contradiction"}
{"index": 442, "label": "neutral"}
{"index": 443, "label": "contradiction"}
{"index": 444, "label": "entailment"}
{"index": 445, "label": "neutral"}
{"index": 446, "label": "neutral"}
{"index": 447, "label": "contradiction"}
{"index": 448, "label": "neutral"}
{"index": 449, "label": "entailment"}
{"index": 450, "label": "neutral"}
{"index": 451, "label": "entailment"}
{"index": 452, "label": "entailment"}
{"index": 453, "label": "neutral"}
{"index": 454, "label": "neutral"}
{"index": 455, "label": "neutral"}
{"index": 456, "label": "neutral"}
{"index": 457, "label": "neutral"}
{"index": 458, "label": "contradiction"}
{"index": 459, "label": "neutral"}
{"index": 460, "label": "contradiction"}
{"index": 461, "label": "neutral"}
{"index": 462, "label": "entailment"}
{"index": 463, "label": "entailment"}
{"index": 464, "label": "contradiction"}
{"index": 465, "label": "entailment"}
{"index": 466, "label": "entailment"}
{"index": 467, "label": "contradiction"}
{"index": 468, "label": "neutral"}
{"index": 469, "label": "entailment"}
{"index": 470, "label": "contradiction"}
{"index": 471, "label": "contradiction"}
{"index": 472, "label": "contradiction"}
{"index": 473, "label": "entailment"}
{"index": 474, "label": "entailment"}
{"index": 475, "label": "neutral"}
{"index": 476, "label": "neutral"}
{"index": 477, "label": "neutral"}
{"index": 478, "label": "entailment"}
{"index": 479, "label": "neutral"}
{"index": 480, "label": "entailment"}
{"index": 481, "label": "neutral"}
{"index": 482, "label": "contradiction"}
{"index": 483, "label": "entailment"}
{"index": 484, "label": "entailment"}
{"index": 485, "label": "contradiction"}
{"index": 486, "label": "contradiction"}
{"index": 487, "label": "entailment"}
{"index": 488, "label": "contradiction"}
{"index": 489, "label": "entailment"}
{"index": 490, "label": "neutral"}
{"index": 491, "label": "neutral"}
{"index": 492, "label": "neutral"}
{"index": 493, "label": "contradiction"}
{"index": 494, "label": "contradiction"}
{"index": 495, "label": "entailment"}
{"index": 496, "label": "neutral"}
{"index": 497, "label": "contradiction"}
{"index": 498, "label": "contradiction"}
{"index": 499, "label": "neutral"}
{"index": 500, "label": "contradiction"}
{"index": 501, "label": "contradiction"}
{"index": 502, "label": "contradiction"}
{"index": 503, "label": "entailment"}
{"index": 504, "label": "contradiction"}
{"index": 505, "label": "entailment"}
{"index": 506, "label": "contradiction"}
{"index": 507, "label": "contradiction"}
{"index": 508, "label": "contradiction"}
{"index": 509, "label": "contradiction"}
{"index": 510, "label": "contradiction"}
{"index": 511, "label": "contradiction"}
{"index": 512, "label": "entailment"}
{"index": 513, "label": "contradiction"}
{"index": 514, "label": "neutral"}
{"index": 515, "label": "neutral"}
{"index": 516, "label": "neutral"}
{"index": 517, "label": "neutral"}
{"index": 518, "label": "neutral"}
{"index": 519, "label": "contradiction"}
{"index": 520, "label": "neutral"}
{"index": 521, "label": "contradiction"}
{"index": 522, "label": "neutral"}
{"index": 523, "label": "neutral"}
{"index": 524, "label": "contradiction"}
{"index": 525, "label": "neutral"}
{"index": 526, "label": "neutral"}
{"index": 527, "label": "contradiction"}
{"index": 528, "label": "contradiction"}
{"index": 529, "label": "neutral"}
{"index": 530, "label": "neutral"}
{"index": 531, "label": "entailment"}
{"index": 532, "label": "neutral"}
{"index": 533, "label": "contradiction"}
{"index": 534, "label": "contradiction"}
{"index": 535, "label": "entailment"}
{"index": 536, "label": "neutral"}
{"index": 537, "label": "contradiction"}
{"index": 538, "label": "neutral"}
{"index": 539, "label": "entailment"}
{"index": 540, "label": "entailment"}
{"index": 541, "label": "contradiction"}
{"index": 542, "label": "entailment"}
{"index": 543, "label": "neutral"}
{"index": 544, "label": "neutral"}
{"index": 545, "label": "entailment"}
{"index": 546, "label": "entailment"}
{"index": 547, "label": "entailment"}
{"index": 548, "label": "contradiction"}
{"index": 549, "label": "entailment"}
{"index": 550, "label": "neutral"}
{"index": 551, "label": "neutral"}
{"index": 552, "label": "entailment"}
{"index": 553, "label": "contradiction"}
{"index": 554, "label": "entailment"}
{"index": 555, "label": "contradiction"}
{"index": 556, "label": "entailment"}
{"index": 557, "label": "neutral"}
{"index": 558, "label": "contradiction"}
{"index": 559, "label": "neutral"}
{"index": 560, "label": "entailment"}
{"index": 561, "label": "entailment"}
{"index": 562, "label": "neutral"}
{"index": 563, "label": "contradiction"}
{"index": 564, "label": "entailment"}
{"index": 565, "label": "contradiction"}
{"index": 566, "label": "contradiction"}
{"index": 567, "label": "neutral"}
{"index": 568, "label": "entailment"}
{"index": 569, "label": "entailment"}
{"index": 570, "label": "entailment"}
{"index": 571, "label": "contradiction"}
{"index": 572, "label": "entailment"}
{"index": 573, "label": "neutral"}
{"index": 574, "label": "neutral"}
{"index": 575, "label": "neutral"}
{"index": 576, "label": "neutral"}
{"index": 577, "label": "contradiction"}
{"index": 578, "label": "entailment"}
{"index": 579, "label": "entailment"}
{"index": 580, "label": "entailment"}
{"index": 581, "label": "contradiction"}
{"index": 582, "label": "entailment"}
{"index": 583, "label": "contradiction"}
{"index": 584, "label": "entailment"}
{"index": 585, "label": "contradiction"}
{"index": 586, "label": "entailment"}
{"index": 587, "label": "neutral"}
{"index": 588, "label": "neutral"}
{"index": 589, "label": "contradiction"}
{"index": 590, "label": "neutral"}
{"index": 591, "label": "neutral"}
{"index": 592, "label": "contradiction"}
{"index": 593, "label": "neutral"}
{"index": 594, "label": "neutral"}
{"index": 595, "label": "entailment"}
{"index": 596, "label": "neutral"}
{"index": 597, "label": "contradiction"}
{"index": 598, "label": "neutral"}
{"index": 599, "label": "contradiction"}
{"index": 600, "label": "neutral"}
{"index": 601, "label": "neutral"}
{"index": 602, "label": "contradiction"}
{"index": 603, "label": "neutral"}
{"index": 604, "label": "entailment"}
{"index": 605, "label": "neutral"}
{"index": 606, "label": "contradiction"}
{"index": 607, "label": "neutral"}
{"index": 608, "label": "neutral"}
{"index": 609, "label": "entailment"}
{"index": 610, "label": "contradiction"}
{"index": 611, "label": "neutral"}
{"index": 612, "label": "neutral"}
{"index": 613, "label": "neutral"}
{"index": 614, "label": "neutral"}
{"index": 615, "label": "entailment"}
{"index": 616, "label": "neutral"}
{"index": 617, "label": "neutral"}
{"index": 618, "label": "neutral"}
{"index": 619, "label": "entailment"}
{"index": 620, "label": "neutral"}
{"index": 621, "label": "neutral"}
{"index": 622, "label": "neutral"}
{"index": 623, "label": "neutral"}
{"index": 624, "label": "neutral"}
{"index": 625, "label": "neutral"}
{"index": 626, "label": "contradiction"}
{"index": 627, "label": "contradiction"}
{"index": 628, "label": "entailment"}
{"index": 629, "label": "neutral"}
{"index": 630, "label": "neutral"}
{"index": 631, "label": "contradiction"}
{"index": 632, "label": "contradiction"}
{"index": 633, "label": "contradiction"}
{"index": 634, "label": "neutral"}
{"index": 635, "label": "entailment"}
{"index": 636, "label": "contradiction"}
{"index": 637, "label": "neutral"}
{"index": 638, "label": "neutral"}
{"index": 639, "label": "contradiction"}
{"index": 640, "label": "contradiction"}
{"index": 641, "label": "contradiction"}
{"index": 642, "label": "neutral"}
{"index": 643, "label": "neutral"}
{"index": 644, "label": "contradiction"}
{"index": 645, "label": "neutral"}
{"index": 646, "label": "contradiction"}
{"index": 647, "label": "contradiction"}
{"index": 648, "label": "neutral"}
{"index": 649, "label": "entailment"}
{"index": 650, "label": "entailment"}
{"index": 651, "label": "contradiction"}
{"index": 652, "label": "neutral"}
{"index": 653, "label": "neutral"}
{"index": 654, "label": "neutral"}
{"index": 655, "label": "contradiction"}
{"index": 656, "label": "entailment"}
{"index": 657, "label": "neutral"}
{"index": 658, "label": "entailment"}
{"index": 659, "label": "contradiction"}
{"index": 660, "label": "entailment"}
{"index": 661, "label": "contradiction"}
{"index": 662, "label": "neutral"}
{"index": 663, "label": "entailment"}
{"index": 664, "label": "neutral"}
{"index": 665, "label": "contradiction"}
{"index": 666, "label": "contradiction"}
{"index": 667, "label": "neutral"}
{"index": 668, "label": "entailment"}
{"index": 669, "label": "contradiction"}
{"index": 670, "label": "contradiction"}
{"index": 671, "label": "contradiction"}
{"index": 672, "label": "neutral"}
{"index": 673, "label": "neutral"}
{"index": 674, "label": "neutral"}
{"index": 675, "label": "neutral"}
{"index": 676, "label": "entailment"}
{"index": 677, "label": "contradiction"}
{"index": 678, "label": "contradiction"}
{"index": 679, "label": "neutral"}
{"index": 680, "label": "entailment"}
{"index": 681, "label": "neutral"}
{"index": 682, "label": "contradiction"}
{"index": 683, "label": "neutral"}
{"index": 684, "label": "contradiction"}
{"index": 685, "label": "entailment"}
{"index": 686, "label": "neutral"}
{"index": 687, "label": "contradiction"}
{"index": 688, "label": "entailment"}
{"index": 689, "label": "contradiction"}
{"index": 690, "label": "contradiction"}
{"index": 691, "label": "neutral"}
{"index": 692, "label": "contradiction"}
{"index": 693, "label": "entailment"}
{"index": 694, "label": "contradiction"}
{"index": 695, "label": "contradiction"}
{"index": 696, "label": "entailment"}
{"index": 697, "label": "contradiction"}
{"index": 698, "label": "neutral"}
{"index": 699, "label": "neutral"}
{"index": 700, "label": "contradiction"}
{"index": 701, "label": "neutral"}
{"index": 702, "label": "neutral"}
{"index": 703, "label": "contradiction"}
{"index": 704, "label": "neutral"}
{"index": 705, "label": "entailment"}
{"index": 706, "label": "entailment"}
{"index": 707, "label": "contradiction"}
{"index": 708, "label": "neutral"}
{"index": 709, "label": "contradiction"}
{"index": 710, "label": "neutral"}
{"index": 711, "label": "entailment"}
{"index": 712, "label": "neutral"}
{"index": 713, "label": "neutral"}
{"index": 714, "label": "entailment"}
{"index": 715, "label": "neutral"}
{"index": 716, "label": "contradiction"}
{"index": 717, "label": "neutral"}
{"index": 718, "label": "entailment"}
{"index": 719, "label": "neutral"}
{"index": 720, "label": "contradiction"}
{"index": 721, "label": "contradiction"}
{"index": 722, "label": "entailment"}
{"index": 723, "label": "entailment"}
{"index": 724, "label": "neutral"}
{"index": 725, "label": "neutral"}
{"index": 726, "label": "neutral"}
{"index": 727, "label": "neutral"}
{"index": 728, "label": "entailment"}
{"index": 729, "label": "neutral"}
{"index": 730, "label": "contradiction"}
{"index": 731, "label": "entailment"}
{"index": 732, "label": "neutral"}
{"index": 733, "label": "contradiction"}
{"index": 734, "label": "contradiction"}
{"index": 735, "label": "entailment"}
{"index": 736, "label": "contradiction"}
{"index": 737, "label": "contradiction"}
{"index": 738, "label": "contradiction"}
{"index": 739, "label": "entailment"}
{"index": 740, "label": "neutral"}
{"index": 741, "label": "contradiction"}
{"index": 742, "label": "neutral"}
{"index": 743, "label": "contradiction"}
{"index": 744, "label": "contradiction"}
{"index": 745, "label": "entailment"}
{"index": 746, "label": "neutral"}
{"index": 747, "label": "contradiction"}
{"index": 748, "label": "contradiction"}
{"index": 749, "label": "neutral"}
{"index": 750, "label": "neutral"}
{"index": 751, "label": "contradiction"}
{"index": 752, "label": "neutral"}
{"index": 753, "label": "neutral"}
{"index": 754, "label": "entailment"}
{"index": 755, "label": "neutral"}
{"index": 756, "label": "neutral"}
{"index": 757, "label": "contradiction"}
{"index": 758, "label": "neutral"}
{"index": 759, "label": "neutral"}
{"index": 760, "label": "contradiction"}
{"index": 761, "label": "contradiction"}
{"index": 762, "label": "contradiction"}
{"index": 763, "label": "neutral"}
{"index": 764, "label": "contradiction"}
{"index": 765, "label": "entailment"}
{"index": 766, "label": "neutral"}
{"index": 767, "label": "neutral"}
{"index": 768, "label": "entailment"}
{"index": 769, "label": "neutral"}
{"index": 770, "label": "contradiction"}
{"index": 771, "label": "contradiction"}
{"index": 772, "label": "neutral"}
{"index": 773, "label": "contradiction"}
{"index": 774, "label": "entailment"}
{"index": 775, "label": "contradiction"}
{"index": 776, "label": "contradiction"}
{"index": 777, "label": "entailment"}
{"index": 778, "label": "contradiction"}
{"index": 779, "label": "contradiction"}
{"index": 780, "label": "neutral"}
{"index": 781, "label": "contradiction"}
{"index": 782, "label": "entailment"}
{"index": 783, "label": "contradiction"}
{"index": 784, "label": "entailment"}
{"index": 785, "label": "neutral"}
{"index": 786, "label": "entailment"}
{"index": 787, "label": "entailment"}
{"index": 788, "label": "entailment"}
{"index": 789, "label": "neutral"}
{"index": 790, "label": "entailment"}
{"index": 791, "label": "contradiction"}
{"index": 792, "label": "entailment"}
{"index": 793, "label": "contradiction"}
{"index": 794, "label": "contradiction"}
{"index": 795, "label": "contradiction"}
{"index": 796, "label": "neutral"}
{"index": 797, "label": "neutral"}
{"index": 798, "label": "neutral"}
{"index": 799, "label": "entailment"}
{"index": 800, "label": "entailment"}
{"index": 801, "label": "contradiction"}
{"index": 802, "label": "neutral"}
{"index": 803, "label": "entailment"}
{"index": 804, "label": "entailment"}
{"index": 805, "label": "neutral"}
{"index": 806, "label": "contradiction"}
{"index": 807, "label": "neutral"}
{"index": 808, "label": "contradiction"}
{"index": 809, "label": "neutral"}
{"index": 810, "label": "contradiction"}
{"index": 811, "label": "neutral"}
{"index": 812, "label": "neutral"}
{"index": 813, "label": "neutral"}
{"index": 814, "label": "entailment"}
{"index": 815, "label": "contradiction"}
{"index": 816, "label": "neutral"}
{"index": 817, "label": "entailment"}
{"index": 818, "label": "contradiction"}
{"index": 819, "label": "neutral"}
{"index": 820, "label": "entailment"}
{"index": 821, "label": "contradiction"}
{"index": 822, "label": "neutral"}
{"index": 823, "label": "contradiction"}
{"index": 824, "label": "entailment"}
{"index": 825, "label": "entailment"}
{"index": 826, "label": "neutral"}
{"index": 827, "label": "contradiction"}
{"index": 828, "label": "entailment"}
{"index": 829, "label": "neutral"}
{"index": 830, "label": "contradiction"}
{"index": 831, "label": "contradiction"}
{"index": 832, "label": "entailment"}
{"index": 833, "label": "neutral"}
{"index": 834, "label": "contradiction"}
{"index": 835, "label": "entailment"}
{"index": 836, "label": "contradiction"}
{"index": 837, "label": "neutral"}
{"index": 838, "label": "contradiction"}
{"index": 839, "label": "entailment"}
{"index": 840, "label": "entailment"}
{"index": 841, "label": "neutral"}
{"index": 842, "label": "contradiction"}
{"index": 843, "label": "neutral"}
{"index": 844, "label": "entailment"}
{"index": 845, "label": "contradiction"}
{"index": 846, "label": "neutral"}
{"index": 847, "label": "neutral"}
{"index": 848, "label": "neutral"}
{"index": 849, "label": "contradiction"}
{"index": 850, "label": "contradiction"}
{"index": 851, "label": "contradiction"}
{"index": 852, "label": "entailment"}
{"index": 853, "label": "contradiction"}
{"index": 854, "label": "neutral"}
{"index": 855, "label": "neutral"}
{"index": 856, "label": "entailment"}
{"index": 857, "label": "contradiction"}
{"index": 858, "label": "neutral"}
{"index": 859, "label": "contradiction"}
{"index": 860, "label": "entailment"}
{"index": 861, "label": "neutral"}
{"index": 862, "label": "neutral"}
{"index": 863, "label": "neutral"}
{"index": 864, "label": "neutral"}
{"index": 865, "label": "neutral"}
{"index": 866, "label": "neutral"}
{"index": 867, "label": "contradiction"}
{"index": 868, "label": "contradiction"}
{"index": 869, "label": "neutral"}
{"index": 870, "label": "contradiction"}
{"index": 871, "label": "neutral"}
{"index": 872, "label": "entailment"}
{"index": 873, "label": "contradiction"}
{"index": 874, "label": "neutral"}
{"index": 875, "label": "neutral"}
{"index": 876, "label": "contradiction"}
{"index": 877, "label": "entailment"}
{"index": 878, "label": "neutral"}
{"index": 879, "label": "neutral"}
{"index": 880, "label": "entailment"}
{"index": 881, "label": "contradiction"}
{"index": 882, "label": "contradiction"}
{"index": 883, "label": "neutral"}
{"index": 884, "label": "neutral"}
{"index": 885, "label": "contradiction"}
{"index": 886, "label": "entailment"}
{"index": 887, "label": "neutral"}
{"index": 888, "label": "contradiction"}
{"index": 889, "label": "neutral"}
{"index": 890, "label": "contradiction"}
{"index": 891, "label": "neutral"}
{"index": 892, "label": "neutral"}
{"index": 893, "label": "neutral"}
{"index": 894, "label": "contradiction"}
{"index": 895, "label": "entailment"}
{"index": 896, "label": "contradiction"}
{"index": 897, "label": "contradiction"}
{"index": 898, "label": "entailment"}
{"index": 899, "label": "neutral"}
{"index": 900, "label": "contradiction"}
{"index": 901, "label": "contradiction"}
{"index": 902, "label": "neutral"}
{"index": 903, "label": "contradiction"}
{"index": 904, "label": "neutral"}
{"index": 905, "label": "entailment"}
{"index": 906, "label": "contradiction"}
{"index": 907, "label": "neutral"}
{"index": 908, "label": "neutral"}
{"index": 909, "label": "neutral"}
{"index": 910, "label": "contradiction"}
{"index": 911, "label": "entailment"}
{"index": 912, "label": "contradiction"}
{"index": 913, "label": "entailment"}
{"index": 914, "label": "neutral"}
{"index": 915, "label": "neutral"}
{"index": 916, "label": "entailment"}
{"index": 917, "label": "contradiction"}
{"index": 918, "label": "neutral"}
{"index": 919, "label": "entailment"}
{"index": 920, "label": "contradiction"}
{"index": 921, "label": "entailment"}
{"index": 922, "label": "contradiction"}
{"index": 923, "label": "neutral"}
{"index": 924, "label": "neutral"}
{"index": 925, "label": "entailment"}
{"index": 926, "label": "contradiction"}
{"index": 927, "label": "neutral"}
{"index": 928, "label": "entailment"}
{"index": 929, "label": "neutral"}
{"index": 930, "label": "contradiction"}
{"index": 931, "label": "neutral"}
{"index": 932, "label": "neutral"}
{"index": 933, "label": "contradiction"}
{"index": 934, "label": "entailment"}
{"index": 935, "label": "neutral"}
{"index": 936, "label": "neutral"}
{"index": 937, "label": "neutral"}
{"index": 938, "label": "contradiction"}
{"index": 939, "label": "contradiction"}
{"index": 940, "label": "contradiction"}
{"index": 941, "label": "neutral"}
{"index": 942, "label": "neutral"}
{"index": 943, "label": "entailment"}
{"index": 944, "label": "contradiction"}
{"index": 945, "label": "entailment"}
{"index": 946, "label": "neutral"}
{"index": 947, "label": "contradiction"}
{"index": 948, "label": "contradiction"}
{"index": 949, "label": "neutral"}
{"index": 950, "label": "contradiction"}
{"index": 951, "label": "contradiction"}
{"index": 952, "label": "contradiction"}
{"index": 953, "label": "contradiction"}
{"index": 954, "label": "contradiction"}
{"index": 955, "label": "neutral"}
{"index": 956, "label": "entailment"}
{"index": 957, "label": "contradiction"}
{"index": 958, "label": "contradiction"}
{"index": 959, "label": "neutral"}
{"index": 960, "label": "neutral"}
{"index": 961, "label": "entailment"}
{"index": 962, "label": "entailment"}
{"index": 963, "label": "entailment"}
{"index": 964, "label": "neutral"}
{"index": 965, "label": "neutral"}
{"index": 966, "label": "contradiction"}
{"index": 967, "label": "neutral"}
{"index": 968, "label": "neutral"}
{"index": 969, "label": "neutral"}
{"index": 970, "label": "neutral"}
{"index": 971, "label": "contradiction"}
{"index": 972, "label": "contradiction"}
{"index": 973, "label": "neutral"}
{"index": 974, "label": "neutral"}
{"index": 975, "label": "contradiction"}
{"index": 976, "label": "entailment"}
{"index": 977, "label": "contradiction"}
{"index": 978, "label": "neutral"}
{"index": 979, "label": "contradiction"}
{"index": 980, "label": "neutral"}
{"index": 981, "label": "neutral"}
{"index": 982, "label": "entailment"}
{"index": 983, "label": "contradiction"}
{"index": 984, "label": "neutral"}
{"index": 985, "label": "contradiction"}
{"index": 986, "label": "contradiction"}
{"index": 987, "label": "entailment"}
{"index": 988, "label": "neutral"}
{"index": 989, "label": "entailment"}
{"index": 990, "label": "entailment"}
{"index": 991, "label": "contradiction"}
{"index": 992, "label": "neutral"}
{"index": 993, "label": "neutral"}
{"index": 994, "label": "neutral"}
{"index": 995, "label": "contradiction"}
{"index": 996, "label": "contradiction"}
{"index": 997, "label": "neutral"}
{"index": 998, "label": "entailment"}
{"index": 999, "label": "contradiction"}