-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew.predict
3578 lines (3578 loc) · 364 KB
/
new.predict
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
{"argmax": 0, "probs": [0.5545924305915833, 0.4454074800014496], "idx": 0, "sample_id": "52912_2_1"}
{"argmax": 0, "probs": [0.5566093921661377, 0.4433906674385071], "idx": 1, "sample_id": "52912_4_1"}
{"argmax": 0, "probs": [0.5557762980461121, 0.4442237913608551], "idx": 2, "sample_id": "52912_5_1"}
{"argmax": 0, "probs": [0.5559051632881165, 0.44409483671188354], "idx": 3, "sample_id": "52912_6_1"}
{"argmax": 0, "probs": [0.5551913976669312, 0.4448085427284241], "idx": 4, "sample_id": "52912_7_1"}
{"argmax": 0, "probs": [0.5549410581588745, 0.4450589716434479], "idx": 5, "sample_id": "52912_8_1"}
{"argmax": 0, "probs": [0.5545572638511658, 0.44544273614883423], "idx": 6, "sample_id": "52912_9_1"}
{"argmax": 0, "probs": [0.5554909110069275, 0.4445090889930725], "idx": 7, "sample_id": "52912_10_1"}
{"argmax": 0, "probs": [0.5548705458641052, 0.44512948393821716], "idx": 8, "sample_id": "52912_11_1"}
{"argmax": 0, "probs": [0.5547720789909363, 0.44522789120674133], "idx": 9, "sample_id": "52912_12_1"}
{"argmax": 0, "probs": [0.5541273951530457, 0.44587260484695435], "idx": 10, "sample_id": "52912_14_1"}
{"argmax": 0, "probs": [0.5550156831741333, 0.4449843168258667], "idx": 11, "sample_id": "52912_15_1"}
{"argmax": 0, "probs": [0.5554999709129333, 0.4445000886917114], "idx": 12, "sample_id": "52912_16_1"}
{"argmax": 0, "probs": [0.5551666021347046, 0.4448334574699402], "idx": 13, "sample_id": "52912_17_1"}
{"argmax": 0, "probs": [0.5563476085662842, 0.4436524510383606], "idx": 14, "sample_id": "52912_18_1"}
{"argmax": 0, "probs": [0.5542669892311096, 0.445732980966568], "idx": 15, "sample_id": "52912_19_1"}
{"argmax": 0, "probs": [0.5544492602348328, 0.44555073976516724], "idx": 0, "sample_id": "52912_20_1"}
{"argmax": 0, "probs": [0.5557933449745178, 0.44420671463012695], "idx": 1, "sample_id": "52912_22_1"}
{"argmax": 0, "probs": [0.5557764768600464, 0.4442234933376312], "idx": 2, "sample_id": "52912_23_1"}
{"argmax": 0, "probs": [0.5543464422225952, 0.4456534683704376], "idx": 3, "sample_id": "52912_24_1"}
{"argmax": 0, "probs": [0.554615318775177, 0.4453846216201782], "idx": 4, "sample_id": "52912_27_1"}
{"argmax": 0, "probs": [0.554627001285553, 0.445372998714447], "idx": 5, "sample_id": "52912_28_1"}
{"argmax": 0, "probs": [0.5546628832817078, 0.44533708691596985], "idx": 6, "sample_id": "52912_29_1"}
{"argmax": 0, "probs": [0.5543440580368042, 0.4456560015678406], "idx": 7, "sample_id": "52912_30_1"}
{"argmax": 0, "probs": [0.5542511940002441, 0.44574886560440063], "idx": 8, "sample_id": "52912_31_1"}
{"argmax": 0, "probs": [0.554627001285553, 0.4453730285167694], "idx": 9, "sample_id": "52912_33_1"}
{"argmax": 0, "probs": [0.5561420917510986, 0.44385790824890137], "idx": 10, "sample_id": "52912_34_1"}
{"argmax": 0, "probs": [0.5548586845397949, 0.44514134526252747], "idx": 11, "sample_id": "52912_35_1"}
{"argmax": 0, "probs": [0.5543903112411499, 0.4456096589565277], "idx": 12, "sample_id": "52912_37_1"}
{"argmax": 0, "probs": [0.5556573271751404, 0.4443426728248596], "idx": 13, "sample_id": "52912_40_1"}
{"argmax": 0, "probs": [0.5549291372299194, 0.44507086277008057], "idx": 14, "sample_id": "52912_45_1"}
{"argmax": 0, "probs": [0.5547786355018616, 0.44522133469581604], "idx": 15, "sample_id": "52912_46_1"}
{"argmax": 0, "probs": [0.5547716617584229, 0.44522836804389954], "idx": 0, "sample_id": "52912_48_1"}
{"argmax": 0, "probs": [0.5547144412994385, 0.44528549909591675], "idx": 1, "sample_id": "52912_49_1"}
{"argmax": 0, "probs": [0.554928719997406, 0.4450712502002716], "idx": 2, "sample_id": "52912_50_1"}
{"argmax": 0, "probs": [0.5553528070449829, 0.4446471929550171], "idx": 3, "sample_id": "52912_51_1"}
{"argmax": 0, "probs": [0.5544049143791199, 0.4455950856208801], "idx": 4, "sample_id": "52912_52_1"}
{"argmax": 0, "probs": [0.554976761341095, 0.44502320885658264], "idx": 5, "sample_id": "52912_53_1"}
{"argmax": 0, "probs": [0.5549987554550171, 0.4450012445449829], "idx": 6, "sample_id": "52912_56_1"}
{"argmax": 0, "probs": [0.5545461773872375, 0.4454538822174072], "idx": 7, "sample_id": "52912_58_1"}
{"argmax": 0, "probs": [0.5548123717308044, 0.44518762826919556], "idx": 8, "sample_id": "52912_59_1"}
{"argmax": 0, "probs": [0.5567000508308411, 0.4432999789714813], "idx": 9, "sample_id": "52912_61_1"}
{"argmax": 0, "probs": [0.5545717477798462, 0.4454282522201538], "idx": 10, "sample_id": "52912_62_1"}
{"argmax": 0, "probs": [0.5562816262245178, 0.44371843338012695], "idx": 11, "sample_id": "52912_63_1"}
{"argmax": 0, "probs": [0.5542104840278625, 0.44578951597213745], "idx": 12, "sample_id": "52912_64_1"}
{"argmax": 0, "probs": [0.5544574856758118, 0.4455425441265106], "idx": 13, "sample_id": "52912_65_1"}
{"argmax": 0, "probs": [0.5551872253417969, 0.4448128044605255], "idx": 14, "sample_id": "52912_66_1"}
{"argmax": 0, "probs": [0.5565494894981384, 0.4434504508972168], "idx": 15, "sample_id": "52912_67_1"}
{"argmax": 0, "probs": [0.5552311539649963, 0.4447687864303589], "idx": 0, "sample_id": "52912_68_1"}
{"argmax": 0, "probs": [0.5561210513114929, 0.4438788890838623], "idx": 1, "sample_id": "52912_69_1"}
{"argmax": 0, "probs": [0.5550290942192078, 0.4449708163738251], "idx": 2, "sample_id": "52912_71_1"}
{"argmax": 0, "probs": [0.5567329525947571, 0.4432670772075653], "idx": 3, "sample_id": "52912_72_1"}
{"argmax": 0, "probs": [0.5542896389961243, 0.44571036100387573], "idx": 4, "sample_id": "52912_73_1"}
{"argmax": 0, "probs": [0.5544477105140686, 0.4455522894859314], "idx": 5, "sample_id": "52912_74_1"}
{"argmax": 0, "probs": [0.556463360786438, 0.4435366094112396], "idx": 6, "sample_id": "52912_75_1"}
{"argmax": 0, "probs": [0.5548517107963562, 0.4451482594013214], "idx": 7, "sample_id": "52912_76_1"}
{"argmax": 0, "probs": [0.5544903874397278, 0.445509672164917], "idx": 8, "sample_id": "52912_77_1"}
{"argmax": 0, "probs": [0.5537394881248474, 0.4462604820728302], "idx": 9, "sample_id": "52912_79_1"}
{"argmax": 0, "probs": [0.555376410484314, 0.44462358951568604], "idx": 10, "sample_id": "52912_80_1"}
{"argmax": 0, "probs": [0.5547921657562256, 0.4452078640460968], "idx": 11, "sample_id": "52912_81_1"}
{"argmax": 0, "probs": [0.5557900071144104, 0.4442099928855896], "idx": 12, "sample_id": "52912_82_1"}
{"argmax": 0, "probs": [0.55644291639328, 0.44355711340904236], "idx": 13, "sample_id": "52912_84_1"}
{"argmax": 0, "probs": [0.5550364851951599, 0.44496357440948486], "idx": 14, "sample_id": "52912_85_1"}
{"argmax": 0, "probs": [0.5565159916877747, 0.44348397850990295], "idx": 15, "sample_id": "52912_86_1"}
{"argmax": 0, "probs": [0.5549622178077698, 0.44503775238990784], "idx": 0, "sample_id": "52912_87_1"}
{"argmax": 0, "probs": [0.5546899437904358, 0.445310115814209], "idx": 1, "sample_id": "52912_88_1"}
{"argmax": 0, "probs": [0.5547205209732056, 0.44527944922447205], "idx": 2, "sample_id": "52912_90_1"}
{"argmax": 0, "probs": [0.5548040270805359, 0.4451960027217865], "idx": 3, "sample_id": "52912_94_1"}
{"argmax": 0, "probs": [0.5554115772247314, 0.4445883631706238], "idx": 4, "sample_id": "52912_97_1"}
{"argmax": 0, "probs": [0.5557571649551392, 0.44424283504486084], "idx": 5, "sample_id": "52912_98_1"}
{"argmax": 0, "probs": [0.5556387305259705, 0.44436129927635193], "idx": 6, "sample_id": "52912_100_1"}
{"argmax": 0, "probs": [0.5543805360794067, 0.44561949372291565], "idx": 7, "sample_id": "52912_103_1"}
{"argmax": 0, "probs": [0.5558473467826843, 0.4441526234149933], "idx": 8, "sample_id": "52912_104_1"}
{"argmax": 0, "probs": [0.554084300994873, 0.44591566920280457], "idx": 9, "sample_id": "52912_105_1"}
{"argmax": 0, "probs": [0.5553804039955139, 0.4446195363998413], "idx": 10, "sample_id": "52912_106_1"}
{"argmax": 0, "probs": [0.555002748966217, 0.44499722123146057], "idx": 11, "sample_id": "52912_107_1"}
{"argmax": 0, "probs": [0.5541775226593018, 0.445822536945343], "idx": 12, "sample_id": "52912_108_1"}
{"argmax": 0, "probs": [0.5553916096687317, 0.4446084499359131], "idx": 13, "sample_id": "52912_109_1"}
{"argmax": 0, "probs": [0.5547550916671753, 0.4452449083328247], "idx": 14, "sample_id": "52912_110_1"}
{"argmax": 0, "probs": [0.5550088286399841, 0.4449911117553711], "idx": 15, "sample_id": "52912_111_1"}
{"argmax": 0, "probs": [0.554297685623169, 0.44570228457450867], "idx": 0, "sample_id": "52912_113_1"}
{"argmax": 0, "probs": [0.554453432559967, 0.4455464780330658], "idx": 1, "sample_id": "52912_114_1"}
{"argmax": 0, "probs": [0.5545565485954285, 0.44544342160224915], "idx": 2, "sample_id": "52912_115_1"}
{"argmax": 0, "probs": [0.5559549331665039, 0.4440450966358185], "idx": 3, "sample_id": "52912_116_1"}
{"argmax": 0, "probs": [0.5559870600700378, 0.44401296973228455], "idx": 4, "sample_id": "52912_117_1"}
{"argmax": 0, "probs": [0.5541291236877441, 0.44587093591690063], "idx": 5, "sample_id": "52912_118_1"}
{"argmax": 0, "probs": [0.5560092926025391, 0.44399067759513855], "idx": 6, "sample_id": "52912_119_1"}
{"argmax": 0, "probs": [0.5553253293037415, 0.44467461109161377], "idx": 7, "sample_id": "52912_120_1"}
{"argmax": 0, "probs": [0.5554983019828796, 0.44450172781944275], "idx": 8, "sample_id": "52912_121_1"}
{"argmax": 0, "probs": [0.5550786852836609, 0.44492125511169434], "idx": 9, "sample_id": "52912_122_1"}
{"argmax": 0, "probs": [0.5548158288002014, 0.44518423080444336], "idx": 10, "sample_id": "52912_123_1"}
{"argmax": 0, "probs": [0.5539090037345886, 0.44609108567237854], "idx": 11, "sample_id": "52912_124_1"}
{"argmax": 0, "probs": [0.5546258687973022, 0.4453740417957306], "idx": 12, "sample_id": "52912_125_1"}
{"argmax": 0, "probs": [0.5547230243682861, 0.44527697563171387], "idx": 13, "sample_id": "52912_126_1"}
{"argmax": 0, "probs": [0.553878903388977, 0.4461211562156677], "idx": 14, "sample_id": "52912_127_1"}
{"argmax": 0, "probs": [0.5559208989143372, 0.4440791606903076], "idx": 15, "sample_id": "52912_128_1"}
{"argmax": 0, "probs": [0.5549307465553284, 0.4450693428516388], "idx": 0, "sample_id": "52912_130_1"}
{"argmax": 0, "probs": [0.5548529624938965, 0.4451470673084259], "idx": 1, "sample_id": "52912_131_1"}
{"argmax": 0, "probs": [0.5546556711196899, 0.44534435868263245], "idx": 2, "sample_id": "52912_132_1"}
{"argmax": 0, "probs": [0.554522693157196, 0.44547730684280396], "idx": 3, "sample_id": "52912_133_1"}
{"argmax": 0, "probs": [0.5542744398117065, 0.44572556018829346], "idx": 4, "sample_id": "52912_134_1"}
{"argmax": 0, "probs": [0.5560165047645569, 0.44398343563079834], "idx": 5, "sample_id": "52912_135_1"}
{"argmax": 0, "probs": [0.5551663637161255, 0.4448336660861969], "idx": 6, "sample_id": "52912_136_1"}
{"argmax": 0, "probs": [0.5556464791297913, 0.44435355067253113], "idx": 7, "sample_id": "52912_138_1"}
{"argmax": 0, "probs": [0.5541620254516602, 0.44583791494369507], "idx": 8, "sample_id": "52912_139_1"}
{"argmax": 0, "probs": [0.5565153956413269, 0.44348466396331787], "idx": 9, "sample_id": "52912_140_1"}
{"argmax": 0, "probs": [0.5549630522727966, 0.44503700733184814], "idx": 10, "sample_id": "52912_143_1"}
{"argmax": 0, "probs": [0.5545689463615417, 0.445431113243103], "idx": 11, "sample_id": "52912_144_1"}
{"argmax": 0, "probs": [0.5539702773094177, 0.44602975249290466], "idx": 12, "sample_id": "52912_145_1"}
{"argmax": 0, "probs": [0.5547834634780884, 0.4452165365219116], "idx": 13, "sample_id": "52912_146_1"}
{"argmax": 0, "probs": [0.5545124411582947, 0.44548746943473816], "idx": 14, "sample_id": "52912_147_1"}
{"argmax": 0, "probs": [0.5540331602096558, 0.4459668695926666], "idx": 15, "sample_id": "52912_148_1"}
{"argmax": 0, "probs": [0.5545222759246826, 0.445477694272995], "idx": 0, "sample_id": "52912_150_1"}
{"argmax": 0, "probs": [0.5550956130027771, 0.4449043869972229], "idx": 1, "sample_id": "52912_151_1"}
{"argmax": 0, "probs": [0.5545696020126343, 0.4454303979873657], "idx": 2, "sample_id": "52912_152_1"}
{"argmax": 0, "probs": [0.55463707447052, 0.44536301493644714], "idx": 3, "sample_id": "52912_153_1"}
{"argmax": 0, "probs": [0.5557572245597839, 0.44424280524253845], "idx": 4, "sample_id": "52912_154_1"}
{"argmax": 0, "probs": [0.555136501789093, 0.44486352801322937], "idx": 5, "sample_id": "52912_155_1"}
{"argmax": 0, "probs": [0.554668128490448, 0.4453318417072296], "idx": 6, "sample_id": "52912_157_1"}
{"argmax": 0, "probs": [0.5549019575119019, 0.44509804248809814], "idx": 7, "sample_id": "52912_158_1"}
{"argmax": 0, "probs": [0.5548166036605835, 0.4451834261417389], "idx": 8, "sample_id": "52912_159_1"}
{"argmax": 0, "probs": [0.554943859577179, 0.44505614042282104], "idx": 9, "sample_id": "52912_160_1"}
{"argmax": 0, "probs": [0.5551619529724121, 0.4448380768299103], "idx": 10, "sample_id": "52912_161_1"}
{"argmax": 0, "probs": [0.5550184845924377, 0.44498157501220703], "idx": 11, "sample_id": "52912_164_1"}
{"argmax": 0, "probs": [0.5554192066192627, 0.4445807933807373], "idx": 12, "sample_id": "52912_165_1"}
{"argmax": 0, "probs": [0.555266797542572, 0.44473323225975037], "idx": 13, "sample_id": "52912_166_1"}
{"argmax": 0, "probs": [0.5546384453773499, 0.44536158442497253], "idx": 14, "sample_id": "52912_167_1"}
{"argmax": 0, "probs": [0.554702877998352, 0.44529712200164795], "idx": 15, "sample_id": "52912_169_1"}
{"argmax": 0, "probs": [0.5543056726455688, 0.4456943869590759], "idx": 0, "sample_id": "52912_170_1"}
{"argmax": 0, "probs": [0.5545478463172913, 0.4454520642757416], "idx": 1, "sample_id": "52912_173_1"}
{"argmax": 0, "probs": [0.5545654892921448, 0.4454345405101776], "idx": 2, "sample_id": "52912_175_1"}
{"argmax": 0, "probs": [0.5558083653450012, 0.4441916048526764], "idx": 3, "sample_id": "52912_176_1"}
{"argmax": 0, "probs": [0.5551521182060242, 0.44484788179397583], "idx": 4, "sample_id": "52912_178_1"}
{"argmax": 0, "probs": [0.5562463998794556, 0.4437536895275116], "idx": 5, "sample_id": "52912_179_1"}
{"argmax": 0, "probs": [0.5550673007965088, 0.4449326694011688], "idx": 6, "sample_id": "52912_180_1"}
{"argmax": 0, "probs": [0.5547024011611938, 0.44529762864112854], "idx": 7, "sample_id": "52912_181_1"}
{"argmax": 0, "probs": [0.5564138293266296, 0.44358617067337036], "idx": 8, "sample_id": "52912_182_1"}
{"argmax": 0, "probs": [0.5563737154006958, 0.4436262547969818], "idx": 9, "sample_id": "52912_183_1"}
{"argmax": 0, "probs": [0.5544804334640503, 0.4455195367336273], "idx": 10, "sample_id": "52912_185_1"}
{"argmax": 0, "probs": [0.5547196269035339, 0.4452803432941437], "idx": 11, "sample_id": "52912_186_1"}
{"argmax": 0, "probs": [0.5546019077301025, 0.4453980624675751], "idx": 12, "sample_id": "52912_189_1"}
{"argmax": 0, "probs": [0.5560670495033264, 0.44393301010131836], "idx": 13, "sample_id": "52912_191_1"}
{"argmax": 0, "probs": [0.5555484890937805, 0.4444515109062195], "idx": 14, "sample_id": "52912_192_1"}
{"argmax": 0, "probs": [0.5557661056518555, 0.44423389434814453], "idx": 15, "sample_id": "52912_193_1"}
{"argmax": 0, "probs": [0.5550537705421448, 0.44494619965553284], "idx": 0, "sample_id": "52912_194_1"}
{"argmax": 0, "probs": [0.5540120601654053, 0.4459879398345947], "idx": 1, "sample_id": "52912_195_1"}
{"argmax": 0, "probs": [0.5548266768455505, 0.44517335295677185], "idx": 2, "sample_id": "52912_196_1"}
{"argmax": 0, "probs": [0.554693341255188, 0.445306658744812], "idx": 3, "sample_id": "52912_197_1"}
{"argmax": 0, "probs": [0.5540711283683777, 0.4459288418292999], "idx": 4, "sample_id": "52912_198_1"}
{"argmax": 0, "probs": [0.5541245341300964, 0.4458753764629364], "idx": 5, "sample_id": "52912_200_1"}
{"argmax": 0, "probs": [0.5545907020568848, 0.44540929794311523], "idx": 6, "sample_id": "52912_201_1"}
{"argmax": 0, "probs": [0.5543702244758606, 0.4456298053264618], "idx": 7, "sample_id": "52912_202_1"}
{"argmax": 0, "probs": [0.5548487305641174, 0.44515132904052734], "idx": 8, "sample_id": "52912_205_1"}
{"argmax": 0, "probs": [0.5541827082633972, 0.44581735134124756], "idx": 9, "sample_id": "52912_206_1"}
{"argmax": 0, "probs": [0.554421067237854, 0.4455789625644684], "idx": 10, "sample_id": "52912_208_1"}
{"argmax": 0, "probs": [0.5553140044212341, 0.4446859657764435], "idx": 11, "sample_id": "52912_209_1"}
{"argmax": 0, "probs": [0.5556150078773499, 0.44438493251800537], "idx": 12, "sample_id": "52912_210_1"}
{"argmax": 0, "probs": [0.554703414440155, 0.44529661536216736], "idx": 13, "sample_id": "52912_211_1"}
{"argmax": 0, "probs": [0.5562677383422852, 0.4437321722507477], "idx": 14, "sample_id": "52912_212_1"}
{"argmax": 0, "probs": [0.5551560521125793, 0.4448438882827759], "idx": 15, "sample_id": "52912_213_1"}
{"argmax": 0, "probs": [0.5558326244354248, 0.4441673755645752], "idx": 0, "sample_id": "52912_214_1"}
{"argmax": 0, "probs": [0.5552998781204224, 0.4447000324726105], "idx": 1, "sample_id": "52912_215_1"}
{"argmax": 0, "probs": [0.555289089679718, 0.44471094012260437], "idx": 2, "sample_id": "52912_216_1"}
{"argmax": 0, "probs": [0.5547244548797607, 0.44527551531791687], "idx": 3, "sample_id": "52912_217_1"}
{"argmax": 0, "probs": [0.5551862120628357, 0.4448137581348419], "idx": 4, "sample_id": "52912_218_1"}
{"argmax": 0, "probs": [0.5551233887672424, 0.44487667083740234], "idx": 5, "sample_id": "52912_219_1"}
{"argmax": 0, "probs": [0.5545564293861389, 0.4454435408115387], "idx": 6, "sample_id": "52912_220_1"}
{"argmax": 0, "probs": [0.5543096661567688, 0.4456903636455536], "idx": 7, "sample_id": "52912_222_1"}
{"argmax": 0, "probs": [0.5553420186042786, 0.4446580111980438], "idx": 8, "sample_id": "52912_223_1"}
{"argmax": 0, "probs": [0.5536707043647766, 0.4463293254375458], "idx": 9, "sample_id": "52912_224_1"}
{"argmax": 0, "probs": [0.5547298192977905, 0.4452701210975647], "idx": 10, "sample_id": "52912_226_1"}
{"argmax": 0, "probs": [0.5544647574424744, 0.445535272359848], "idx": 11, "sample_id": "52912_227_1"}
{"argmax": 0, "probs": [0.5545039772987366, 0.4454960525035858], "idx": 12, "sample_id": "52912_228_1"}
{"argmax": 0, "probs": [0.555619478225708, 0.44438058137893677], "idx": 13, "sample_id": "52912_229_1"}
{"argmax": 0, "probs": [0.5550515055656433, 0.4449484646320343], "idx": 14, "sample_id": "52912_230_1"}
{"argmax": 0, "probs": [0.5545568466186523, 0.44544312357902527], "idx": 15, "sample_id": "52912_231_1"}
{"argmax": 0, "probs": [0.5546866655349731, 0.44531333446502686], "idx": 0, "sample_id": "52912_232_1"}
{"argmax": 0, "probs": [0.5557619333267212, 0.4442381262779236], "idx": 1, "sample_id": "52912_233_1"}
{"argmax": 0, "probs": [0.5554739236831665, 0.4445260763168335], "idx": 2, "sample_id": "52912_234_1"}
{"argmax": 0, "probs": [0.5552549362182617, 0.4447450637817383], "idx": 3, "sample_id": "52912_235_1"}
{"argmax": 0, "probs": [0.5545177459716797, 0.4454822540283203], "idx": 4, "sample_id": "52912_237_1"}
{"argmax": 0, "probs": [0.5559182167053223, 0.4440818130970001], "idx": 5, "sample_id": "52912_238_1"}
{"argmax": 0, "probs": [0.5543520450592041, 0.4456478953361511], "idx": 6, "sample_id": "52912_239_1"}
{"argmax": 0, "probs": [0.5540251135826111, 0.4459749162197113], "idx": 7, "sample_id": "52912_240_1"}
{"argmax": 0, "probs": [0.5549280643463135, 0.4450719356536865], "idx": 8, "sample_id": "52912_241_1"}
{"argmax": 0, "probs": [0.5541750192642212, 0.4458249807357788], "idx": 9, "sample_id": "52912_242_1"}
{"argmax": 0, "probs": [0.5548922419548035, 0.44510769844055176], "idx": 10, "sample_id": "52912_243_1"}
{"argmax": 0, "probs": [0.5554368495941162, 0.4445631504058838], "idx": 11, "sample_id": "52912_245_1"}
{"argmax": 0, "probs": [0.5553730726242065, 0.44462698698043823], "idx": 12, "sample_id": "52912_246_1"}
{"argmax": 0, "probs": [0.5546984672546387, 0.4453016221523285], "idx": 13, "sample_id": "52912_247_1"}
{"argmax": 0, "probs": [0.555291473865509, 0.44470861554145813], "idx": 14, "sample_id": "52912_248_1"}
{"argmax": 0, "probs": [0.5540066361427307, 0.4459933042526245], "idx": 15, "sample_id": "52912_249_1"}
{"argmax": 0, "probs": [0.5556496381759644, 0.44435039162635803], "idx": 0, "sample_id": "52912_251_1"}
{"argmax": 0, "probs": [0.5544706583023071, 0.4455292820930481], "idx": 1, "sample_id": "52912_252_1"}
{"argmax": 0, "probs": [0.5551953315734863, 0.44480466842651367], "idx": 2, "sample_id": "52912_253_1"}
{"argmax": 0, "probs": [0.5539960861206055, 0.4460039436817169], "idx": 3, "sample_id": "52912_254_1"}
{"argmax": 0, "probs": [0.5542030334472656, 0.445796936750412], "idx": 4, "sample_id": "52912_255_1"}
{"argmax": 0, "probs": [0.5545978546142578, 0.4454020857810974], "idx": 5, "sample_id": "52912_256_1"}
{"argmax": 0, "probs": [0.5549966096878052, 0.445003479719162], "idx": 6, "sample_id": "52912_258_1"}
{"argmax": 0, "probs": [0.5550247430801392, 0.44497525691986084], "idx": 7, "sample_id": "52912_260_1"}
{"argmax": 0, "probs": [0.5554230809211731, 0.4445769190788269], "idx": 8, "sample_id": "52912_261_1"}
{"argmax": 0, "probs": [0.5555070042610168, 0.44449299573898315], "idx": 9, "sample_id": "52912_262_1"}
{"argmax": 0, "probs": [0.5544366836547852, 0.44556331634521484], "idx": 10, "sample_id": "52912_263_1"}
{"argmax": 0, "probs": [0.5545836687088013, 0.44541627168655396], "idx": 11, "sample_id": "52912_265_1"}
{"argmax": 0, "probs": [0.5545952320098877, 0.4454047679901123], "idx": 12, "sample_id": "52912_266_1"}
{"argmax": 0, "probs": [0.5544822812080383, 0.44551771879196167], "idx": 13, "sample_id": "52912_268_1"}
{"argmax": 0, "probs": [0.5565082430839539, 0.44349178671836853], "idx": 14, "sample_id": "52912_269_1"}
{"argmax": 0, "probs": [0.5547647476196289, 0.4452352523803711], "idx": 15, "sample_id": "52912_270_1"}
{"argmax": 0, "probs": [0.5547788739204407, 0.4452211856842041], "idx": 0, "sample_id": "52912_271_1"}
{"argmax": 0, "probs": [0.5557762384414673, 0.4442237615585327], "idx": 1, "sample_id": "52912_272_1"}
{"argmax": 0, "probs": [0.5540955066680908, 0.44590455293655396], "idx": 2, "sample_id": "52912_273_1"}
{"argmax": 0, "probs": [0.5541692972183228, 0.44583070278167725], "idx": 3, "sample_id": "52912_276_1"}
{"argmax": 0, "probs": [0.5560803413391113, 0.4439195692539215], "idx": 4, "sample_id": "52912_277_1"}
{"argmax": 0, "probs": [0.5567521452903748, 0.44324782490730286], "idx": 5, "sample_id": "52912_278_1"}
{"argmax": 0, "probs": [0.5540947914123535, 0.44590526819229126], "idx": 6, "sample_id": "52912_279_1"}
{"argmax": 0, "probs": [0.5546213388442993, 0.4453786611557007], "idx": 7, "sample_id": "52912_280_1"}
{"argmax": 0, "probs": [0.5542311072349548, 0.44576895236968994], "idx": 8, "sample_id": "52912_281_1"}
{"argmax": 0, "probs": [0.5536597967147827, 0.4463402032852173], "idx": 9, "sample_id": "52912_282_1"}
{"argmax": 0, "probs": [0.5548239350318909, 0.4451761245727539], "idx": 10, "sample_id": "52912_283_1"}
{"argmax": 0, "probs": [0.5541434288024902, 0.44585657119750977], "idx": 11, "sample_id": "52912_284_1"}
{"argmax": 0, "probs": [0.5550572276115417, 0.44494277238845825], "idx": 12, "sample_id": "52912_285_1"}
{"argmax": 0, "probs": [0.5548620223999023, 0.44513794779777527], "idx": 13, "sample_id": "52912_286_1"}
{"argmax": 0, "probs": [0.5545067191123962, 0.44549325108528137], "idx": 14, "sample_id": "52912_287_1"}
{"argmax": 0, "probs": [0.5547150373458862, 0.4452849328517914], "idx": 15, "sample_id": "52912_288_1"}
{"argmax": 0, "probs": [0.5547398328781128, 0.4452601671218872], "idx": 0, "sample_id": "52912_292_1"}
{"argmax": 0, "probs": [0.5545755624771118, 0.4454244077205658], "idx": 1, "sample_id": "52912_293_1"}
{"argmax": 0, "probs": [0.5542436838150024, 0.44575631618499756], "idx": 2, "sample_id": "52912_294_1"}
{"argmax": 0, "probs": [0.5556913614273071, 0.4443085789680481], "idx": 3, "sample_id": "52912_295_1"}
{"argmax": 0, "probs": [0.5556961297988892, 0.44430381059646606], "idx": 4, "sample_id": "52912_297_1"}
{"argmax": 0, "probs": [0.5555186867713928, 0.4444812536239624], "idx": 5, "sample_id": "52912_298_1"}
{"argmax": 0, "probs": [0.5546336770057678, 0.4453663229942322], "idx": 6, "sample_id": "52912_300_1"}
{"argmax": 0, "probs": [0.5546343922615051, 0.4453655779361725], "idx": 7, "sample_id": "52912_301_1"}
{"argmax": 0, "probs": [0.5552288889884949, 0.44477108120918274], "idx": 8, "sample_id": "52912_303_1"}
{"argmax": 0, "probs": [0.5551124811172485, 0.4448874592781067], "idx": 9, "sample_id": "52912_305_1"}
{"argmax": 0, "probs": [0.5548246502876282, 0.4451753497123718], "idx": 10, "sample_id": "52912_309_1"}
{"argmax": 0, "probs": [0.5549879670143127, 0.4450119733810425], "idx": 11, "sample_id": "52912_310_1"}
{"argmax": 0, "probs": [0.5548614263534546, 0.4451385736465454], "idx": 12, "sample_id": "52912_311_1"}
{"argmax": 0, "probs": [0.5549033284187317, 0.4450967013835907], "idx": 13, "sample_id": "52912_312_1"}
{"argmax": 0, "probs": [0.5563976168632507, 0.4436023533344269], "idx": 14, "sample_id": "52912_313_1"}
{"argmax": 0, "probs": [0.5546410083770752, 0.4453589618206024], "idx": 15, "sample_id": "52912_315_1"}
{"argmax": 0, "probs": [0.5541031956672668, 0.44589686393737793], "idx": 0, "sample_id": "52912_316_1"}
{"argmax": 0, "probs": [0.5561141967773438, 0.443885862827301], "idx": 1, "sample_id": "52912_317_1"}
{"argmax": 0, "probs": [0.554703414440155, 0.4452965259552002], "idx": 2, "sample_id": "52912_318_1"}
{"argmax": 0, "probs": [0.5548577904701233, 0.4451422095298767], "idx": 3, "sample_id": "52912_320_1"}
{"argmax": 0, "probs": [0.5542336702346802, 0.44576627016067505], "idx": 4, "sample_id": "52912_321_1"}
{"argmax": 0, "probs": [0.5544002056121826, 0.44559988379478455], "idx": 5, "sample_id": "52912_322_1"}
{"argmax": 0, "probs": [0.5560080409049988, 0.4439919888973236], "idx": 6, "sample_id": "52912_323_1"}
{"argmax": 0, "probs": [0.554082989692688, 0.4459170401096344], "idx": 7, "sample_id": "52912_324_1"}
{"argmax": 0, "probs": [0.5543871521949768, 0.44561290740966797], "idx": 8, "sample_id": "52912_325_1"}
{"argmax": 0, "probs": [0.554831862449646, 0.4451681077480316], "idx": 9, "sample_id": "52912_326_1"}
{"argmax": 0, "probs": [0.5538799166679382, 0.44612008333206177], "idx": 10, "sample_id": "52912_327_1"}
{"argmax": 0, "probs": [0.5550951361656189, 0.4449048936367035], "idx": 11, "sample_id": "52912_328_1"}
{"argmax": 0, "probs": [0.5545379519462585, 0.4454619884490967], "idx": 12, "sample_id": "52912_329_1"}
{"argmax": 0, "probs": [0.5559503436088562, 0.4440496265888214], "idx": 13, "sample_id": "52912_330_1"}
{"argmax": 0, "probs": [0.5555288791656494, 0.44447118043899536], "idx": 14, "sample_id": "52912_331_1"}
{"argmax": 0, "probs": [0.5544862151145935, 0.4455137550830841], "idx": 15, "sample_id": "52912_333_1"}
{"argmax": 0, "probs": [0.5547072887420654, 0.4452926218509674], "idx": 0, "sample_id": "52912_334_1"}
{"argmax": 0, "probs": [0.554733395576477, 0.44526660442352295], "idx": 1, "sample_id": "52912_335_1"}
{"argmax": 0, "probs": [0.5548413395881653, 0.4451586604118347], "idx": 2, "sample_id": "52912_337_1"}
{"argmax": 0, "probs": [0.5560680031776428, 0.44393208622932434], "idx": 3, "sample_id": "52912_338_1"}
{"argmax": 0, "probs": [0.5542789101600647, 0.4457210600376129], "idx": 4, "sample_id": "52912_339_1"}
{"argmax": 0, "probs": [0.5544975399971008, 0.44550246000289917], "idx": 5, "sample_id": "52912_340_1"}
{"argmax": 0, "probs": [0.5554457902908325, 0.4445542097091675], "idx": 6, "sample_id": "52912_342_1"}
{"argmax": 0, "probs": [0.5542477369308472, 0.44575226306915283], "idx": 7, "sample_id": "52912_343_1"}
{"argmax": 0, "probs": [0.5544248223304749, 0.4455752372741699], "idx": 8, "sample_id": "52912_344_1"}
{"argmax": 0, "probs": [0.5560734272003174, 0.4439266324043274], "idx": 9, "sample_id": "52912_345_1"}
{"argmax": 0, "probs": [0.5554676651954651, 0.4445323944091797], "idx": 10, "sample_id": "52912_346_1"}
{"argmax": 0, "probs": [0.5559368133544922, 0.4440632164478302], "idx": 11, "sample_id": "52912_348_1"}
{"argmax": 0, "probs": [0.5546656847000122, 0.4453343152999878], "idx": 12, "sample_id": "52912_349_1"}
{"argmax": 0, "probs": [0.5559114217758179, 0.4440886080265045], "idx": 13, "sample_id": "52912_351_1"}
{"argmax": 0, "probs": [0.554840624332428, 0.44515931606292725], "idx": 14, "sample_id": "52912_352_1"}
{"argmax": 0, "probs": [0.5546822547912598, 0.4453178346157074], "idx": 15, "sample_id": "52912_353_1"}
{"argmax": 0, "probs": [0.5547409057617188, 0.44525909423828125], "idx": 0, "sample_id": "52912_354_1"}
{"argmax": 0, "probs": [0.5556387901306152, 0.44436123967170715], "idx": 1, "sample_id": "52912_356_1"}
{"argmax": 0, "probs": [0.5556678771972656, 0.4443321228027344], "idx": 2, "sample_id": "52912_358_1"}
{"argmax": 0, "probs": [0.5551726222038269, 0.4448273479938507], "idx": 3, "sample_id": "52912_359_1"}
{"argmax": 0, "probs": [0.5542657971382141, 0.4457342028617859], "idx": 4, "sample_id": "52912_360_1"}
{"argmax": 0, "probs": [0.5562857389450073, 0.4437142312526703], "idx": 5, "sample_id": "52912_362_1"}
{"argmax": 0, "probs": [0.5548166036605835, 0.4451833963394165], "idx": 6, "sample_id": "52912_363_1"}
{"argmax": 0, "probs": [0.5542241334915161, 0.4457758963108063], "idx": 7, "sample_id": "52912_364_1"}
{"argmax": 0, "probs": [0.5552904009819031, 0.44470956921577454], "idx": 8, "sample_id": "52912_365_1"}
{"argmax": 0, "probs": [0.5545839071273804, 0.44541609287261963], "idx": 9, "sample_id": "52912_368_1"}
{"argmax": 0, "probs": [0.5556727647781372, 0.4443272054195404], "idx": 10, "sample_id": "52912_369_1"}
{"argmax": 0, "probs": [0.5543546080589294, 0.44564542174339294], "idx": 11, "sample_id": "52912_370_1"}
{"argmax": 0, "probs": [0.5547497868537903, 0.4452502429485321], "idx": 12, "sample_id": "52912_371_1"}
{"argmax": 0, "probs": [0.5548388957977295, 0.4451611638069153], "idx": 13, "sample_id": "52912_372_1"}
{"argmax": 0, "probs": [0.553993821144104, 0.446006178855896], "idx": 14, "sample_id": "52912_373_1"}
{"argmax": 0, "probs": [0.5555077195167542, 0.4444921910762787], "idx": 15, "sample_id": "52912_374_1"}
{"argmax": 0, "probs": [0.55430668592453, 0.44569334387779236], "idx": 0, "sample_id": "52912_375_1"}
{"argmax": 0, "probs": [0.555341362953186, 0.44465863704681396], "idx": 1, "sample_id": "52912_377_1"}
{"argmax": 0, "probs": [0.5536984801292419, 0.44630157947540283], "idx": 2, "sample_id": "52912_378_1"}
{"argmax": 0, "probs": [0.5561074614524841, 0.44389253854751587], "idx": 3, "sample_id": "52912_379_1"}
{"argmax": 0, "probs": [0.5544809699058533, 0.4455191195011139], "idx": 4, "sample_id": "52912_380_1"}
{"argmax": 0, "probs": [0.5544242262840271, 0.4455758035182953], "idx": 5, "sample_id": "52912_381_1"}
{"argmax": 0, "probs": [0.5546351671218872, 0.44536489248275757], "idx": 6, "sample_id": "52912_383_1"}
{"argmax": 0, "probs": [0.5553335547447205, 0.44466644525527954], "idx": 7, "sample_id": "52912_385_1"}
{"argmax": 0, "probs": [0.5539121031761169, 0.44608786702156067], "idx": 8, "sample_id": "52912_386_1"}
{"argmax": 0, "probs": [0.5543610453605652, 0.4456389844417572], "idx": 9, "sample_id": "52912_387_1"}
{"argmax": 0, "probs": [0.5544998645782471, 0.44550007581710815], "idx": 10, "sample_id": "52912_388_1"}
{"argmax": 0, "probs": [0.5550220012664795, 0.4449780285358429], "idx": 11, "sample_id": "52912_389_1"}
{"argmax": 0, "probs": [0.554313600063324, 0.4456864893436432], "idx": 12, "sample_id": "52912_390_1"}
{"argmax": 0, "probs": [0.5544821619987488, 0.4455178678035736], "idx": 13, "sample_id": "52912_391_1"}
{"argmax": 0, "probs": [0.555565595626831, 0.44443443417549133], "idx": 14, "sample_id": "52912_392_1"}
{"argmax": 0, "probs": [0.5553889274597168, 0.4446111023426056], "idx": 15, "sample_id": "52912_394_1"}
{"argmax": 0, "probs": [0.5560208559036255, 0.4439791440963745], "idx": 0, "sample_id": "52912_395_1"}
{"argmax": 0, "probs": [0.5546735525131226, 0.44532638788223267], "idx": 1, "sample_id": "52912_397_1"}
{"argmax": 0, "probs": [0.5547276139259338, 0.44527241587638855], "idx": 2, "sample_id": "52912_398_1"}
{"argmax": 0, "probs": [0.5543612241744995, 0.4456387758255005], "idx": 3, "sample_id": "52912_399_1"}
{"argmax": 0, "probs": [0.5545075535774231, 0.4454924166202545], "idx": 4, "sample_id": "52912_400_1"}
{"argmax": 0, "probs": [0.5558933615684509, 0.4441065490245819], "idx": 5, "sample_id": "52912_401_1"}
{"argmax": 0, "probs": [0.5548236966133118, 0.44517627358436584], "idx": 6, "sample_id": "52912_402_1"}
{"argmax": 0, "probs": [0.5551355481147766, 0.4448644518852234], "idx": 7, "sample_id": "52912_403_1"}
{"argmax": 0, "probs": [0.5543873906135559, 0.4456126093864441], "idx": 8, "sample_id": "52912_404_1"}
{"argmax": 0, "probs": [0.5541342496871948, 0.4458657205104828], "idx": 9, "sample_id": "52912_406_1"}
{"argmax": 0, "probs": [0.5550772547721863, 0.4449227750301361], "idx": 10, "sample_id": "52912_409_1"}
{"argmax": 0, "probs": [0.554343581199646, 0.4456563889980316], "idx": 11, "sample_id": "52912_410_1"}
{"argmax": 0, "probs": [0.5542352199554443, 0.44576478004455566], "idx": 12, "sample_id": "52912_411_1"}
{"argmax": 0, "probs": [0.5547186732292175, 0.44528132677078247], "idx": 13, "sample_id": "52912_413_1"}
{"argmax": 0, "probs": [0.5547975301742554, 0.44520246982574463], "idx": 14, "sample_id": "52912_414_1"}
{"argmax": 0, "probs": [0.5563633441925049, 0.4436366558074951], "idx": 15, "sample_id": "52912_415_1"}
{"argmax": 0, "probs": [0.5542901158332825, 0.4457099139690399], "idx": 0, "sample_id": "52912_417_1"}
{"argmax": 0, "probs": [0.554624080657959, 0.4453759789466858], "idx": 1, "sample_id": "52912_418_1"}
{"argmax": 0, "probs": [0.5544710159301758, 0.4455289840698242], "idx": 2, "sample_id": "52912_419_1"}
{"argmax": 0, "probs": [0.5546389222145081, 0.44536107778549194], "idx": 3, "sample_id": "52912_421_1"}
{"argmax": 0, "probs": [0.5543195605278015, 0.4456804096698761], "idx": 4, "sample_id": "52912_422_1"}
{"argmax": 0, "probs": [0.5548464059829712, 0.4451535940170288], "idx": 5, "sample_id": "52912_423_1"}
{"argmax": 0, "probs": [0.5548902750015259, 0.44510966539382935], "idx": 6, "sample_id": "52912_424_1"}
{"argmax": 0, "probs": [0.5543197393417358, 0.44568029046058655], "idx": 7, "sample_id": "52912_425_1"}
{"argmax": 0, "probs": [0.5548620223999023, 0.44513800740242004], "idx": 8, "sample_id": "52912_427_1"}
{"argmax": 0, "probs": [0.5558098554611206, 0.4441901445388794], "idx": 9, "sample_id": "52912_428_1"}
{"argmax": 0, "probs": [0.5570380687713623, 0.4429619014263153], "idx": 10, "sample_id": "52912_430_1"}
{"argmax": 0, "probs": [0.5551348328590393, 0.4448651969432831], "idx": 11, "sample_id": "52912_431_1"}
{"argmax": 0, "probs": [0.5551022887229919, 0.44489774107933044], "idx": 12, "sample_id": "52912_433_1"}
{"argmax": 0, "probs": [0.5556060075759888, 0.44439399242401123], "idx": 13, "sample_id": "52912_434_1"}
{"argmax": 0, "probs": [0.5538969039916992, 0.4461030960083008], "idx": 14, "sample_id": "52912_435_1"}
{"argmax": 0, "probs": [0.5551484227180481, 0.4448516070842743], "idx": 15, "sample_id": "52912_436_1"}
{"argmax": 0, "probs": [0.5549407601356506, 0.44505923986434937], "idx": 0, "sample_id": "52912_437_1"}
{"argmax": 0, "probs": [0.5545781850814819, 0.44542187452316284], "idx": 1, "sample_id": "52912_438_1"}
{"argmax": 0, "probs": [0.5554490089416504, 0.4445509612560272], "idx": 2, "sample_id": "52912_439_1"}
{"argmax": 0, "probs": [0.5546739101409912, 0.4453260898590088], "idx": 3, "sample_id": "52912_440_1"}
{"argmax": 0, "probs": [0.5539070963859558, 0.4460928738117218], "idx": 4, "sample_id": "52912_442_1"}
{"argmax": 0, "probs": [0.5552032589912415, 0.4447968006134033], "idx": 5, "sample_id": "52912_444_1"}
{"argmax": 0, "probs": [0.5548737049102783, 0.4451262652873993], "idx": 6, "sample_id": "52912_445_1"}
{"argmax": 0, "probs": [0.5543595552444458, 0.4456404745578766], "idx": 7, "sample_id": "52912_448_1"}
{"argmax": 0, "probs": [0.5544650554656982, 0.44553494453430176], "idx": 8, "sample_id": "52912_449_1"}
{"argmax": 0, "probs": [0.5546271204948425, 0.4453727900981903], "idx": 9, "sample_id": "52912_450_1"}
{"argmax": 0, "probs": [0.5554378032684326, 0.44456222653388977], "idx": 10, "sample_id": "52912_451_1"}
{"argmax": 0, "probs": [0.5550273060798645, 0.4449727237224579], "idx": 11, "sample_id": "52912_452_1"}
{"argmax": 0, "probs": [0.5543556809425354, 0.4456442594528198], "idx": 12, "sample_id": "52912_453_1"}
{"argmax": 0, "probs": [0.5562624335289001, 0.44373756647109985], "idx": 13, "sample_id": "52912_455_1"}
{"argmax": 0, "probs": [0.5538215041160583, 0.44617852568626404], "idx": 14, "sample_id": "52912_457_1"}
{"argmax": 0, "probs": [0.554773211479187, 0.4452267587184906], "idx": 15, "sample_id": "52912_458_1"}
{"argmax": 0, "probs": [0.554733157157898, 0.44526681303977966], "idx": 0, "sample_id": "52912_459_1"}
{"argmax": 0, "probs": [0.5544838309288025, 0.4455161690711975], "idx": 1, "sample_id": "52912_460_1"}
{"argmax": 0, "probs": [0.5550157427787781, 0.4449842572212219], "idx": 2, "sample_id": "52912_464_1"}
{"argmax": 0, "probs": [0.5559762716293335, 0.4440236985683441], "idx": 3, "sample_id": "52912_465_1"}
{"argmax": 0, "probs": [0.5549136996269226, 0.4450863301753998], "idx": 4, "sample_id": "52912_466_1"}
{"argmax": 0, "probs": [0.5548856854438782, 0.4451143145561218], "idx": 5, "sample_id": "52912_467_1"}
{"argmax": 0, "probs": [0.5549986958503723, 0.4450013041496277], "idx": 6, "sample_id": "52912_468_1"}
{"argmax": 0, "probs": [0.5556074976921082, 0.44439244270324707], "idx": 7, "sample_id": "52912_469_1"}
{"argmax": 0, "probs": [0.5549266338348389, 0.44507333636283875], "idx": 8, "sample_id": "52912_470_1"}
{"argmax": 0, "probs": [0.5536097884178162, 0.4463902413845062], "idx": 9, "sample_id": "52912_473_1"}
{"argmax": 0, "probs": [0.5551266074180603, 0.4448733925819397], "idx": 10, "sample_id": "52912_474_1"}
{"argmax": 0, "probs": [0.5563667416572571, 0.4436332881450653], "idx": 11, "sample_id": "52912_476_1"}
{"argmax": 0, "probs": [0.5547422170639038, 0.4452577829360962], "idx": 12, "sample_id": "52912_477_1"}
{"argmax": 0, "probs": [0.554191529750824, 0.44580841064453125], "idx": 13, "sample_id": "52912_478_1"}
{"argmax": 0, "probs": [0.5560001134872437, 0.44399988651275635], "idx": 14, "sample_id": "52912_479_1"}
{"argmax": 0, "probs": [0.5551443696022034, 0.44485557079315186], "idx": 15, "sample_id": "52912_480_1"}
{"argmax": 0, "probs": [0.5548146963119507, 0.4451853036880493], "idx": 0, "sample_id": "52912_482_1"}
{"argmax": 0, "probs": [0.5566534996032715, 0.44334647059440613], "idx": 1, "sample_id": "52912_483_1"}
{"argmax": 0, "probs": [0.5541703104972839, 0.44582974910736084], "idx": 2, "sample_id": "52912_484_1"}
{"argmax": 0, "probs": [0.5570195317268372, 0.4429805278778076], "idx": 3, "sample_id": "52912_486_1"}
{"argmax": 0, "probs": [0.5550487041473389, 0.44495120644569397], "idx": 4, "sample_id": "52912_488_1"}
{"argmax": 0, "probs": [0.5557516813278198, 0.4442482888698578], "idx": 5, "sample_id": "52912_489_1"}
{"argmax": 0, "probs": [0.5550851821899414, 0.444914847612381], "idx": 6, "sample_id": "52912_490_1"}
{"argmax": 0, "probs": [0.5545195937156677, 0.4454804062843323], "idx": 7, "sample_id": "52912_491_1"}
{"argmax": 0, "probs": [0.5543554425239563, 0.4456445574760437], "idx": 8, "sample_id": "52912_492_1"}
{"argmax": 0, "probs": [0.5542952418327332, 0.44570478796958923], "idx": 9, "sample_id": "52912_494_1"}
{"argmax": 0, "probs": [0.5543384552001953, 0.4456614553928375], "idx": 10, "sample_id": "52912_496_1"}
{"argmax": 0, "probs": [0.556358277797699, 0.443641722202301], "idx": 11, "sample_id": "52912_497_1"}
{"argmax": 0, "probs": [0.5548628568649292, 0.4451371431350708], "idx": 12, "sample_id": "52912_498_1"}
{"argmax": 0, "probs": [0.5550256967544556, 0.4449743330478668], "idx": 13, "sample_id": "52912_499_1"}
{"argmax": 0, "probs": [0.555040717124939, 0.4449593424797058], "idx": 14, "sample_id": "52912_500_1"}
{"argmax": 0, "probs": [0.5549327731132507, 0.4450671970844269], "idx": 15, "sample_id": "52912_501_1"}
{"argmax": 0, "probs": [0.5568577647209167, 0.443142294883728], "idx": 0, "sample_id": "52912_503_1"}
{"argmax": 0, "probs": [0.5559378266334534, 0.4440622329711914], "idx": 1, "sample_id": "52912_504_1"}
{"argmax": 0, "probs": [0.5549893975257874, 0.4450106620788574], "idx": 2, "sample_id": "52912_506_1"}
{"argmax": 0, "probs": [0.5550956130027771, 0.4449043869972229], "idx": 3, "sample_id": "52912_507_1"}
{"argmax": 0, "probs": [0.556464433670044, 0.44353559613227844], "idx": 4, "sample_id": "52912_508_1"}
{"argmax": 0, "probs": [0.5540446043014526, 0.44595539569854736], "idx": 5, "sample_id": "52912_509_1"}
{"argmax": 0, "probs": [0.5559657216072083, 0.4440341889858246], "idx": 6, "sample_id": "52912_510_1"}
{"argmax": 0, "probs": [0.5558481812477112, 0.444151908159256], "idx": 7, "sample_id": "52912_511_1"}
{"argmax": 0, "probs": [0.5548126697540283, 0.4451873302459717], "idx": 8, "sample_id": "52912_513_1"}
{"argmax": 0, "probs": [0.5541163682937622, 0.4458836317062378], "idx": 9, "sample_id": "52912_514_1"}
{"argmax": 0, "probs": [0.5548232793807983, 0.44517678022384644], "idx": 10, "sample_id": "52912_515_1"}
{"argmax": 0, "probs": [0.5562121272087097, 0.4437878131866455], "idx": 11, "sample_id": "52912_516_1"}
{"argmax": 0, "probs": [0.5536229610443115, 0.44637706875801086], "idx": 12, "sample_id": "52912_517_1"}
{"argmax": 0, "probs": [0.5556471347808838, 0.444352924823761], "idx": 13, "sample_id": "52912_519_1"}
{"argmax": 0, "probs": [0.5533631443977356, 0.4466368854045868], "idx": 14, "sample_id": "52912_520_1"}
{"argmax": 0, "probs": [0.555607795715332, 0.44439223408699036], "idx": 15, "sample_id": "52912_521_1"}
{"argmax": 0, "probs": [0.5538490414619446, 0.44615086913108826], "idx": 0, "sample_id": "52912_522_1"}
{"argmax": 0, "probs": [0.5548990964889526, 0.44510096311569214], "idx": 1, "sample_id": "52912_523_1"}
{"argmax": 0, "probs": [0.5542173385620117, 0.44578272104263306], "idx": 2, "sample_id": "52912_524_1"}
{"argmax": 0, "probs": [0.5544762015342712, 0.44552376866340637], "idx": 3, "sample_id": "52912_525_1"}
{"argmax": 0, "probs": [0.5554937124252319, 0.44450628757476807], "idx": 4, "sample_id": "52912_526_1"}
{"argmax": 0, "probs": [0.5552660822868347, 0.44473394751548767], "idx": 5, "sample_id": "52912_528_1"}
{"argmax": 0, "probs": [0.5550230741500854, 0.44497689604759216], "idx": 6, "sample_id": "52912_529_1"}
{"argmax": 0, "probs": [0.5559642910957336, 0.44403567910194397], "idx": 7, "sample_id": "52912_530_1"}
{"argmax": 0, "probs": [0.555067241191864, 0.4449327290058136], "idx": 8, "sample_id": "52912_532_1"}
{"argmax": 0, "probs": [0.5551509261131287, 0.44484907388687134], "idx": 9, "sample_id": "52912_533_1"}
{"argmax": 0, "probs": [0.5538730025291443, 0.4461269974708557], "idx": 10, "sample_id": "52912_537_1"}
{"argmax": 0, "probs": [0.5542920827865601, 0.44570785760879517], "idx": 11, "sample_id": "52912_538_1"}
{"argmax": 0, "probs": [0.5550850033760071, 0.4449150264263153], "idx": 12, "sample_id": "52912_539_1"}
{"argmax": 0, "probs": [0.5552188754081726, 0.4447811245918274], "idx": 13, "sample_id": "52912_540_1"}
{"argmax": 0, "probs": [0.5545508861541748, 0.4454491138458252], "idx": 14, "sample_id": "52912_542_1"}
{"argmax": 0, "probs": [0.5559805631637573, 0.44401946663856506], "idx": 15, "sample_id": "52912_543_1"}
{"argmax": 0, "probs": [0.5546016097068787, 0.4453984200954437], "idx": 0, "sample_id": "52912_544_1"}
{"argmax": 0, "probs": [0.5551004409790039, 0.4448995292186737], "idx": 1, "sample_id": "52912_545_1"}
{"argmax": 0, "probs": [0.554716169834137, 0.44528380036354065], "idx": 2, "sample_id": "52912_547_1"}
{"argmax": 0, "probs": [0.5554789900779724, 0.44452103972435], "idx": 3, "sample_id": "52912_548_1"}
{"argmax": 0, "probs": [0.5547388195991516, 0.4452612102031708], "idx": 4, "sample_id": "52912_549_1"}
{"argmax": 0, "probs": [0.5546455383300781, 0.4453544616699219], "idx": 5, "sample_id": "52912_550_1"}
{"argmax": 0, "probs": [0.5542594790458679, 0.4457405209541321], "idx": 6, "sample_id": "52912_551_1"}
{"argmax": 0, "probs": [0.5533950924873352, 0.4466049075126648], "idx": 7, "sample_id": "52912_552_1"}
{"argmax": 0, "probs": [0.5541396141052246, 0.4458603262901306], "idx": 8, "sample_id": "52912_554_1"}
{"argmax": 0, "probs": [0.556308388710022, 0.44369158148765564], "idx": 9, "sample_id": "52912_555_1"}
{"argmax": 0, "probs": [0.5547581911087036, 0.44524186849594116], "idx": 10, "sample_id": "52912_556_1"}
{"argmax": 0, "probs": [0.5555362701416016, 0.44446367025375366], "idx": 11, "sample_id": "52912_557_1"}
{"argmax": 0, "probs": [0.5549104809761047, 0.4450894892215729], "idx": 12, "sample_id": "52912_558_1"}
{"argmax": 0, "probs": [0.5548839569091797, 0.4451160132884979], "idx": 13, "sample_id": "52912_559_1"}
{"argmax": 0, "probs": [0.5537614226341248, 0.44623857736587524], "idx": 14, "sample_id": "52912_562_1"}
{"argmax": 0, "probs": [0.5567163825035095, 0.4432836174964905], "idx": 15, "sample_id": "52912_563_1"}
{"argmax": 0, "probs": [0.5544443726539612, 0.4455556273460388], "idx": 0, "sample_id": "52912_564_1"}
{"argmax": 0, "probs": [0.5543029308319092, 0.4456970989704132], "idx": 1, "sample_id": "52912_565_1"}
{"argmax": 0, "probs": [0.5544069409370422, 0.44559311866760254], "idx": 2, "sample_id": "52912_567_1"}
{"argmax": 0, "probs": [0.555982232093811, 0.44401776790618896], "idx": 3, "sample_id": "52912_568_1"}
{"argmax": 0, "probs": [0.5543339252471924, 0.4456660747528076], "idx": 4, "sample_id": "52912_570_1"}
{"argmax": 0, "probs": [0.5539045333862305, 0.4460955262184143], "idx": 5, "sample_id": "52912_572_1"}
{"argmax": 0, "probs": [0.5543973445892334, 0.4456026554107666], "idx": 6, "sample_id": "52912_573_1"}
{"argmax": 0, "probs": [0.5559793710708618, 0.44402065873146057], "idx": 7, "sample_id": "52912_575_1"}
{"argmax": 0, "probs": [0.5540772080421448, 0.44592273235321045], "idx": 8, "sample_id": "52912_576_1"}
{"argmax": 0, "probs": [0.5544803738594055, 0.44551965594291687], "idx": 9, "sample_id": "52912_580_1"}
{"argmax": 0, "probs": [0.5537329316139221, 0.4462670683860779], "idx": 10, "sample_id": "52912_581_1"}
{"argmax": 0, "probs": [0.555126428604126, 0.4448736011981964], "idx": 11, "sample_id": "52912_582_1"}
{"argmax": 0, "probs": [0.5551275014877319, 0.4448724687099457], "idx": 12, "sample_id": "52912_586_1"}
{"argmax": 0, "probs": [0.5548564195632935, 0.44514358043670654], "idx": 13, "sample_id": "52912_588_1"}
{"argmax": 0, "probs": [0.554703950881958, 0.4452960193157196], "idx": 14, "sample_id": "52912_589_1"}
{"argmax": 0, "probs": [0.5559212565422058, 0.4440787434577942], "idx": 15, "sample_id": "52912_590_1"}
{"argmax": 0, "probs": [0.5545639991760254, 0.44543594121932983], "idx": 0, "sample_id": "52912_592_1"}
{"argmax": 0, "probs": [0.5549388527870178, 0.44506117701530457], "idx": 1, "sample_id": "52912_593_1"}
{"argmax": 0, "probs": [0.5548919439315796, 0.445108026266098], "idx": 2, "sample_id": "52912_595_1"}
{"argmax": 0, "probs": [0.5553038120269775, 0.44469618797302246], "idx": 3, "sample_id": "52912_596_1"}
{"argmax": 0, "probs": [0.5552222728729248, 0.4447776973247528], "idx": 4, "sample_id": "52912_600_1"}
{"argmax": 0, "probs": [0.5543729662895203, 0.4456270635128021], "idx": 5, "sample_id": "52912_601_1"}
{"argmax": 0, "probs": [0.5545928478240967, 0.44540712237358093], "idx": 6, "sample_id": "52912_602_1"}
{"argmax": 0, "probs": [0.5550507307052612, 0.44494929909706116], "idx": 7, "sample_id": "52912_603_1"}
{"argmax": 0, "probs": [0.5553973317146301, 0.4446026682853699], "idx": 8, "sample_id": "52912_605_1"}
{"argmax": 0, "probs": [0.5540971159934998, 0.44590282440185547], "idx": 9, "sample_id": "52912_606_1"}
{"argmax": 0, "probs": [0.5547510385513306, 0.44524896144866943], "idx": 10, "sample_id": "52912_607_1"}
{"argmax": 0, "probs": [0.5544605851173401, 0.4455394148826599], "idx": 11, "sample_id": "52912_608_1"}
{"argmax": 0, "probs": [0.5546886324882507, 0.44531136751174927], "idx": 12, "sample_id": "52912_609_1"}
{"argmax": 0, "probs": [0.5557640194892883, 0.4442359507083893], "idx": 13, "sample_id": "52912_610_1"}
{"argmax": 0, "probs": [0.5554259419441223, 0.4445740282535553], "idx": 14, "sample_id": "52912_611_1"}
{"argmax": 0, "probs": [0.5549838542938232, 0.4450160562992096], "idx": 15, "sample_id": "52912_612_1"}
{"argmax": 0, "probs": [0.5562583804130554, 0.44374164938926697], "idx": 0, "sample_id": "52912_613_1"}
{"argmax": 0, "probs": [0.5546140670776367, 0.44538596272468567], "idx": 1, "sample_id": "52912_614_1"}
{"argmax": 0, "probs": [0.5542633533477783, 0.4457366466522217], "idx": 2, "sample_id": "52912_617_1"}
{"argmax": 0, "probs": [0.5571215152740479, 0.44287848472595215], "idx": 3, "sample_id": "52912_619_1"}
{"argmax": 0, "probs": [0.555544912815094, 0.4444550573825836], "idx": 4, "sample_id": "52912_620_1"}
{"argmax": 0, "probs": [0.5540205240249634, 0.44597938656806946], "idx": 5, "sample_id": "52912_621_1"}
{"argmax": 0, "probs": [0.5548312664031982, 0.44516879320144653], "idx": 6, "sample_id": "52912_622_1"}
{"argmax": 0, "probs": [0.5546973943710327, 0.4453025758266449], "idx": 7, "sample_id": "52912_624_1"}
{"argmax": 0, "probs": [0.5551291108131409, 0.4448709189891815], "idx": 8, "sample_id": "52912_625_1"}
{"argmax": 0, "probs": [0.555534303188324, 0.4444657266139984], "idx": 9, "sample_id": "52912_627_1"}
{"argmax": 0, "probs": [0.5559924840927124, 0.4440074563026428], "idx": 10, "sample_id": "52912_629_1"}
{"argmax": 0, "probs": [0.5540223121643066, 0.44597771763801575], "idx": 11, "sample_id": "52912_630_1"}
{"argmax": 0, "probs": [0.5544736981391907, 0.44552627205848694], "idx": 12, "sample_id": "52912_631_1"}
{"argmax": 0, "probs": [0.5544246435165405, 0.44557538628578186], "idx": 13, "sample_id": "52912_632_1"}
{"argmax": 0, "probs": [0.5545473098754883, 0.4454526901245117], "idx": 14, "sample_id": "52912_633_1"}
{"argmax": 0, "probs": [0.554722249507904, 0.44527775049209595], "idx": 15, "sample_id": "52912_634_1"}
{"argmax": 0, "probs": [0.5539766550064087, 0.4460233151912689], "idx": 0, "sample_id": "52912_636_1"}
{"argmax": 0, "probs": [0.5541528463363647, 0.4458472430706024], "idx": 1, "sample_id": "52912_638_1"}
{"argmax": 0, "probs": [0.5545392632484436, 0.4454607367515564], "idx": 2, "sample_id": "52912_639_1"}
{"argmax": 0, "probs": [0.554107129573822, 0.4458928108215332], "idx": 3, "sample_id": "52912_640_1"}
{"argmax": 0, "probs": [0.5545863509178162, 0.44541361927986145], "idx": 4, "sample_id": "52912_642_1"}
{"argmax": 0, "probs": [0.554800271987915, 0.4451996684074402], "idx": 5, "sample_id": "52912_644_1"}
{"argmax": 0, "probs": [0.5547547340393066, 0.44524526596069336], "idx": 6, "sample_id": "52912_645_1"}
{"argmax": 0, "probs": [0.5557786822319031, 0.4442213475704193], "idx": 7, "sample_id": "52912_646_1"}
{"argmax": 0, "probs": [0.5541147589683533, 0.4458852708339691], "idx": 8, "sample_id": "52912_648_1"}
{"argmax": 0, "probs": [0.554227888584137, 0.4457721412181854], "idx": 9, "sample_id": "52912_649_1"}
{"argmax": 0, "probs": [0.556016206741333, 0.4439838230609894], "idx": 10, "sample_id": "52912_650_1"}
{"argmax": 0, "probs": [0.5544739961624146, 0.4455260634422302], "idx": 11, "sample_id": "52912_651_1"}
{"argmax": 0, "probs": [0.555098831653595, 0.4449011981487274], "idx": 12, "sample_id": "52912_653_1"}
{"argmax": 0, "probs": [0.5552253127098083, 0.44477468729019165], "idx": 13, "sample_id": "52912_654_1"}
{"argmax": 0, "probs": [0.5555849075317383, 0.44441503286361694], "idx": 14, "sample_id": "52912_655_1"}
{"argmax": 0, "probs": [0.5550229549407959, 0.4449770450592041], "idx": 15, "sample_id": "52912_656_1"}
{"argmax": 0, "probs": [0.5542424321174622, 0.44575756788253784], "idx": 0, "sample_id": "52912_657_1"}
{"argmax": 0, "probs": [0.5549795627593994, 0.4450204372406006], "idx": 1, "sample_id": "52912_658_1"}
{"argmax": 0, "probs": [0.5545927286148071, 0.44540727138519287], "idx": 2, "sample_id": "52912_659_1"}
{"argmax": 0, "probs": [0.5562568306922913, 0.44374313950538635], "idx": 3, "sample_id": "52912_663_1"}
{"argmax": 0, "probs": [0.5551316738128662, 0.4448683559894562], "idx": 4, "sample_id": "52912_665_1"}
{"argmax": 0, "probs": [0.5545988082885742, 0.445401132106781], "idx": 5, "sample_id": "52912_666_1"}
{"argmax": 0, "probs": [0.5553404688835144, 0.4446594715118408], "idx": 6, "sample_id": "52912_668_1"}
{"argmax": 0, "probs": [0.5553159713745117, 0.4446840286254883], "idx": 7, "sample_id": "52912_669_1"}
{"argmax": 0, "probs": [0.5541622042655945, 0.44583776593208313], "idx": 8, "sample_id": "52912_670_1"}
{"argmax": 0, "probs": [0.5542058348655701, 0.4457941949367523], "idx": 9, "sample_id": "52912_672_1"}
{"argmax": 0, "probs": [0.5548242926597595, 0.4451757073402405], "idx": 10, "sample_id": "52912_673_1"}
{"argmax": 0, "probs": [0.5546541213989258, 0.4453459084033966], "idx": 11, "sample_id": "52912_674_1"}
{"argmax": 0, "probs": [0.5552247762680054, 0.44477522373199463], "idx": 12, "sample_id": "52912_675_1"}
{"argmax": 0, "probs": [0.5563637614250183, 0.4436362683773041], "idx": 13, "sample_id": "52912_677_1"}
{"argmax": 0, "probs": [0.555040717124939, 0.4449593424797058], "idx": 14, "sample_id": "52912_678_1"}
{"argmax": 0, "probs": [0.5543419718742371, 0.4456579387187958], "idx": 15, "sample_id": "52912_679_1"}
{"argmax": 0, "probs": [0.5543841123580933, 0.4456159174442291], "idx": 0, "sample_id": "52912_680_1"}
{"argmax": 0, "probs": [0.5553874969482422, 0.4446125328540802], "idx": 1, "sample_id": "52912_682_1"}
{"argmax": 0, "probs": [0.5551630258560181, 0.44483697414398193], "idx": 2, "sample_id": "52912_683_1"}
{"argmax": 0, "probs": [0.5543648600578308, 0.4456351101398468], "idx": 3, "sample_id": "52912_684_1"}
{"argmax": 0, "probs": [0.5554502606391907, 0.44454967975616455], "idx": 4, "sample_id": "52912_685_1"}
{"argmax": 0, "probs": [0.5552479028701782, 0.4447520077228546], "idx": 5, "sample_id": "52912_686_1"}
{"argmax": 0, "probs": [0.5547369718551636, 0.4452630877494812], "idx": 6, "sample_id": "52912_687_1"}
{"argmax": 0, "probs": [0.5548923015594482, 0.44510769844055176], "idx": 7, "sample_id": "52912_688_1"}
{"argmax": 0, "probs": [0.5547257661819458, 0.4452742338180542], "idx": 8, "sample_id": "52912_689_1"}
{"argmax": 0, "probs": [0.5548058748245239, 0.44519415497779846], "idx": 9, "sample_id": "52912_690_1"}
{"argmax": 0, "probs": [0.5554574728012085, 0.4445424973964691], "idx": 10, "sample_id": "52912_691_1"}
{"argmax": 0, "probs": [0.5563445687294006, 0.443655401468277], "idx": 11, "sample_id": "52912_692_1"}
{"argmax": 0, "probs": [0.5569821000099182, 0.44301795959472656], "idx": 12, "sample_id": "52912_694_1"}
{"argmax": 0, "probs": [0.5547581911087036, 0.4452418088912964], "idx": 13, "sample_id": "52912_695_1"}
{"argmax": 0, "probs": [0.555098831653595, 0.44490113854408264], "idx": 14, "sample_id": "52912_697_1"}
{"argmax": 0, "probs": [0.5551300048828125, 0.4448700249195099], "idx": 15, "sample_id": "52912_699_1"}
{"argmax": 0, "probs": [0.5559771060943604, 0.44402292370796204], "idx": 0, "sample_id": "52912_700_1"}
{"argmax": 0, "probs": [0.5567469000816345, 0.4432530701160431], "idx": 1, "sample_id": "52912_701_1"}
{"argmax": 0, "probs": [0.5547786355018616, 0.44522133469581604], "idx": 2, "sample_id": "52912_702_1"}
{"argmax": 0, "probs": [0.5544588565826416, 0.44554105401039124], "idx": 3, "sample_id": "52912_703_1"}
{"argmax": 0, "probs": [0.557043194770813, 0.4429568350315094], "idx": 4, "sample_id": "52912_704_1"}
{"argmax": 0, "probs": [0.555221676826477, 0.44477832317352295], "idx": 5, "sample_id": "52912_705_1"}
{"argmax": 0, "probs": [0.5544763207435608, 0.4455236792564392], "idx": 6, "sample_id": "52912_706_1"}
{"argmax": 0, "probs": [0.5538176894187927, 0.4461822807788849], "idx": 7, "sample_id": "52912_707_1"}
{"argmax": 0, "probs": [0.5559698343276978, 0.44403016567230225], "idx": 8, "sample_id": "52912_710_1"}
{"argmax": 0, "probs": [0.5542709231376648, 0.4457290470600128], "idx": 9, "sample_id": "52912_713_1"}
{"argmax": 0, "probs": [0.5545872449874878, 0.4454127550125122], "idx": 10, "sample_id": "52912_714_1"}
{"argmax": 0, "probs": [0.55492103099823, 0.44507893919944763], "idx": 11, "sample_id": "52912_716_1"}
{"argmax": 0, "probs": [0.5546697378158569, 0.4453302323818207], "idx": 12, "sample_id": "52912_717_1"}
{"argmax": 0, "probs": [0.5547235012054443, 0.4452764391899109], "idx": 13, "sample_id": "52912_718_1"}
{"argmax": 0, "probs": [0.5538413524627686, 0.44615864753723145], "idx": 14, "sample_id": "52912_719_1"}
{"argmax": 0, "probs": [0.5551853179931641, 0.44481465220451355], "idx": 15, "sample_id": "52912_720_1"}
{"argmax": 0, "probs": [0.554622232913971, 0.44537779688835144], "idx": 0, "sample_id": "52912_721_1"}
{"argmax": 0, "probs": [0.5540656447410583, 0.44593438506126404], "idx": 1, "sample_id": "52912_722_1"}
{"argmax": 0, "probs": [0.5545403957366943, 0.4454595744609833], "idx": 2, "sample_id": "52912_724_1"}
{"argmax": 0, "probs": [0.5551820993423462, 0.4448179602622986], "idx": 3, "sample_id": "52912_725_1"}
{"argmax": 0, "probs": [0.5553953647613525, 0.4446046054363251], "idx": 4, "sample_id": "52912_726_1"}
{"argmax": 0, "probs": [0.5555119514465332, 0.4444881081581116], "idx": 5, "sample_id": "52912_728_1"}
{"argmax": 0, "probs": [0.555860161781311, 0.44413986802101135], "idx": 6, "sample_id": "52912_732_1"}
{"argmax": 0, "probs": [0.556709349155426, 0.44329068064689636], "idx": 7, "sample_id": "52912_733_1"}
{"argmax": 0, "probs": [0.5551272034645081, 0.4448728561401367], "idx": 8, "sample_id": "52912_734_1"}
{"argmax": 0, "probs": [0.5557920336723328, 0.44420796632766724], "idx": 9, "sample_id": "52912_736_1"}
{"argmax": 0, "probs": [0.5542699694633484, 0.4457300305366516], "idx": 10, "sample_id": "52912_737_1"}
{"argmax": 0, "probs": [0.5546636581420898, 0.44533631205558777], "idx": 11, "sample_id": "52912_738_1"}
{"argmax": 0, "probs": [0.5545221567153931, 0.44547784328460693], "idx": 12, "sample_id": "52912_741_1"}
{"argmax": 0, "probs": [0.5552793741226196, 0.444720596075058], "idx": 13, "sample_id": "52912_742_1"}
{"argmax": 0, "probs": [0.5546413064002991, 0.4453587532043457], "idx": 14, "sample_id": "52912_743_1"}
{"argmax": 0, "probs": [0.55670166015625, 0.44329833984375], "idx": 15, "sample_id": "52912_744_1"}
{"argmax": 0, "probs": [0.5556384325027466, 0.4443615674972534], "idx": 0, "sample_id": "52912_745_1"}
{"argmax": 0, "probs": [0.555669903755188, 0.444330096244812], "idx": 1, "sample_id": "52912_746_1"}
{"argmax": 0, "probs": [0.5544774532318115, 0.44552263617515564], "idx": 2, "sample_id": "52912_748_1"}
{"argmax": 0, "probs": [0.5547026991844177, 0.4452972710132599], "idx": 3, "sample_id": "52912_749_1"}
{"argmax": 0, "probs": [0.5547800064086914, 0.4452199637889862], "idx": 4, "sample_id": "52912_750_1"}
{"argmax": 0, "probs": [0.5551904439926147, 0.44480952620506287], "idx": 5, "sample_id": "52912_751_1"}
{"argmax": 0, "probs": [0.5547119379043579, 0.4452880620956421], "idx": 6, "sample_id": "52912_752_1"}
{"argmax": 0, "probs": [0.5535870790481567, 0.44641295075416565], "idx": 7, "sample_id": "52912_753_1"}
{"argmax": 0, "probs": [0.5550498366355896, 0.4449501931667328], "idx": 8, "sample_id": "52912_754_1"}
{"argmax": 0, "probs": [0.554203987121582, 0.44579601287841797], "idx": 9, "sample_id": "52912_755_1"}
{"argmax": 0, "probs": [0.5545044541358948, 0.44549548625946045], "idx": 10, "sample_id": "52912_757_1"}
{"argmax": 0, "probs": [0.554436445236206, 0.44556358456611633], "idx": 11, "sample_id": "52912_758_1"}
{"argmax": 0, "probs": [0.5562266707420349, 0.4437733590602875], "idx": 12, "sample_id": "52912_759_1"}
{"argmax": 0, "probs": [0.5549314618110657, 0.44506847858428955], "idx": 13, "sample_id": "52912_760_1"}
{"argmax": 0, "probs": [0.5552141666412354, 0.4447857737541199], "idx": 14, "sample_id": "52912_761_1"}
{"argmax": 0, "probs": [0.5540652871131897, 0.4459347426891327], "idx": 15, "sample_id": "52912_763_1"}
{"argmax": 0, "probs": [0.554895281791687, 0.4451046884059906], "idx": 0, "sample_id": "52912_764_1"}
{"argmax": 0, "probs": [0.5570493340492249, 0.44295063614845276], "idx": 1, "sample_id": "52912_765_1"}
{"argmax": 0, "probs": [0.5547724962234497, 0.4452275037765503], "idx": 2, "sample_id": "52912_766_1"}
{"argmax": 0, "probs": [0.5553522706031799, 0.44464778900146484], "idx": 3, "sample_id": "52912_767_1"}
{"argmax": 0, "probs": [0.5553904175758362, 0.44460955262184143], "idx": 4, "sample_id": "52912_768_1"}
{"argmax": 0, "probs": [0.5539454817771912, 0.4460545480251312], "idx": 5, "sample_id": "52912_771_1"}
{"argmax": 0, "probs": [0.5545541048049927, 0.4454459249973297], "idx": 6, "sample_id": "52912_772_1"}
{"argmax": 0, "probs": [0.555026113986969, 0.444973886013031], "idx": 7, "sample_id": "52912_773_1"}
{"argmax": 0, "probs": [0.5545852780342102, 0.44541478157043457], "idx": 8, "sample_id": "52912_774_1"}
{"argmax": 0, "probs": [0.5541346073150635, 0.4458653926849365], "idx": 9, "sample_id": "52912_775_1"}
{"argmax": 0, "probs": [0.5545467138290405, 0.4454532861709595], "idx": 10, "sample_id": "52912_777_1"}
{"argmax": 0, "probs": [0.5554215312004089, 0.44457849860191345], "idx": 11, "sample_id": "52912_779_1"}
{"argmax": 0, "probs": [0.5552803874015808, 0.4447196125984192], "idx": 12, "sample_id": "52912_780_1"}
{"argmax": 0, "probs": [0.5546031594276428, 0.4453968107700348], "idx": 13, "sample_id": "52912_782_1"}
{"argmax": 0, "probs": [0.5557639598846436, 0.4442360997200012], "idx": 14, "sample_id": "52912_783_1"}
{"argmax": 0, "probs": [0.5546307563781738, 0.4453692138195038], "idx": 15, "sample_id": "52912_785_1"}
{"argmax": 0, "probs": [0.556091845035553, 0.44390812516212463], "idx": 0, "sample_id": "52912_787_1"}
{"argmax": 0, "probs": [0.554594099521637, 0.4454059302806854], "idx": 1, "sample_id": "52912_788_1"}
{"argmax": 0, "probs": [0.5545024871826172, 0.4454975724220276], "idx": 2, "sample_id": "52912_789_1"}
{"argmax": 0, "probs": [0.5549541115760803, 0.4450458884239197], "idx": 3, "sample_id": "52912_790_1"}
{"argmax": 0, "probs": [0.5545384883880615, 0.4454614818096161], "idx": 4, "sample_id": "52912_791_1"}
{"argmax": 0, "probs": [0.5553382635116577, 0.4446616768836975], "idx": 5, "sample_id": "52912_792_1"}
{"argmax": 0, "probs": [0.5543047785758972, 0.4456951916217804], "idx": 6, "sample_id": "52912_793_1"}
{"argmax": 0, "probs": [0.5547196269035339, 0.44528037309646606], "idx": 7, "sample_id": "52912_794_1"}
{"argmax": 0, "probs": [0.555000901222229, 0.444999098777771], "idx": 8, "sample_id": "52912_795_1"}
{"argmax": 0, "probs": [0.5549774765968323, 0.4450225234031677], "idx": 9, "sample_id": "52912_798_1"}
{"argmax": 0, "probs": [0.5548848509788513, 0.44511517882347107], "idx": 10, "sample_id": "52912_799_1"}
{"argmax": 0, "probs": [0.5544712543487549, 0.44552871584892273], "idx": 11, "sample_id": "52912_800_1"}
{"argmax": 0, "probs": [0.5557181239128113, 0.4442819058895111], "idx": 12, "sample_id": "52912_801_1"}
{"argmax": 0, "probs": [0.5546402931213379, 0.4453597068786621], "idx": 13, "sample_id": "52912_802_1"}
{"argmax": 0, "probs": [0.5556327104568481, 0.44436728954315186], "idx": 14, "sample_id": "52912_803_1"}
{"argmax": 0, "probs": [0.554489254951477, 0.4455108046531677], "idx": 15, "sample_id": "52912_807_1"}
{"argmax": 0, "probs": [0.5546053051948547, 0.44539475440979004], "idx": 0, "sample_id": "52912_808_1"}
{"argmax": 0, "probs": [0.5554561614990234, 0.4445438086986542], "idx": 1, "sample_id": "52912_809_1"}
{"argmax": 0, "probs": [0.5560058355331421, 0.4439941942691803], "idx": 2, "sample_id": "52912_810_1"}
{"argmax": 0, "probs": [0.5551982522010803, 0.44480177760124207], "idx": 3, "sample_id": "52912_811_1"}
{"argmax": 0, "probs": [0.5549754500389099, 0.4450245797634125], "idx": 4, "sample_id": "52912_812_1"}
{"argmax": 0, "probs": [0.5540434718132019, 0.4459565579891205], "idx": 5, "sample_id": "52912_814_1"}
{"argmax": 0, "probs": [0.5564115643501282, 0.44358840584754944], "idx": 6, "sample_id": "52912_815_1"}
{"argmax": 0, "probs": [0.5542761087417603, 0.44572389125823975], "idx": 7, "sample_id": "52912_816_1"}
{"argmax": 0, "probs": [0.5542528033256531, 0.4457472860813141], "idx": 8, "sample_id": "52912_817_1"}
{"argmax": 0, "probs": [0.5538123250007629, 0.44618767499923706], "idx": 9, "sample_id": "52912_818_1"}
{"argmax": 0, "probs": [0.555999219417572, 0.4440007507801056], "idx": 10, "sample_id": "52912_819_1"}
{"argmax": 0, "probs": [0.5557318925857544, 0.44426819682121277], "idx": 11, "sample_id": "52912_820_1"}
{"argmax": 0, "probs": [0.5549992918968201, 0.44500064849853516], "idx": 12, "sample_id": "52912_821_1"}
{"argmax": 0, "probs": [0.5545544624328613, 0.44544559717178345], "idx": 13, "sample_id": "52912_822_1"}
{"argmax": 0, "probs": [0.5559621453285217, 0.44403791427612305], "idx": 14, "sample_id": "52912_824_1"}
{"argmax": 0, "probs": [0.5548166632652283, 0.4451833963394165], "idx": 15, "sample_id": "52912_826_1"}
{"argmax": 0, "probs": [0.5548248887062073, 0.4451751410961151], "idx": 0, "sample_id": "52912_827_1"}
{"argmax": 0, "probs": [0.5561673045158386, 0.4438326954841614], "idx": 1, "sample_id": "52912_828_1"}
{"argmax": 0, "probs": [0.5546542406082153, 0.44534575939178467], "idx": 2, "sample_id": "52912_829_1"}
{"argmax": 0, "probs": [0.5550864934921265, 0.4449135363101959], "idx": 3, "sample_id": "52912_830_1"}
{"argmax": 0, "probs": [0.5555056929588318, 0.4444942772388458], "idx": 4, "sample_id": "52912_831_1"}
{"argmax": 0, "probs": [0.5547320246696472, 0.44526800513267517], "idx": 5, "sample_id": "52912_832_1"}
{"argmax": 0, "probs": [0.5545929670333862, 0.4454070031642914], "idx": 6, "sample_id": "52912_833_1"}
{"argmax": 0, "probs": [0.5544607043266296, 0.44553932547569275], "idx": 7, "sample_id": "52912_834_1"}
{"argmax": 0, "probs": [0.554823100566864, 0.4451768696308136], "idx": 8, "sample_id": "52912_835_1"}
{"argmax": 0, "probs": [0.5548465847969055, 0.4451533555984497], "idx": 9, "sample_id": "52912_836_1"}
{"argmax": 0, "probs": [0.5547598600387573, 0.44524016976356506], "idx": 10, "sample_id": "52912_837_1"}
{"argmax": 0, "probs": [0.5557689070701599, 0.4442310929298401], "idx": 11, "sample_id": "52912_838_1"}
{"argmax": 0, "probs": [0.5571154952049255, 0.4428845942020416], "idx": 12, "sample_id": "52912_839_1"}
{"argmax": 0, "probs": [0.5549114942550659, 0.4450885057449341], "idx": 13, "sample_id": "52912_840_1"}
{"argmax": 0, "probs": [0.5545699000358582, 0.44543007016181946], "idx": 14, "sample_id": "52912_841_1"}
{"argmax": 0, "probs": [0.5549516081809998, 0.44504839181900024], "idx": 15, "sample_id": "52912_842_1"}
{"argmax": 0, "probs": [0.5549429059028625, 0.44505706429481506], "idx": 0, "sample_id": "52912_843_1"}
{"argmax": 0, "probs": [0.5546032190322876, 0.4453968107700348], "idx": 1, "sample_id": "52912_844_1"}
{"argmax": 0, "probs": [0.5548771023750305, 0.4451228380203247], "idx": 2, "sample_id": "52912_845_1"}
{"argmax": 0, "probs": [0.5547641515731812, 0.4452357590198517], "idx": 3, "sample_id": "52912_846_1"}
{"argmax": 0, "probs": [0.5553194880485535, 0.4446805417537689], "idx": 4, "sample_id": "52912_847_1"}
{"argmax": 0, "probs": [0.5546842813491821, 0.44531574845314026], "idx": 5, "sample_id": "52912_848_1"}
{"argmax": 0, "probs": [0.5549225807189941, 0.44507741928100586], "idx": 6, "sample_id": "52912_849_1"}
{"argmax": 0, "probs": [0.5552200675010681, 0.4447799324989319], "idx": 7, "sample_id": "52912_850_1"}
{"argmax": 0, "probs": [0.5544934868812561, 0.4455064535140991], "idx": 8, "sample_id": "52912_851_1"}
{"argmax": 0, "probs": [0.5546159148216248, 0.44538402557373047], "idx": 9, "sample_id": "52912_853_1"}
{"argmax": 0, "probs": [0.5548681020736694, 0.44513189792633057], "idx": 10, "sample_id": "52912_854_1"}
{"argmax": 0, "probs": [0.5548790097236633, 0.44512102007865906], "idx": 11, "sample_id": "52912_856_1"}
{"argmax": 0, "probs": [0.5541993975639343, 0.44580066204071045], "idx": 12, "sample_id": "52912_857_1"}
{"argmax": 0, "probs": [0.555304765701294, 0.4446951746940613], "idx": 13, "sample_id": "52912_858_1"}
{"argmax": 0, "probs": [0.5549533367156982, 0.44504669308662415], "idx": 14, "sample_id": "52912_859_1"}
{"argmax": 0, "probs": [0.5551151633262634, 0.4448848366737366], "idx": 15, "sample_id": "52912_860_1"}
{"argmax": 0, "probs": [0.5539865493774414, 0.44601354002952576], "idx": 0, "sample_id": "52912_862_1"}
{"argmax": 0, "probs": [0.5549378991127014, 0.4450620710849762], "idx": 1, "sample_id": "52912_863_1"}
{"argmax": 0, "probs": [0.5545945763587952, 0.44540542364120483], "idx": 2, "sample_id": "52912_864_1"}
{"argmax": 0, "probs": [0.5559126734733582, 0.44408735632896423], "idx": 3, "sample_id": "52912_865_1"}
{"argmax": 0, "probs": [0.5540773272514343, 0.4459226131439209], "idx": 4, "sample_id": "52912_866_1"}
{"argmax": 0, "probs": [0.5556738972663879, 0.4443260729312897], "idx": 5, "sample_id": "52912_868_1"}
{"argmax": 0, "probs": [0.5555744171142578, 0.4444255828857422], "idx": 6, "sample_id": "52912_873_1"}
{"argmax": 0, "probs": [0.5539004802703857, 0.4460994601249695], "idx": 7, "sample_id": "52912_874_1"}
{"argmax": 0, "probs": [0.5543931126594543, 0.44560685753822327], "idx": 8, "sample_id": "52912_875_1"}
{"argmax": 0, "probs": [0.5555346012115479, 0.44446539878845215], "idx": 9, "sample_id": "52912_876_1"}
{"argmax": 0, "probs": [0.5540212988853455, 0.44597873091697693], "idx": 10, "sample_id": "52912_878_1"}
{"argmax": 0, "probs": [0.5548691749572754, 0.4451308250427246], "idx": 11, "sample_id": "52912_883_1"}
{"argmax": 0, "probs": [0.5552261471748352, 0.4447738826274872], "idx": 12, "sample_id": "52912_885_1"}
{"argmax": 0, "probs": [0.5554080605506897, 0.4445919990539551], "idx": 13, "sample_id": "52912_886_1"}
{"argmax": 0, "probs": [0.5552363991737366, 0.4447636604309082], "idx": 14, "sample_id": "52912_887_1"}
{"argmax": 0, "probs": [0.5565747618675232, 0.4434252381324768], "idx": 15, "sample_id": "52912_890_1"}
{"argmax": 0, "probs": [0.5546056032180786, 0.4453943967819214], "idx": 0, "sample_id": "52912_891_1"}
{"argmax": 0, "probs": [0.555303156375885, 0.4446968734264374], "idx": 1, "sample_id": "52912_892_1"}
{"argmax": 0, "probs": [0.5549125671386719, 0.4450874626636505], "idx": 2, "sample_id": "52912_893_1"}
{"argmax": 0, "probs": [0.5547110438346863, 0.44528889656066895], "idx": 3, "sample_id": "52912_894_1"}
{"argmax": 0, "probs": [0.554803192615509, 0.4451967775821686], "idx": 4, "sample_id": "52912_895_1"}
{"argmax": 0, "probs": [0.5556043386459351, 0.44439566135406494], "idx": 5, "sample_id": "52912_896_1"}
{"argmax": 0, "probs": [0.5562148690223694, 0.443785160779953], "idx": 6, "sample_id": "52912_897_1"}
{"argmax": 0, "probs": [0.5559583306312561, 0.4440416395664215], "idx": 7, "sample_id": "52912_898_1"}
{"argmax": 0, "probs": [0.5550662279129028, 0.44493383169174194], "idx": 8, "sample_id": "52912_900_1"}
{"argmax": 0, "probs": [0.5543113946914673, 0.4456886649131775], "idx": 9, "sample_id": "52912_903_1"}
{"argmax": 0, "probs": [0.5551345348358154, 0.44486549496650696], "idx": 10, "sample_id": "52912_904_1"}
{"argmax": 0, "probs": [0.555188775062561, 0.44481125473976135], "idx": 11, "sample_id": "52912_905_1"}
{"argmax": 0, "probs": [0.554382860660553, 0.44561710953712463], "idx": 12, "sample_id": "52912_906_1"}
{"argmax": 0, "probs": [0.5558935403823853, 0.44410648941993713], "idx": 13, "sample_id": "52912_907_1"}
{"argmax": 0, "probs": [0.5538556575775146, 0.44614437222480774], "idx": 14, "sample_id": "52912_908_1"}
{"argmax": 0, "probs": [0.5548384189605713, 0.4451616108417511], "idx": 15, "sample_id": "52912_909_1"}
{"argmax": 0, "probs": [0.5549947619438171, 0.44500523805618286], "idx": 0, "sample_id": "52912_911_1"}
{"argmax": 0, "probs": [0.5542463064193726, 0.4457536041736603], "idx": 1, "sample_id": "52912_912_1"}
{"argmax": 0, "probs": [0.5550538897514343, 0.44494614005088806], "idx": 2, "sample_id": "52912_913_1"}
{"argmax": 0, "probs": [0.5540948510169983, 0.44590508937835693], "idx": 3, "sample_id": "52912_914_1"}
{"argmax": 0, "probs": [0.5560334920883179, 0.44396650791168213], "idx": 4, "sample_id": "52912_915_1"}
{"argmax": 0, "probs": [0.5545058846473694, 0.4454941749572754], "idx": 5, "sample_id": "52912_916_1"}
{"argmax": 0, "probs": [0.5543665289878845, 0.4456334114074707], "idx": 6, "sample_id": "52912_917_1"}
{"argmax": 0, "probs": [0.5556484460830688, 0.44435152411460876], "idx": 7, "sample_id": "52912_918_1"}
{"argmax": 0, "probs": [0.5539833307266235, 0.4460166394710541], "idx": 8, "sample_id": "52912_920_1"}
{"argmax": 0, "probs": [0.5552809834480286, 0.44471901655197144], "idx": 9, "sample_id": "52912_921_1"}
{"argmax": 0, "probs": [0.557140588760376, 0.4428594708442688], "idx": 10, "sample_id": "52912_924_1"}
{"argmax": 0, "probs": [0.5561162829399109, 0.44388365745544434], "idx": 11, "sample_id": "52912_926_1"}
{"argmax": 0, "probs": [0.5548499822616577, 0.4451500177383423], "idx": 12, "sample_id": "52912_927_1"}
{"argmax": 0, "probs": [0.5542781352996826, 0.44572189450263977], "idx": 13, "sample_id": "52912_928_1"}
{"argmax": 0, "probs": [0.5565680265426636, 0.44343194365501404], "idx": 14, "sample_id": "52912_929_1"}
{"argmax": 0, "probs": [0.5542946457862854, 0.4457052946090698], "idx": 15, "sample_id": "52912_930_1"}
{"argmax": 0, "probs": [0.5549678206443787, 0.4450322389602661], "idx": 0, "sample_id": "52912_932_1"}
{"argmax": 0, "probs": [0.554787814617157, 0.44521212577819824], "idx": 1, "sample_id": "52912_933_1"}
{"argmax": 0, "probs": [0.5544875860214233, 0.4455123245716095], "idx": 2, "sample_id": "52912_935_1"}
{"argmax": 0, "probs": [0.5546954274177551, 0.4453045725822449], "idx": 3, "sample_id": "52912_936_1"}
{"argmax": 0, "probs": [0.5541554689407349, 0.44584450125694275], "idx": 4, "sample_id": "52912_937_1"}
{"argmax": 0, "probs": [0.5562839508056641, 0.4437160789966583], "idx": 5, "sample_id": "52912_939_1"}
{"argmax": 0, "probs": [0.5541152954101562, 0.44588470458984375], "idx": 6, "sample_id": "52912_940_1"}
{"argmax": 0, "probs": [0.5544723272323608, 0.44552767276763916], "idx": 7, "sample_id": "52912_941_1"}
{"argmax": 0, "probs": [0.5557126998901367, 0.44428732991218567], "idx": 8, "sample_id": "52912_942_1"}
{"argmax": 0, "probs": [0.5542386174201965, 0.4457613527774811], "idx": 9, "sample_id": "52912_943_1"}
{"argmax": 0, "probs": [0.5548195838928223, 0.4451804459095001], "idx": 10, "sample_id": "52912_946_1"}
{"argmax": 0, "probs": [0.5556197762489319, 0.4443802237510681], "idx": 11, "sample_id": "52912_947_1"}
{"argmax": 0, "probs": [0.5545276403427124, 0.4454723298549652], "idx": 12, "sample_id": "52912_949_1"}
{"argmax": 0, "probs": [0.5549153089523315, 0.4450846314430237], "idx": 13, "sample_id": "52912_950_1"}
{"argmax": 0, "probs": [0.5547468662261963, 0.4452531039714813], "idx": 14, "sample_id": "52912_952_1"}
{"argmax": 0, "probs": [0.5546178817749023, 0.4453820586204529], "idx": 15, "sample_id": "52912_953_1"}
{"argmax": 0, "probs": [0.5558732151985168, 0.44412681460380554], "idx": 0, "sample_id": "52912_955_1"}
{"argmax": 0, "probs": [0.5542637705802917, 0.445736289024353], "idx": 1, "sample_id": "52912_957_1"}
{"argmax": 0, "probs": [0.554480254650116, 0.44551965594291687], "idx": 2, "sample_id": "52912_958_1"}
{"argmax": 0, "probs": [0.5551274418830872, 0.44487255811691284], "idx": 3, "sample_id": "52912_959_1"}
{"argmax": 0, "probs": [0.5550287365913391, 0.4449712932109833], "idx": 4, "sample_id": "52912_960_1"}
{"argmax": 0, "probs": [0.5534941554069519, 0.4465058147907257], "idx": 5, "sample_id": "52912_961_1"}
{"argmax": 0, "probs": [0.554274320602417, 0.4457257390022278], "idx": 6, "sample_id": "52912_962_1"}
{"argmax": 0, "probs": [0.5559319853782654, 0.44406795501708984], "idx": 7, "sample_id": "52912_963_1"}
{"argmax": 0, "probs": [0.5540320873260498, 0.4459678530693054], "idx": 8, "sample_id": "52912_964_1"}
{"argmax": 0, "probs": [0.5548838973045349, 0.4451161026954651], "idx": 9, "sample_id": "52912_965_1"}
{"argmax": 0, "probs": [0.5554397702217102, 0.4445602595806122], "idx": 10, "sample_id": "52912_967_1"}
{"argmax": 0, "probs": [0.5551539659500122, 0.4448460340499878], "idx": 11, "sample_id": "52912_968_1"}
{"argmax": 0, "probs": [0.5543679594993591, 0.44563204050064087], "idx": 12, "sample_id": "52912_969_1"}
{"argmax": 0, "probs": [0.554643988609314, 0.44535595178604126], "idx": 13, "sample_id": "52912_970_1"}
{"argmax": 0, "probs": [0.554290771484375, 0.4457092583179474], "idx": 14, "sample_id": "52912_971_1"}
{"argmax": 0, "probs": [0.5549073219299316, 0.44509270787239075], "idx": 15, "sample_id": "52912_972_1"}
{"argmax": 0, "probs": [0.5547432899475098, 0.44525668025016785], "idx": 0, "sample_id": "52912_973_1"}
{"argmax": 0, "probs": [0.5555468797683716, 0.4444531202316284], "idx": 1, "sample_id": "52912_974_1"}
{"argmax": 0, "probs": [0.5555069446563721, 0.44449299573898315], "idx": 2, "sample_id": "52912_976_1"}
{"argmax": 0, "probs": [0.5560318827629089, 0.4439682066440582], "idx": 3, "sample_id": "52912_978_1"}
{"argmax": 0, "probs": [0.5554282665252686, 0.44457167387008667], "idx": 4, "sample_id": "52912_979_1"}
{"argmax": 0, "probs": [0.554194986820221, 0.44580501317977905], "idx": 5, "sample_id": "52912_980_1"}
{"argmax": 0, "probs": [0.5546784996986389, 0.44532155990600586], "idx": 6, "sample_id": "52912_981_1"}
{"argmax": 0, "probs": [0.5538783073425293, 0.4461216926574707], "idx": 7, "sample_id": "52912_982_1"}
{"argmax": 0, "probs": [0.5553510189056396, 0.44464898109436035], "idx": 8, "sample_id": "52912_983_1"}
{"argmax": 0, "probs": [0.556184709072113, 0.4438152611255646], "idx": 9, "sample_id": "52912_984_1"}
{"argmax": 0, "probs": [0.5548544526100159, 0.44514554738998413], "idx": 10, "sample_id": "52912_985_1"}
{"argmax": 0, "probs": [0.5567823052406311, 0.4432177245616913], "idx": 11, "sample_id": "52912_986_1"}
{"argmax": 0, "probs": [0.5551307201385498, 0.4448693096637726], "idx": 12, "sample_id": "52912_987_1"}
{"argmax": 0, "probs": [0.5573684573173523, 0.4426315128803253], "idx": 13, "sample_id": "52912_988_1"}
{"argmax": 0, "probs": [0.5549805164337158, 0.4450194835662842], "idx": 14, "sample_id": "52912_989_1"}
{"argmax": 0, "probs": [0.5539923906326294, 0.44600754976272583], "idx": 15, "sample_id": "52912_990_1"}
{"argmax": 0, "probs": [0.5545171499252319, 0.44548285007476807], "idx": 0, "sample_id": "52912_991_1"}
{"argmax": 0, "probs": [0.5558546185493469, 0.4441453218460083], "idx": 1, "sample_id": "52912_992_1"}
{"argmax": 0, "probs": [0.5554916262626648, 0.4445083737373352], "idx": 2, "sample_id": "52912_993_1"}
{"argmax": 0, "probs": [0.5567452311515808, 0.4432547688484192], "idx": 3, "sample_id": "52912_994_1"}
{"argmax": 0, "probs": [0.5546903610229492, 0.4453096091747284], "idx": 4, "sample_id": "52912_995_1"}
{"argmax": 0, "probs": [0.5548211932182312, 0.4451788365840912], "idx": 5, "sample_id": "52912_997_1"}
{"argmax": 0, "probs": [0.5544915795326233, 0.4455083906650543], "idx": 6, "sample_id": "52912_999_1"}
{"argmax": 0, "probs": [0.5561419129371643, 0.4438580572605133], "idx": 7, "sample_id": "52912_1000_1"}
{"argmax": 0, "probs": [0.5574542880058289, 0.44254565238952637], "idx": 8, "sample_id": "52912_1001_1"}
{"argmax": 0, "probs": [0.5544251799583435, 0.4455748498439789], "idx": 9, "sample_id": "52912_1002_1"}
{"argmax": 0, "probs": [0.5551664233207703, 0.44483357667922974], "idx": 10, "sample_id": "52912_1003_1"}
{"argmax": 0, "probs": [0.5551318526268005, 0.44486814737319946], "idx": 11, "sample_id": "52912_1004_1"}
{"argmax": 0, "probs": [0.5543001294136047, 0.44569987058639526], "idx": 12, "sample_id": "52912_1005_1"}
{"argmax": 0, "probs": [0.554141104221344, 0.4458588659763336], "idx": 13, "sample_id": "52912_1006_1"}
{"argmax": 0, "probs": [0.5555359721183777, 0.4444640576839447], "idx": 14, "sample_id": "52912_1007_1"}
{"argmax": 0, "probs": [0.5553656220436096, 0.44463440775871277], "idx": 15, "sample_id": "52912_1008_1"}
{"argmax": 0, "probs": [0.555331826210022, 0.4446682333946228], "idx": 0, "sample_id": "52912_1009_1"}
{"argmax": 0, "probs": [0.5544819831848145, 0.44551801681518555], "idx": 1, "sample_id": "52912_1010_1"}
{"argmax": 0, "probs": [0.5554514527320862, 0.44454851746559143], "idx": 2, "sample_id": "52912_1011_1"}
{"argmax": 0, "probs": [0.5541301369667053, 0.4458698332309723], "idx": 3, "sample_id": "52912_1013_1"}
{"argmax": 0, "probs": [0.5554884672164917, 0.4445115625858307], "idx": 4, "sample_id": "52912_1014_1"}
{"argmax": 0, "probs": [0.5549288392066956, 0.44507119059562683], "idx": 5, "sample_id": "52912_1015_1"}
{"argmax": 0, "probs": [0.5558293461799622, 0.44417065382003784], "idx": 6, "sample_id": "52912_1017_1"}
{"argmax": 0, "probs": [0.555677056312561, 0.44432294368743896], "idx": 7, "sample_id": "52912_1019_1"}
{"argmax": 0, "probs": [0.5564587712287903, 0.4435412287712097], "idx": 8, "sample_id": "52912_1020_1"}
{"argmax": 0, "probs": [0.5538477897644043, 0.4461522102355957], "idx": 9, "sample_id": "52912_1021_1"}
{"argmax": 0, "probs": [0.5560636520385742, 0.4439363181591034], "idx": 10, "sample_id": "52912_1022_1"}
{"argmax": 0, "probs": [0.5543117523193359, 0.44568824768066406], "idx": 11, "sample_id": "52912_1023_1"}
{"argmax": 0, "probs": [0.5548149347305298, 0.4451850950717926], "idx": 12, "sample_id": "52912_1024_1"}
{"argmax": 0, "probs": [0.5553507804870605, 0.44464918971061707], "idx": 13, "sample_id": "52912_1026_1"}
{"argmax": 0, "probs": [0.5567349195480347, 0.44326502084732056], "idx": 14, "sample_id": "52912_1027_1"}
{"argmax": 0, "probs": [0.5546019077301025, 0.4453980624675751], "idx": 15, "sample_id": "52912_1029_1"}
{"argmax": 0, "probs": [0.5550804734230042, 0.44491955637931824], "idx": 0, "sample_id": "52912_1030_1"}
{"argmax": 0, "probs": [0.5549178123474121, 0.4450822174549103], "idx": 1, "sample_id": "52912_1031_1"}
{"argmax": 0, "probs": [0.5563181042671204, 0.44368186593055725], "idx": 2, "sample_id": "52912_1032_1"}
{"argmax": 0, "probs": [0.5552855134010315, 0.4447144567966461], "idx": 3, "sample_id": "52912_1033_1"}
{"argmax": 0, "probs": [0.5548161268234253, 0.44518381357192993], "idx": 4, "sample_id": "52912_1034_1"}
{"argmax": 0, "probs": [0.5545256733894348, 0.4454743266105652], "idx": 5, "sample_id": "52912_1035_1"}
{"argmax": 0, "probs": [0.5547641515731812, 0.4452357590198517], "idx": 6, "sample_id": "52912_1036_1"}
{"argmax": 0, "probs": [0.5557394027709961, 0.4442606270313263], "idx": 7, "sample_id": "52912_1038_1"}
{"argmax": 0, "probs": [0.5567829608917236, 0.44321706891059875], "idx": 8, "sample_id": "52912_1039_1"}
{"argmax": 0, "probs": [0.554955244064331, 0.44504478573799133], "idx": 9, "sample_id": "52912_1040_1"}
{"argmax": 0, "probs": [0.5546257495880127, 0.4453742504119873], "idx": 10, "sample_id": "52912_1041_1"}
{"argmax": 0, "probs": [0.5547088980674744, 0.44529110193252563], "idx": 11, "sample_id": "52912_1042_1"}
{"argmax": 0, "probs": [0.5556790232658386, 0.44432103633880615], "idx": 12, "sample_id": "52912_1043_1"}
{"argmax": 0, "probs": [0.5544283390045166, 0.445571631193161], "idx": 13, "sample_id": "52912_1044_1"}
{"argmax": 0, "probs": [0.5548226833343506, 0.4451773762702942], "idx": 14, "sample_id": "52912_1045_1"}
{"argmax": 0, "probs": [0.5572429895401001, 0.4427569806575775], "idx": 15, "sample_id": "52912_1046_1"}
{"argmax": 0, "probs": [0.5542977452278137, 0.44570228457450867], "idx": 0, "sample_id": "52912_1047_1"}
{"argmax": 0, "probs": [0.5559068918228149, 0.44409310817718506], "idx": 1, "sample_id": "52912_1048_1"}
{"argmax": 0, "probs": [0.5552830696105957, 0.4447169303894043], "idx": 2, "sample_id": "52912_1050_1"}
{"argmax": 0, "probs": [0.5545317530632019, 0.4454681873321533], "idx": 3, "sample_id": "52912_1051_1"}
{"argmax": 0, "probs": [0.5550022125244141, 0.4449976980686188], "idx": 4, "sample_id": "52912_1052_1"}
{"argmax": 0, "probs": [0.554923415184021, 0.445076584815979], "idx": 5, "sample_id": "52912_1053_1"}
{"argmax": 0, "probs": [0.5551395416259766, 0.4448604881763458], "idx": 6, "sample_id": "52912_1054_1"}
{"argmax": 0, "probs": [0.5540712475776672, 0.44592878222465515], "idx": 7, "sample_id": "52912_1055_1"}
{"argmax": 0, "probs": [0.5562081336975098, 0.44379183650016785], "idx": 8, "sample_id": "52912_1058_1"}
{"argmax": 0, "probs": [0.5552509427070618, 0.44474905729293823], "idx": 9, "sample_id": "52912_1059_1"}
{"argmax": 0, "probs": [0.555679440498352, 0.44432055950164795], "idx": 10, "sample_id": "52912_1060_1"}
{"argmax": 0, "probs": [0.5553035140037537, 0.4446965456008911], "idx": 11, "sample_id": "52912_1062_1"}
{"argmax": 0, "probs": [0.5564419031143188, 0.44355812668800354], "idx": 12, "sample_id": "52912_1064_1"}
{"argmax": 0, "probs": [0.5544581413269043, 0.4455418586730957], "idx": 13, "sample_id": "52912_1066_1"}
{"argmax": 0, "probs": [0.5556480288505554, 0.44435203075408936], "idx": 14, "sample_id": "52912_1067_1"}
{"argmax": 0, "probs": [0.5550013184547424, 0.44499868154525757], "idx": 15, "sample_id": "52912_1068_1"}
{"argmax": 0, "probs": [0.555090606212616, 0.4449094235897064], "idx": 0, "sample_id": "52912_1069_1"}
{"argmax": 0, "probs": [0.5547334551811218, 0.44526660442352295], "idx": 1, "sample_id": "52912_1070_1"}
{"argmax": 0, "probs": [0.5551322102546692, 0.4448677599430084], "idx": 2, "sample_id": "52912_1072_1"}
{"argmax": 0, "probs": [0.5559059977531433, 0.44409406185150146], "idx": 3, "sample_id": "52912_1073_1"}
{"argmax": 0, "probs": [0.555504560470581, 0.44449543952941895], "idx": 4, "sample_id": "52912_1074_1"}
{"argmax": 0, "probs": [0.5557098984718323, 0.44429007172584534], "idx": 5, "sample_id": "52912_1075_1"}
{"argmax": 0, "probs": [0.5545876026153564, 0.44541236758232117], "idx": 6, "sample_id": "52912_1076_1"}
{"argmax": 0, "probs": [0.5545600652694702, 0.4454399049282074], "idx": 7, "sample_id": "52912_1077_1"}
{"argmax": 0, "probs": [0.5539560317993164, 0.4460439682006836], "idx": 8, "sample_id": "52912_1078_1"}
{"argmax": 0, "probs": [0.5554162859916687, 0.4445837140083313], "idx": 9, "sample_id": "52912_1080_1"}
{"argmax": 0, "probs": [0.554246187210083, 0.4457538425922394], "idx": 10, "sample_id": "52912_1081_1"}
{"argmax": 0, "probs": [0.5549483895301819, 0.4450516402721405], "idx": 11, "sample_id": "52912_1082_1"}
{"argmax": 0, "probs": [0.5549814701080322, 0.44501858949661255], "idx": 12, "sample_id": "52912_1083_1"}
{"argmax": 0, "probs": [0.5569271445274353, 0.4430728554725647], "idx": 13, "sample_id": "52912_1084_1"}
{"argmax": 0, "probs": [0.5551868081092834, 0.4448132812976837], "idx": 14, "sample_id": "52912_1085_1"}
{"argmax": 0, "probs": [0.5573487281799316, 0.44265124201774597], "idx": 15, "sample_id": "52912_1087_1"}
{"argmax": 0, "probs": [0.5547627210617065, 0.44523730874061584], "idx": 0, "sample_id": "52912_1088_1"}
{"argmax": 0, "probs": [0.5572924613952637, 0.4427075684070587], "idx": 1, "sample_id": "52912_1089_1"}
{"argmax": 0, "probs": [0.5543127655982971, 0.44568726420402527], "idx": 2, "sample_id": "52912_1090_1"}
{"argmax": 0, "probs": [0.5544145107269287, 0.4455854892730713], "idx": 3, "sample_id": "52912_1091_1"}
{"argmax": 0, "probs": [0.5554398894309998, 0.4445600211620331], "idx": 4, "sample_id": "52912_1092_1"}
{"argmax": 0, "probs": [0.5547147989273071, 0.44528520107269287], "idx": 5, "sample_id": "52912_1093_1"}
{"argmax": 0, "probs": [0.5547139644622803, 0.44528600573539734], "idx": 6, "sample_id": "52912_1094_1"}
{"argmax": 0, "probs": [0.5545533895492554, 0.44544661045074463], "idx": 7, "sample_id": "52912_1097_1"}
{"argmax": 0, "probs": [0.555823028087616, 0.4441770315170288], "idx": 8, "sample_id": "52912_1098_1"}
{"argmax": 0, "probs": [0.5546458959579468, 0.44535407423973083], "idx": 9, "sample_id": "52912_1099_1"}
{"argmax": 0, "probs": [0.55595862865448, 0.44404137134552], "idx": 10, "sample_id": "52912_1100_1"}
{"argmax": 0, "probs": [0.5542093515396118, 0.44579067826271057], "idx": 11, "sample_id": "52912_1101_1"}
{"argmax": 0, "probs": [0.5547374486923218, 0.4452625811100006], "idx": 12, "sample_id": "52912_1102_1"}
{"argmax": 0, "probs": [0.5551561117172241, 0.44484391808509827], "idx": 13, "sample_id": "52912_1104_1"}
{"argmax": 0, "probs": [0.5552762150764465, 0.44472378492355347], "idx": 14, "sample_id": "52912_1105_1"}
{"argmax": 0, "probs": [0.554271399974823, 0.4457286298274994], "idx": 15, "sample_id": "52912_1106_1"}
{"argmax": 0, "probs": [0.555847704410553, 0.44415223598480225], "idx": 0, "sample_id": "52912_1107_1"}
{"argmax": 0, "probs": [0.5548001527786255, 0.4451999068260193], "idx": 1, "sample_id": "52912_1109_1"}
{"argmax": 0, "probs": [0.5534698367118835, 0.44653019309043884], "idx": 2, "sample_id": "52912_1110_1"}
{"argmax": 0, "probs": [0.5550422668457031, 0.44495776295661926], "idx": 3, "sample_id": "52912_1111_1"}
{"argmax": 0, "probs": [0.5537394881248474, 0.4462604820728302], "idx": 4, "sample_id": "52912_1112_1"}
{"argmax": 0, "probs": [0.5545986294746399, 0.4454014003276825], "idx": 5, "sample_id": "52912_1113_1"}
{"argmax": 0, "probs": [0.5555254220962524, 0.44447463750839233], "idx": 6, "sample_id": "52912_1114_1"}
{"argmax": 0, "probs": [0.5543293356895447, 0.4456706941127777], "idx": 7, "sample_id": "52912_1116_1"}
{"argmax": 0, "probs": [0.5539156198501587, 0.44608432054519653], "idx": 8, "sample_id": "52912_1117_1"}
{"argmax": 0, "probs": [0.5549904108047485, 0.4450095593929291], "idx": 9, "sample_id": "52912_1118_1"}
{"argmax": 0, "probs": [0.5551357269287109, 0.44486433267593384], "idx": 10, "sample_id": "52912_1121_1"}
{"argmax": 0, "probs": [0.5543439984321594, 0.44565603137016296], "idx": 11, "sample_id": "52912_1122_1"}
{"argmax": 0, "probs": [0.5558422803878784, 0.4441577196121216], "idx": 12, "sample_id": "52912_1123_1"}
{"argmax": 0, "probs": [0.5546866059303284, 0.44531330466270447], "idx": 13, "sample_id": "52912_1124_1"}
{"argmax": 0, "probs": [0.554476261138916, 0.44552379846572876], "idx": 14, "sample_id": "52912_1125_1"}
{"argmax": 0, "probs": [0.5549699664115906, 0.4450300335884094], "idx": 15, "sample_id": "52912_1126_1"}
{"argmax": 0, "probs": [0.5552163124084473, 0.44478362798690796], "idx": 0, "sample_id": "52912_1128_1"}
{"argmax": 0, "probs": [0.5546589493751526, 0.445341020822525], "idx": 1, "sample_id": "52912_1130_1"}
{"argmax": 0, "probs": [0.5543427467346191, 0.44565725326538086], "idx": 2, "sample_id": "52912_1131_1"}
{"argmax": 0, "probs": [0.5546786189079285, 0.44532132148742676], "idx": 3, "sample_id": "52912_1133_1"}
{"argmax": 0, "probs": [0.5548727512359619, 0.44512733817100525], "idx": 4, "sample_id": "52912_1136_1"}
{"argmax": 0, "probs": [0.5560300350189209, 0.4439700245857239], "idx": 5, "sample_id": "52912_1137_1"}
{"argmax": 0, "probs": [0.5550002455711365, 0.4449997544288635], "idx": 6, "sample_id": "52912_1138_1"}
{"argmax": 0, "probs": [0.5546959638595581, 0.44530409574508667], "idx": 7, "sample_id": "52912_1140_1"}
{"argmax": 0, "probs": [0.556036651134491, 0.4439633786678314], "idx": 8, "sample_id": "52912_1141_1"}
{"argmax": 0, "probs": [0.5549978017807007, 0.4450021982192993], "idx": 9, "sample_id": "52912_1142_1"}
{"argmax": 0, "probs": [0.5545471906661987, 0.4454527199268341], "idx": 10, "sample_id": "52912_1144_1"}
{"argmax": 0, "probs": [0.5540388822555542, 0.4459611177444458], "idx": 11, "sample_id": "52912_1148_1"}
{"argmax": 0, "probs": [0.554692268371582, 0.44530773162841797], "idx": 12, "sample_id": "52912_1149_1"}
{"argmax": 0, "probs": [0.5550404787063599, 0.4449595510959625], "idx": 13, "sample_id": "52912_1150_1"}
{"argmax": 0, "probs": [0.5543383955955505, 0.4456615746021271], "idx": 14, "sample_id": "52912_1151_1"}
{"argmax": 0, "probs": [0.5552527904510498, 0.44474726915359497], "idx": 15, "sample_id": "52912_1152_1"}
{"argmax": 0, "probs": [0.554835855960846, 0.44516417384147644], "idx": 0, "sample_id": "52912_1155_1"}
{"argmax": 0, "probs": [0.5540700554847717, 0.44592997431755066], "idx": 1, "sample_id": "52912_1156_1"}
{"argmax": 0, "probs": [0.554368257522583, 0.44563180208206177], "idx": 2, "sample_id": "52912_1157_1"}
{"argmax": 0, "probs": [0.5553565621376038, 0.44464343786239624], "idx": 3, "sample_id": "52912_1158_1"}
{"argmax": 0, "probs": [0.5550292134284973, 0.4449707865715027], "idx": 4, "sample_id": "52912_1159_1"}
{"argmax": 0, "probs": [0.5561964511871338, 0.4438035190105438], "idx": 5, "sample_id": "52912_1160_1"}
{"argmax": 0, "probs": [0.5544283390045166, 0.4455716609954834], "idx": 6, "sample_id": "52912_1162_1"}
{"argmax": 0, "probs": [0.5542206764221191, 0.4457792639732361], "idx": 7, "sample_id": "52912_1164_1"}
{"argmax": 0, "probs": [0.5552296042442322, 0.4447704255580902], "idx": 8, "sample_id": "52912_1166_1"}
{"argmax": 0, "probs": [0.5545400381088257, 0.4454599618911743], "idx": 9, "sample_id": "52912_1167_1"}
{"argmax": 0, "probs": [0.556511640548706, 0.44348838925361633], "idx": 10, "sample_id": "52912_1168_1"}
{"argmax": 0, "probs": [0.5550785660743713, 0.44492149353027344], "idx": 11, "sample_id": "52912_1169_1"}
{"argmax": 0, "probs": [0.5546674132347107, 0.4453325867652893], "idx": 12, "sample_id": "52912_1172_1"}
{"argmax": 0, "probs": [0.5544536113739014, 0.44554635882377625], "idx": 13, "sample_id": "52912_1173_1"}
{"argmax": 0, "probs": [0.554563045501709, 0.4454369843006134], "idx": 14, "sample_id": "52912_1174_1"}
{"argmax": 0, "probs": [0.5543605089187622, 0.44563940167427063], "idx": 15, "sample_id": "52912_1175_1"}
{"argmax": 0, "probs": [0.5563560128211975, 0.4436440169811249], "idx": 0, "sample_id": "52912_1178_1"}
{"argmax": 0, "probs": [0.5549514889717102, 0.44504857063293457], "idx": 1, "sample_id": "52912_1180_1"}
{"argmax": 0, "probs": [0.5541086196899414, 0.4458913505077362], "idx": 2, "sample_id": "52912_1182_1"}
{"argmax": 0, "probs": [0.5542968511581421, 0.44570308923721313], "idx": 3, "sample_id": "52912_1183_1"}
{"argmax": 0, "probs": [0.5558644533157349, 0.44413554668426514], "idx": 4, "sample_id": "52912_1184_1"}
{"argmax": 0, "probs": [0.5543646216392517, 0.4456353783607483], "idx": 5, "sample_id": "52912_1185_1"}
{"argmax": 0, "probs": [0.5546793937683105, 0.4453206956386566], "idx": 6, "sample_id": "52912_1186_1"}
{"argmax": 0, "probs": [0.5545049905776978, 0.44549497961997986], "idx": 7, "sample_id": "52912_1188_1"}
{"argmax": 0, "probs": [0.5538821220397949, 0.4461178183555603], "idx": 8, "sample_id": "52912_1189_1"}
{"argmax": 0, "probs": [0.5547118782997131, 0.44528812170028687], "idx": 9, "sample_id": "52912_1190_1"}
{"argmax": 0, "probs": [0.5546798706054688, 0.44532009959220886], "idx": 10, "sample_id": "52912_1191_1"}
{"argmax": 0, "probs": [0.5544993877410889, 0.4455006420612335], "idx": 11, "sample_id": "52912_1192_1"}
{"argmax": 0, "probs": [0.5551155209541321, 0.4448845088481903], "idx": 12, "sample_id": "52912_1193_1"}
{"argmax": 0, "probs": [0.5558726191520691, 0.4441274404525757], "idx": 13, "sample_id": "52912_1194_1"}
{"argmax": 0, "probs": [0.554928183555603, 0.445071816444397], "idx": 14, "sample_id": "52912_1195_1"}
{"argmax": 0, "probs": [0.5550690293312073, 0.4449310600757599], "idx": 15, "sample_id": "52912_1197_1"}
{"argmax": 0, "probs": [0.5544439554214478, 0.44555607438087463], "idx": 0, "sample_id": "52912_1198_1"}
{"argmax": 0, "probs": [0.5546436309814453, 0.4453563690185547], "idx": 1, "sample_id": "52912_1200_1"}
{"argmax": 0, "probs": [0.555040717124939, 0.4449593424797058], "idx": 2, "sample_id": "52912_1201_1"}
{"argmax": 0, "probs": [0.5546156167984009, 0.44538435339927673], "idx": 3, "sample_id": "52912_1204_1"}
{"argmax": 0, "probs": [0.5548267960548401, 0.4451732635498047], "idx": 4, "sample_id": "52912_1205_1"}
{"argmax": 0, "probs": [0.5559054017066956, 0.44409456849098206], "idx": 5, "sample_id": "52912_1206_1"}
{"argmax": 0, "probs": [0.5545624494552612, 0.44543755054473877], "idx": 6, "sample_id": "52912_1207_1"}
{"argmax": 0, "probs": [0.5550293922424316, 0.4449705481529236], "idx": 7, "sample_id": "52912_1208_1"}
{"argmax": 0, "probs": [0.5540998578071594, 0.4459001421928406], "idx": 8, "sample_id": "52912_1209_1"}
{"argmax": 0, "probs": [0.5558381080627441, 0.4441618323326111], "idx": 9, "sample_id": "52912_1210_1"}
{"argmax": 0, "probs": [0.5550079941749573, 0.4449920952320099], "idx": 10, "sample_id": "52912_1211_1"}
{"argmax": 0, "probs": [0.5549044609069824, 0.4450955390930176], "idx": 11, "sample_id": "52912_1212_1"}
{"argmax": 0, "probs": [0.5554688572883606, 0.4445311427116394], "idx": 12, "sample_id": "52912_1214_1"}
{"argmax": 0, "probs": [0.5544408559799194, 0.4455591142177582], "idx": 13, "sample_id": "52912_1215_1"}
{"argmax": 0, "probs": [0.5545738935470581, 0.4454261064529419], "idx": 14, "sample_id": "52912_1216_1"}
{"argmax": 0, "probs": [0.5541223883628845, 0.4458775818347931], "idx": 15, "sample_id": "52912_1217_1"}
{"argmax": 0, "probs": [0.5550394058227539, 0.4449606239795685], "idx": 0, "sample_id": "52912_1218_1"}
{"argmax": 0, "probs": [0.5546612739562988, 0.44533872604370117], "idx": 1, "sample_id": "52912_1220_1"}
{"argmax": 0, "probs": [0.5570342540740967, 0.44296571612358093], "idx": 2, "sample_id": "52912_1221_1"}
{"argmax": 0, "probs": [0.5551168918609619, 0.4448831081390381], "idx": 3, "sample_id": "52912_1222_1"}
{"argmax": 0, "probs": [0.5542094707489014, 0.44579052925109863], "idx": 4, "sample_id": "52912_1223_1"}
{"argmax": 0, "probs": [0.555575966835022, 0.44442400336265564], "idx": 5, "sample_id": "52912_1224_1"}
{"argmax": 0, "probs": [0.556167721748352, 0.4438322186470032], "idx": 6, "sample_id": "52912_1226_1"}
{"argmax": 0, "probs": [0.5544309020042419, 0.44556912779808044], "idx": 7, "sample_id": "52912_1227_1"}
{"argmax": 0, "probs": [0.5545158386230469, 0.44548413157463074], "idx": 8, "sample_id": "52912_1228_1"}
{"argmax": 0, "probs": [0.5548410415649414, 0.44515901803970337], "idx": 9, "sample_id": "52912_1233_1"}
{"argmax": 0, "probs": [0.5550643801689148, 0.4449356198310852], "idx": 10, "sample_id": "52912_1234_1"}
{"argmax": 0, "probs": [0.554310142993927, 0.445689857006073], "idx": 11, "sample_id": "52912_1236_1"}
{"argmax": 0, "probs": [0.5547524690628052, 0.4452475309371948], "idx": 12, "sample_id": "52912_1237_1"}
{"argmax": 0, "probs": [0.5553998947143555, 0.44460007548332214], "idx": 13, "sample_id": "52912_1240_1"}
{"argmax": 0, "probs": [0.5543668866157532, 0.4456331431865692], "idx": 14, "sample_id": "52912_1241_1"}
{"argmax": 0, "probs": [0.5550625920295715, 0.4449373781681061], "idx": 15, "sample_id": "52912_1243_1"}
{"argmax": 0, "probs": [0.555340051651001, 0.4446599781513214], "idx": 0, "sample_id": "52912_1244_1"}
{"argmax": 0, "probs": [0.5535467267036438, 0.4464532732963562], "idx": 1, "sample_id": "52912_1245_1"}
{"argmax": 0, "probs": [0.5544270277023315, 0.44557297229766846], "idx": 2, "sample_id": "52912_1246_1"}
{"argmax": 0, "probs": [0.5539776086807251, 0.4460223913192749], "idx": 3, "sample_id": "52912_1248_1"}
{"argmax": 0, "probs": [0.5543361306190491, 0.4456638693809509], "idx": 4, "sample_id": "52912_1249_1"}
{"argmax": 0, "probs": [0.5541735291481018, 0.4458264410495758], "idx": 5, "sample_id": "52912_1250_1"}
{"argmax": 0, "probs": [0.5544449090957642, 0.44555506110191345], "idx": 6, "sample_id": "52912_1251_1"}
{"argmax": 0, "probs": [0.5549983382225037, 0.4450016915798187], "idx": 7, "sample_id": "52912_1252_1"}
{"argmax": 0, "probs": [0.5541737079620361, 0.44582632184028625], "idx": 8, "sample_id": "52912_1253_1"}
{"argmax": 0, "probs": [0.5544437766075134, 0.44555625319480896], "idx": 9, "sample_id": "52912_1254_1"}
{"argmax": 0, "probs": [0.5563107132911682, 0.4436892569065094], "idx": 10, "sample_id": "52912_1256_1"}
{"argmax": 0, "probs": [0.5549483299255371, 0.4450516402721405], "idx": 11, "sample_id": "52912_1258_1"}
{"argmax": 0, "probs": [0.5548100471496582, 0.4451899528503418], "idx": 12, "sample_id": "52912_1261_1"}
{"argmax": 0, "probs": [0.5547122955322266, 0.4452877640724182], "idx": 13, "sample_id": "52912_1262_1"}
{"argmax": 0, "probs": [0.5549498796463013, 0.44505009055137634], "idx": 14, "sample_id": "52912_1263_1"}
{"argmax": 0, "probs": [0.5561513900756836, 0.443848580121994], "idx": 15, "sample_id": "52912_1264_1"}
{"argmax": 0, "probs": [0.5548102855682373, 0.4451896846294403], "idx": 0, "sample_id": "52912_1265_1"}
{"argmax": 0, "probs": [0.5556915402412415, 0.44430842995643616], "idx": 1, "sample_id": "52912_1266_1"}
{"argmax": 0, "probs": [0.5553865432739258, 0.44461342692375183], "idx": 2, "sample_id": "52912_1267_1"}
{"argmax": 0, "probs": [0.5550053715705872, 0.44499456882476807], "idx": 3, "sample_id": "52912_1268_1"}
{"argmax": 0, "probs": [0.5549779534339905, 0.4450220465660095], "idx": 4, "sample_id": "52912_1269_1"}
{"argmax": 0, "probs": [0.5546121001243591, 0.4453878402709961], "idx": 5, "sample_id": "52912_1270_1"}
{"argmax": 0, "probs": [0.5561147332191467, 0.44388532638549805], "idx": 6, "sample_id": "52912_1272_1"}
{"argmax": 0, "probs": [0.5547555685043335, 0.4452444612979889], "idx": 7, "sample_id": "52912_1274_1"}
{"argmax": 0, "probs": [0.55430006980896, 0.44569993019104004], "idx": 8, "sample_id": "52912_1275_1"}
{"argmax": 0, "probs": [0.5563151836395264, 0.443684846162796], "idx": 9, "sample_id": "52912_1276_1"}
{"argmax": 0, "probs": [0.5550378561019897, 0.44496211409568787], "idx": 10, "sample_id": "52912_1277_1"}
{"argmax": 0, "probs": [0.5549787878990173, 0.44502121210098267], "idx": 11, "sample_id": "52912_1278_1"}
{"argmax": 0, "probs": [0.5548874139785767, 0.4451126158237457], "idx": 12, "sample_id": "52912_1279_1"}
{"argmax": 0, "probs": [0.5555024743080139, 0.44449755549430847], "idx": 13, "sample_id": "52912_1280_1"}
{"argmax": 0, "probs": [0.555030882358551, 0.444969117641449], "idx": 14, "sample_id": "52912_1281_1"}
{"argmax": 0, "probs": [0.554996132850647, 0.445003867149353], "idx": 15, "sample_id": "52912_1283_1"}
{"argmax": 0, "probs": [0.5558198094367981, 0.4441802203655243], "idx": 0, "sample_id": "52912_1284_1"}
{"argmax": 0, "probs": [0.5558313131332397, 0.44416874647140503], "idx": 1, "sample_id": "52912_1287_1"}
{"argmax": 0, "probs": [0.5551127791404724, 0.4448871910572052], "idx": 2, "sample_id": "52912_1289_1"}
{"argmax": 0, "probs": [0.554660439491272, 0.4453395903110504], "idx": 3, "sample_id": "52912_1290_1"}
{"argmax": 0, "probs": [0.5545104146003723, 0.4454896152019501], "idx": 4, "sample_id": "52912_1291_1"}
{"argmax": 0, "probs": [0.5550145506858826, 0.44498541951179504], "idx": 5, "sample_id": "52912_1292_1"}
{"argmax": 0, "probs": [0.5551947951316833, 0.44480523467063904], "idx": 6, "sample_id": "52912_1293_1"}
{"argmax": 0, "probs": [0.5548380017280579, 0.44516199827194214], "idx": 7, "sample_id": "52912_1294_1"}
{"argmax": 0, "probs": [0.5553614497184753, 0.44463852047920227], "idx": 8, "sample_id": "52912_1296_1"}
{"argmax": 0, "probs": [0.5550314784049988, 0.444968581199646], "idx": 9, "sample_id": "52912_1298_1"}
{"argmax": 0, "probs": [0.5564863085746765, 0.44351375102996826], "idx": 10, "sample_id": "52912_1300_1"}
{"argmax": 0, "probs": [0.5546522736549377, 0.44534769654273987], "idx": 11, "sample_id": "52912_1301_1"}
{"argmax": 0, "probs": [0.5539005398750305, 0.4460994303226471], "idx": 12, "sample_id": "52912_1302_1"}
{"argmax": 0, "probs": [0.5545257925987244, 0.445474237203598], "idx": 13, "sample_id": "52912_1304_1"}
{"argmax": 0, "probs": [0.5547139644622803, 0.44528597593307495], "idx": 14, "sample_id": "52912_1306_1"}
{"argmax": 0, "probs": [0.5549853444099426, 0.4450146555900574], "idx": 15, "sample_id": "52912_1307_1"}
{"argmax": 0, "probs": [0.5553085207939148, 0.44469153881073], "idx": 0, "sample_id": "52912_1308_1"}
{"argmax": 0, "probs": [0.5536713600158691, 0.44632866978645325], "idx": 1, "sample_id": "52912_1309_1"}
{"argmax": 0, "probs": [0.5546292066574097, 0.44537073373794556], "idx": 2, "sample_id": "52912_1310_1"}
{"argmax": 0, "probs": [0.5545580387115479, 0.44544193148612976], "idx": 3, "sample_id": "52912_1311_1"}
{"argmax": 0, "probs": [0.5551427602767944, 0.4448572099208832], "idx": 4, "sample_id": "52912_1313_1"}
{"argmax": 0, "probs": [0.5538244843482971, 0.4461755156517029], "idx": 5, "sample_id": "52912_1314_1"}
{"argmax": 0, "probs": [0.5567088723182678, 0.44329121708869934], "idx": 6, "sample_id": "52912_1318_1"}
{"argmax": 0, "probs": [0.5557569265365601, 0.4442431628704071], "idx": 7, "sample_id": "52912_1321_1"}