-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathfinetune_XNLI_base_mx1.6.0rc1.log
More file actions
5059 lines (5059 loc) · 476 KB
/
Copy pathfinetune_XNLI_base_mx1.6.0rc1.log
File metadata and controls
5059 lines (5059 loc) · 476 KB
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
INFO:root:10:31:03 Namespace(accumulate=None, batch_size=32, bert_dataset='wiki_cn_cased', bert_model='bert_12_768_12', dev_batch_size=8, dtype='float32', early_stop=None, epochs=4, epsilon=1e-06, gpu=0, log_interval=10, lr=2e-05, max_len=128, model_parameters=None, only_inference=False, optimizer='bertadam', output_dir='./output_dir', pad=False, pretrained_bert_parameters=None, seed=6, task_name='XNLI', training_steps=None, warmup_ratio=0.1)
INFO:root:10:31:04 Model file not found. Downloading to /home/ubuntu/.mxnet/models/bert_12_768_12_wiki_cn_cased-885ebb9a.params.
INFO:root:10:31:19 processing dataset...
INFO:root:10:33:16 Now we are doing BERT classification training on gpu(0)!
INFO:root:10:33:16 training steps=49087
INFO:root:10:33:19 [Epoch 1 Batch 10/12277] loss=1.1177, lr=0.0000000, metrics:accuracy:0.3688
INFO:root:10:33:20 [Epoch 1 Batch 20/12277] loss=1.1138, lr=0.0000001, metrics:accuracy:0.3797
INFO:root:10:33:22 [Epoch 1 Batch 30/12277] loss=1.1232, lr=0.0000001, metrics:accuracy:0.3677
INFO:root:10:33:23 [Epoch 1 Batch 40/12277] loss=1.1245, lr=0.0000002, metrics:accuracy:0.3617
INFO:root:10:33:25 [Epoch 1 Batch 50/12277] loss=1.1261, lr=0.0000002, metrics:accuracy:0.3575
INFO:root:10:33:26 [Epoch 1 Batch 60/12277] loss=1.1123, lr=0.0000002, metrics:accuracy:0.3573
INFO:root:10:33:28 [Epoch 1 Batch 70/12277] loss=1.1012, lr=0.0000003, metrics:accuracy:0.3603
INFO:root:10:33:29 [Epoch 1 Batch 80/12277] loss=1.1151, lr=0.0000003, metrics:accuracy:0.3586
INFO:root:10:33:31 [Epoch 1 Batch 90/12277] loss=1.1048, lr=0.0000004, metrics:accuracy:0.3594
INFO:root:10:33:33 [Epoch 1 Batch 100/12277] loss=1.1153, lr=0.0000004, metrics:accuracy:0.3581
INFO:root:10:33:35 [Epoch 1 Batch 110/12277] loss=1.0973, lr=0.0000004, metrics:accuracy:0.3588
INFO:root:10:33:36 [Epoch 1 Batch 120/12277] loss=1.0709, lr=0.0000005, metrics:accuracy:0.3656
INFO:root:10:33:38 [Epoch 1 Batch 130/12277] loss=1.1091, lr=0.0000005, metrics:accuracy:0.3635
INFO:root:10:33:40 [Epoch 1 Batch 140/12277] loss=1.1056, lr=0.0000006, metrics:accuracy:0.3625
INFO:root:10:33:42 [Epoch 1 Batch 150/12277] loss=1.1031, lr=0.0000006, metrics:accuracy:0.3621
INFO:root:10:33:43 [Epoch 1 Batch 160/12277] loss=1.0999, lr=0.0000006, metrics:accuracy:0.3619
INFO:root:10:33:45 [Epoch 1 Batch 170/12277] loss=1.0876, lr=0.0000007, metrics:accuracy:0.3638
INFO:root:10:33:47 [Epoch 1 Batch 180/12277] loss=1.0896, lr=0.0000007, metrics:accuracy:0.3641
INFO:root:10:33:49 [Epoch 1 Batch 190/12277] loss=1.0871, lr=0.0000008, metrics:accuracy:0.3635
INFO:root:10:33:51 [Epoch 1 Batch 200/12277] loss=1.0875, lr=0.0000008, metrics:accuracy:0.3639
INFO:root:10:33:52 [Epoch 1 Batch 210/12277] loss=1.0869, lr=0.0000009, metrics:accuracy:0.3650
INFO:root:10:33:53 [Epoch 1 Batch 220/12277] loss=1.0785, lr=0.0000009, metrics:accuracy:0.3678
INFO:root:10:33:55 [Epoch 1 Batch 230/12277] loss=1.0741, lr=0.0000009, metrics:accuracy:0.3697
INFO:root:10:33:57 [Epoch 1 Batch 240/12277] loss=1.0758, lr=0.0000010, metrics:accuracy:0.3712
INFO:root:10:33:58 [Epoch 1 Batch 250/12277] loss=1.0693, lr=0.0000010, metrics:accuracy:0.3728
INFO:root:10:34:00 [Epoch 1 Batch 260/12277] loss=1.0463, lr=0.0000011, metrics:accuracy:0.3761
INFO:root:10:34:01 [Epoch 1 Batch 270/12277] loss=1.0539, lr=0.0000011, metrics:accuracy:0.3780
INFO:root:10:34:03 [Epoch 1 Batch 280/12277] loss=1.0624, lr=0.0000011, metrics:accuracy:0.3802
INFO:root:10:34:05 [Epoch 1 Batch 290/12277] loss=1.0831, lr=0.0000012, metrics:accuracy:0.3806
INFO:root:10:34:06 [Epoch 1 Batch 300/12277] loss=1.0650, lr=0.0000012, metrics:accuracy:0.3827
INFO:root:10:34:08 [Epoch 1 Batch 310/12277] loss=1.0619, lr=0.0000013, metrics:accuracy:0.3854
INFO:root:10:34:10 [Epoch 1 Batch 320/12277] loss=1.0577, lr=0.0000013, metrics:accuracy:0.3870
INFO:root:10:34:12 [Epoch 1 Batch 330/12277] loss=1.0344, lr=0.0000013, metrics:accuracy:0.3891
INFO:root:10:34:13 [Epoch 1 Batch 340/12277] loss=1.0468, lr=0.0000014, metrics:accuracy:0.3921
INFO:root:10:34:16 [Epoch 1 Batch 350/12277] loss=1.0390, lr=0.0000014, metrics:accuracy:0.3946
INFO:root:10:34:17 [Epoch 1 Batch 360/12277] loss=1.0205, lr=0.0000015, metrics:accuracy:0.3972
INFO:root:10:34:19 [Epoch 1 Batch 370/12277] loss=1.0406, lr=0.0000015, metrics:accuracy:0.3993
INFO:root:10:34:21 [Epoch 1 Batch 380/12277] loss=1.0458, lr=0.0000015, metrics:accuracy:0.4005
INFO:root:10:34:22 [Epoch 1 Batch 390/12277] loss=1.0310, lr=0.0000016, metrics:accuracy:0.4021
INFO:root:10:34:24 [Epoch 1 Batch 400/12277] loss=1.0568, lr=0.0000016, metrics:accuracy:0.4037
INFO:root:10:34:25 [Epoch 1 Batch 410/12277] loss=1.0358, lr=0.0000017, metrics:accuracy:0.4047
INFO:root:10:34:27 [Epoch 1 Batch 420/12277] loss=1.0337, lr=0.0000017, metrics:accuracy:0.4066
INFO:root:10:34:29 [Epoch 1 Batch 430/12277] loss=1.0242, lr=0.0000017, metrics:accuracy:0.4086
INFO:root:10:34:30 [Epoch 1 Batch 440/12277] loss=1.0286, lr=0.0000018, metrics:accuracy:0.4101
INFO:root:10:34:31 [Epoch 1 Batch 450/12277] loss=1.0303, lr=0.0000018, metrics:accuracy:0.4112
INFO:root:10:34:33 [Epoch 1 Batch 460/12277] loss=1.0072, lr=0.0000019, metrics:accuracy:0.4134
INFO:root:10:34:35 [Epoch 1 Batch 470/12277] loss=1.0029, lr=0.0000019, metrics:accuracy:0.4158
INFO:root:10:34:37 [Epoch 1 Batch 480/12277] loss=1.0004, lr=0.0000020, metrics:accuracy:0.4176
INFO:root:10:34:38 [Epoch 1 Batch 490/12277] loss=1.0024, lr=0.0000020, metrics:accuracy:0.4190
INFO:root:10:34:40 [Epoch 1 Batch 500/12277] loss=1.0139, lr=0.0000020, metrics:accuracy:0.4202
INFO:root:10:34:42 [Epoch 1 Batch 510/12277] loss=0.9694, lr=0.0000021, metrics:accuracy:0.4228
INFO:root:10:34:43 [Epoch 1 Batch 520/12277] loss=0.9709, lr=0.0000021, metrics:accuracy:0.4245
INFO:root:10:34:45 [Epoch 1 Batch 530/12277] loss=0.9694, lr=0.0000022, metrics:accuracy:0.4272
INFO:root:10:34:47 [Epoch 1 Batch 540/12277] loss=0.9792, lr=0.0000022, metrics:accuracy:0.4290
INFO:root:10:34:49 [Epoch 1 Batch 550/12277] loss=1.0071, lr=0.0000022, metrics:accuracy:0.4302
INFO:root:10:34:50 [Epoch 1 Batch 560/12277] loss=0.9754, lr=0.0000023, metrics:accuracy:0.4323
INFO:root:10:34:52 [Epoch 1 Batch 570/12277] loss=0.9625, lr=0.0000023, metrics:accuracy:0.4342
INFO:root:10:34:54 [Epoch 1 Batch 580/12277] loss=0.9698, lr=0.0000024, metrics:accuracy:0.4364
INFO:root:10:34:55 [Epoch 1 Batch 590/12277] loss=0.9347, lr=0.0000024, metrics:accuracy:0.4387
INFO:root:10:34:57 [Epoch 1 Batch 600/12277] loss=0.8810, lr=0.0000024, metrics:accuracy:0.4418
INFO:root:10:34:58 [Epoch 1 Batch 610/12277] loss=0.9826, lr=0.0000025, metrics:accuracy:0.4438
INFO:root:10:35:00 [Epoch 1 Batch 620/12277] loss=0.9336, lr=0.0000025, metrics:accuracy:0.4463
INFO:root:10:35:02 [Epoch 1 Batch 630/12277] loss=0.9991, lr=0.0000026, metrics:accuracy:0.4476
INFO:root:10:35:03 [Epoch 1 Batch 640/12277] loss=0.8969, lr=0.0000026, metrics:accuracy:0.4499
INFO:root:10:35:05 [Epoch 1 Batch 650/12277] loss=0.9405, lr=0.0000026, metrics:accuracy:0.4512
INFO:root:10:35:06 [Epoch 1 Batch 660/12277] loss=0.8827, lr=0.0000027, metrics:accuracy:0.4537
INFO:root:10:35:08 [Epoch 1 Batch 670/12277] loss=0.9311, lr=0.0000027, metrics:accuracy:0.4558
INFO:root:10:35:09 [Epoch 1 Batch 680/12277] loss=0.8932, lr=0.0000028, metrics:accuracy:0.4579
INFO:root:10:35:11 [Epoch 1 Batch 690/12277] loss=0.8971, lr=0.0000028, metrics:accuracy:0.4601
INFO:root:10:35:13 [Epoch 1 Batch 700/12277] loss=0.9301, lr=0.0000028, metrics:accuracy:0.4618
INFO:root:10:35:14 [Epoch 1 Batch 710/12277] loss=0.9258, lr=0.0000029, metrics:accuracy:0.4630
INFO:root:10:35:16 [Epoch 1 Batch 720/12277] loss=0.9533, lr=0.0000029, metrics:accuracy:0.4641
INFO:root:10:35:17 [Epoch 1 Batch 730/12277] loss=0.8968, lr=0.0000030, metrics:accuracy:0.4657
INFO:root:10:35:19 [Epoch 1 Batch 740/12277] loss=0.8832, lr=0.0000030, metrics:accuracy:0.4677
INFO:root:10:35:20 [Epoch 1 Batch 750/12277] loss=0.8824, lr=0.0000031, metrics:accuracy:0.4693
INFO:root:10:35:22 [Epoch 1 Batch 760/12277] loss=0.8775, lr=0.0000031, metrics:accuracy:0.4715
INFO:root:10:35:23 [Epoch 1 Batch 770/12277] loss=0.8444, lr=0.0000031, metrics:accuracy:0.4740
INFO:root:10:35:25 [Epoch 1 Batch 780/12277] loss=0.9014, lr=0.0000032, metrics:accuracy:0.4751
INFO:root:10:35:26 [Epoch 1 Batch 790/12277] loss=0.8453, lr=0.0000032, metrics:accuracy:0.4772
INFO:root:10:35:28 [Epoch 1 Batch 800/12277] loss=0.8779, lr=0.0000033, metrics:accuracy:0.4784
INFO:root:10:35:29 [Epoch 1 Batch 810/12277] loss=0.8824, lr=0.0000033, metrics:accuracy:0.4803
INFO:root:10:35:31 [Epoch 1 Batch 820/12277] loss=0.9162, lr=0.0000033, metrics:accuracy:0.4815
INFO:root:10:35:33 [Epoch 1 Batch 830/12277] loss=0.8253, lr=0.0000034, metrics:accuracy:0.4833
INFO:root:10:35:34 [Epoch 1 Batch 840/12277] loss=0.8737, lr=0.0000034, metrics:accuracy:0.4848
INFO:root:10:35:36 [Epoch 1 Batch 850/12277] loss=0.8483, lr=0.0000035, metrics:accuracy:0.4867
INFO:root:10:35:37 [Epoch 1 Batch 860/12277] loss=0.8930, lr=0.0000035, metrics:accuracy:0.4879
INFO:root:10:35:39 [Epoch 1 Batch 870/12277] loss=0.8513, lr=0.0000035, metrics:accuracy:0.4892
INFO:root:10:35:40 [Epoch 1 Batch 880/12277] loss=0.8607, lr=0.0000036, metrics:accuracy:0.4904
INFO:root:10:35:42 [Epoch 1 Batch 890/12277] loss=0.8115, lr=0.0000036, metrics:accuracy:0.4921
INFO:root:10:35:44 [Epoch 1 Batch 900/12277] loss=0.9206, lr=0.0000037, metrics:accuracy:0.4929
INFO:root:10:35:45 [Epoch 1 Batch 910/12277] loss=0.8618, lr=0.0000037, metrics:accuracy:0.4943
INFO:root:10:35:47 [Epoch 1 Batch 920/12277] loss=0.8235, lr=0.0000037, metrics:accuracy:0.4960
INFO:root:10:35:49 [Epoch 1 Batch 930/12277] loss=0.8538, lr=0.0000038, metrics:accuracy:0.4977
INFO:root:10:35:50 [Epoch 1 Batch 940/12277] loss=0.8755, lr=0.0000038, metrics:accuracy:0.4986
INFO:root:10:35:52 [Epoch 1 Batch 950/12277] loss=0.8497, lr=0.0000039, metrics:accuracy:0.4998
INFO:root:10:35:53 [Epoch 1 Batch 960/12277] loss=0.8886, lr=0.0000039, metrics:accuracy:0.5008
INFO:root:10:35:55 [Epoch 1 Batch 970/12277] loss=0.8615, lr=0.0000039, metrics:accuracy:0.5019
INFO:root:10:35:56 [Epoch 1 Batch 980/12277] loss=0.8830, lr=0.0000040, metrics:accuracy:0.5029
INFO:root:10:35:57 [Epoch 1 Batch 990/12277] loss=0.8006, lr=0.0000040, metrics:accuracy:0.5044
INFO:root:10:35:59 [Epoch 1 Batch 1000/12277] loss=0.8611, lr=0.0000041, metrics:accuracy:0.5056
INFO:root:10:36:01 [Epoch 1 Batch 1010/12277] loss=0.8445, lr=0.0000041, metrics:accuracy:0.5069
INFO:root:10:36:02 [Epoch 1 Batch 1020/12277] loss=0.8458, lr=0.0000042, metrics:accuracy:0.5081
INFO:root:10:36:04 [Epoch 1 Batch 1030/12277] loss=0.7659, lr=0.0000042, metrics:accuracy:0.5100
INFO:root:10:36:05 [Epoch 1 Batch 1040/12277] loss=0.7928, lr=0.0000042, metrics:accuracy:0.5115
INFO:root:10:36:07 [Epoch 1 Batch 1050/12277] loss=0.8439, lr=0.0000043, metrics:accuracy:0.5127
INFO:root:10:36:09 [Epoch 1 Batch 1060/12277] loss=0.7919, lr=0.0000043, metrics:accuracy:0.5140
INFO:root:10:36:10 [Epoch 1 Batch 1070/12277] loss=0.8749, lr=0.0000044, metrics:accuracy:0.5148
INFO:root:10:36:12 [Epoch 1 Batch 1080/12277] loss=0.8502, lr=0.0000044, metrics:accuracy:0.5159
INFO:root:10:36:14 [Epoch 1 Batch 1090/12277] loss=0.8953, lr=0.0000044, metrics:accuracy:0.5166
INFO:root:10:36:16 [Epoch 1 Batch 1100/12277] loss=0.8264, lr=0.0000045, metrics:accuracy:0.5177
INFO:root:10:36:17 [Epoch 1 Batch 1110/12277] loss=0.9152, lr=0.0000045, metrics:accuracy:0.5184
INFO:root:10:36:19 [Epoch 1 Batch 1120/12277] loss=0.7968, lr=0.0000046, metrics:accuracy:0.5195
INFO:root:10:36:21 [Epoch 1 Batch 1130/12277] loss=0.7915, lr=0.0000046, metrics:accuracy:0.5205
INFO:root:10:36:22 [Epoch 1 Batch 1140/12277] loss=0.8566, lr=0.0000046, metrics:accuracy:0.5213
INFO:root:10:36:24 [Epoch 1 Batch 1150/12277] loss=0.8362, lr=0.0000047, metrics:accuracy:0.5225
INFO:root:10:36:25 [Epoch 1 Batch 1160/12277] loss=0.8281, lr=0.0000047, metrics:accuracy:0.5235
INFO:root:10:36:27 [Epoch 1 Batch 1170/12277] loss=0.8302, lr=0.0000048, metrics:accuracy:0.5242
INFO:root:10:36:29 [Epoch 1 Batch 1180/12277] loss=0.8063, lr=0.0000048, metrics:accuracy:0.5253
INFO:root:10:36:30 [Epoch 1 Batch 1190/12277] loss=0.8421, lr=0.0000048, metrics:accuracy:0.5259
INFO:root:10:36:32 [Epoch 1 Batch 1200/12277] loss=0.8008, lr=0.0000049, metrics:accuracy:0.5268
INFO:root:10:36:34 [Epoch 1 Batch 1210/12277] loss=0.8703, lr=0.0000049, metrics:accuracy:0.5276
INFO:root:10:36:35 [Epoch 1 Batch 1220/12277] loss=0.8307, lr=0.0000050, metrics:accuracy:0.5284
INFO:root:10:36:37 [Epoch 1 Batch 1230/12277] loss=0.8217, lr=0.0000050, metrics:accuracy:0.5293
INFO:root:10:36:38 [Epoch 1 Batch 1240/12277] loss=0.8435, lr=0.0000050, metrics:accuracy:0.5302
INFO:root:10:36:40 [Epoch 1 Batch 1250/12277] loss=0.8614, lr=0.0000051, metrics:accuracy:0.5309
INFO:root:10:36:42 [Epoch 1 Batch 1260/12277] loss=0.7704, lr=0.0000051, metrics:accuracy:0.5318
INFO:root:10:36:44 [Epoch 1 Batch 1270/12277] loss=0.8400, lr=0.0000052, metrics:accuracy:0.5326
INFO:root:10:36:45 [Epoch 1 Batch 1280/12277] loss=0.7880, lr=0.0000052, metrics:accuracy:0.5334
INFO:root:10:36:47 [Epoch 1 Batch 1290/12277] loss=0.8443, lr=0.0000053, metrics:accuracy:0.5343
INFO:root:10:36:49 [Epoch 1 Batch 1300/12277] loss=0.8055, lr=0.0000053, metrics:accuracy:0.5352
INFO:root:10:36:50 [Epoch 1 Batch 1310/12277] loss=0.7738, lr=0.0000053, metrics:accuracy:0.5362
INFO:root:10:36:52 [Epoch 1 Batch 1320/12277] loss=0.8071, lr=0.0000054, metrics:accuracy:0.5369
INFO:root:10:36:54 [Epoch 1 Batch 1330/12277] loss=0.8097, lr=0.0000054, metrics:accuracy:0.5377
INFO:root:10:36:56 [Epoch 1 Batch 1340/12277] loss=0.8114, lr=0.0000055, metrics:accuracy:0.5385
INFO:root:10:36:57 [Epoch 1 Batch 1350/12277] loss=0.7839, lr=0.0000055, metrics:accuracy:0.5393
INFO:root:10:36:59 [Epoch 1 Batch 1360/12277] loss=0.8315, lr=0.0000055, metrics:accuracy:0.5398
INFO:root:10:37:01 [Epoch 1 Batch 1370/12277] loss=0.7952, lr=0.0000056, metrics:accuracy:0.5409
INFO:root:10:37:02 [Epoch 1 Batch 1380/12277] loss=0.7237, lr=0.0000056, metrics:accuracy:0.5419
INFO:root:10:37:04 [Epoch 1 Batch 1390/12277] loss=0.7850, lr=0.0000057, metrics:accuracy:0.5428
INFO:root:10:37:06 [Epoch 1 Batch 1400/12277] loss=0.8244, lr=0.0000057, metrics:accuracy:0.5436
INFO:root:10:37:08 [Epoch 1 Batch 1410/12277] loss=0.7371, lr=0.0000057, metrics:accuracy:0.5444
INFO:root:10:37:09 [Epoch 1 Batch 1420/12277] loss=0.7574, lr=0.0000058, metrics:accuracy:0.5454
INFO:root:10:37:11 [Epoch 1 Batch 1430/12277] loss=0.7459, lr=0.0000058, metrics:accuracy:0.5463
INFO:root:10:37:13 [Epoch 1 Batch 1440/12277] loss=0.7821, lr=0.0000059, metrics:accuracy:0.5472
INFO:root:10:37:14 [Epoch 1 Batch 1450/12277] loss=0.7743, lr=0.0000059, metrics:accuracy:0.5479
INFO:root:10:37:15 [Epoch 1 Batch 1460/12277] loss=0.7489, lr=0.0000059, metrics:accuracy:0.5487
INFO:root:10:37:17 [Epoch 1 Batch 1470/12277] loss=0.7779, lr=0.0000060, metrics:accuracy:0.5495
INFO:root:10:37:19 [Epoch 1 Batch 1480/12277] loss=0.8124, lr=0.0000060, metrics:accuracy:0.5500
INFO:root:10:37:20 [Epoch 1 Batch 1490/12277] loss=0.7797, lr=0.0000061, metrics:accuracy:0.5508
INFO:root:10:37:22 [Epoch 1 Batch 1500/12277] loss=0.7601, lr=0.0000061, metrics:accuracy:0.5516
INFO:root:10:37:23 [Epoch 1 Batch 1510/12277] loss=0.7622, lr=0.0000061, metrics:accuracy:0.5525
INFO:root:10:37:25 [Epoch 1 Batch 1520/12277] loss=0.7522, lr=0.0000062, metrics:accuracy:0.5533
INFO:root:10:37:27 [Epoch 1 Batch 1530/12277] loss=0.7345, lr=0.0000062, metrics:accuracy:0.5542
INFO:root:10:37:28 [Epoch 1 Batch 1540/12277] loss=0.7665, lr=0.0000063, metrics:accuracy:0.5551
INFO:root:10:37:30 [Epoch 1 Batch 1550/12277] loss=0.7123, lr=0.0000063, metrics:accuracy:0.5561
INFO:root:10:37:32 [Epoch 1 Batch 1560/12277] loss=0.7656, lr=0.0000064, metrics:accuracy:0.5568
INFO:root:10:37:33 [Epoch 1 Batch 1570/12277] loss=0.7324, lr=0.0000064, metrics:accuracy:0.5576
INFO:root:10:37:35 [Epoch 1 Batch 1580/12277] loss=0.7983, lr=0.0000064, metrics:accuracy:0.5584
INFO:root:10:37:37 [Epoch 1 Batch 1590/12277] loss=0.8104, lr=0.0000065, metrics:accuracy:0.5591
INFO:root:10:37:38 [Epoch 1 Batch 1600/12277] loss=0.7240, lr=0.0000065, metrics:accuracy:0.5597
INFO:root:10:37:40 [Epoch 1 Batch 1610/12277] loss=0.7678, lr=0.0000066, metrics:accuracy:0.5603
INFO:root:10:37:42 [Epoch 1 Batch 1620/12277] loss=0.7987, lr=0.0000066, metrics:accuracy:0.5607
INFO:root:10:37:43 [Epoch 1 Batch 1630/12277] loss=0.8101, lr=0.0000066, metrics:accuracy:0.5613
INFO:root:10:37:45 [Epoch 1 Batch 1640/12277] loss=0.7575, lr=0.0000067, metrics:accuracy:0.5620
INFO:root:10:37:47 [Epoch 1 Batch 1650/12277] loss=0.7930, lr=0.0000067, metrics:accuracy:0.5625
INFO:root:10:37:49 [Epoch 1 Batch 1660/12277] loss=0.8010, lr=0.0000068, metrics:accuracy:0.5630
INFO:root:10:37:51 [Epoch 1 Batch 1670/12277] loss=0.7944, lr=0.0000068, metrics:accuracy:0.5635
INFO:root:10:37:52 [Epoch 1 Batch 1680/12277] loss=0.7874, lr=0.0000068, metrics:accuracy:0.5642
INFO:root:10:37:54 [Epoch 1 Batch 1690/12277] loss=0.7901, lr=0.0000069, metrics:accuracy:0.5649
INFO:root:10:37:56 [Epoch 1 Batch 1700/12277] loss=0.8086, lr=0.0000069, metrics:accuracy:0.5654
INFO:root:10:37:57 [Epoch 1 Batch 1710/12277] loss=0.7566, lr=0.0000070, metrics:accuracy:0.5661
INFO:root:10:37:59 [Epoch 1 Batch 1720/12277] loss=0.7162, lr=0.0000070, metrics:accuracy:0.5669
INFO:root:10:38:00 [Epoch 1 Batch 1730/12277] loss=0.6781, lr=0.0000070, metrics:accuracy:0.5677
INFO:root:10:38:02 [Epoch 1 Batch 1740/12277] loss=0.8182, lr=0.0000071, metrics:accuracy:0.5681
INFO:root:10:38:04 [Epoch 1 Batch 1750/12277] loss=0.7148, lr=0.0000071, metrics:accuracy:0.5687
INFO:root:10:38:05 [Epoch 1 Batch 1760/12277] loss=0.7869, lr=0.0000072, metrics:accuracy:0.5692
INFO:root:10:38:07 [Epoch 1 Batch 1770/12277] loss=0.8092, lr=0.0000072, metrics:accuracy:0.5696
INFO:root:10:38:09 [Epoch 1 Batch 1780/12277] loss=0.7701, lr=0.0000072, metrics:accuracy:0.5702
INFO:root:10:38:11 [Epoch 1 Batch 1790/12277] loss=0.8209, lr=0.0000073, metrics:accuracy:0.5703
INFO:root:10:38:12 [Epoch 1 Batch 1800/12277] loss=0.7848, lr=0.0000073, metrics:accuracy:0.5709
INFO:root:10:38:14 [Epoch 1 Batch 1810/12277] loss=0.7603, lr=0.0000074, metrics:accuracy:0.5714
INFO:root:10:38:16 [Epoch 1 Batch 1820/12277] loss=0.7671, lr=0.0000074, metrics:accuracy:0.5720
INFO:root:10:38:17 [Epoch 1 Batch 1830/12277] loss=0.8298, lr=0.0000075, metrics:accuracy:0.5724
INFO:root:10:38:19 [Epoch 1 Batch 1840/12277] loss=0.7766, lr=0.0000075, metrics:accuracy:0.5728
INFO:root:10:38:21 [Epoch 1 Batch 1850/12277] loss=0.7125, lr=0.0000075, metrics:accuracy:0.5734
INFO:root:10:38:22 [Epoch 1 Batch 1860/12277] loss=0.8482, lr=0.0000076, metrics:accuracy:0.5737
INFO:root:10:38:24 [Epoch 1 Batch 1870/12277] loss=0.7776, lr=0.0000076, metrics:accuracy:0.5742
INFO:root:10:38:25 [Epoch 1 Batch 1880/12277] loss=0.7725, lr=0.0000077, metrics:accuracy:0.5747
INFO:root:10:38:27 [Epoch 1 Batch 1890/12277] loss=0.7402, lr=0.0000077, metrics:accuracy:0.5752
INFO:root:10:38:29 [Epoch 1 Batch 1900/12277] loss=0.7450, lr=0.0000077, metrics:accuracy:0.5757
INFO:root:10:38:31 [Epoch 1 Batch 1910/12277] loss=0.7247, lr=0.0000078, metrics:accuracy:0.5762
INFO:root:10:38:32 [Epoch 1 Batch 1920/12277] loss=0.8429, lr=0.0000078, metrics:accuracy:0.5766
INFO:root:10:38:34 [Epoch 1 Batch 1930/12277] loss=0.7337, lr=0.0000079, metrics:accuracy:0.5773
INFO:root:10:38:36 [Epoch 1 Batch 1940/12277] loss=0.7935, lr=0.0000079, metrics:accuracy:0.5778
INFO:root:10:38:37 [Epoch 1 Batch 1950/12277] loss=0.6402, lr=0.0000079, metrics:accuracy:0.5787
INFO:root:10:38:39 [Epoch 1 Batch 1960/12277] loss=0.7730, lr=0.0000080, metrics:accuracy:0.5792
INFO:root:10:38:41 [Epoch 1 Batch 1970/12277] loss=0.7606, lr=0.0000080, metrics:accuracy:0.5798
INFO:root:10:38:42 [Epoch 1 Batch 1980/12277] loss=0.7149, lr=0.0000081, metrics:accuracy:0.5804
INFO:root:10:38:44 [Epoch 1 Batch 1990/12277] loss=0.7457, lr=0.0000081, metrics:accuracy:0.5809
INFO:root:10:38:46 [Epoch 1 Batch 2000/12277] loss=0.7793, lr=0.0000081, metrics:accuracy:0.5813
INFO:root:10:38:48 [Epoch 1 Batch 2010/12277] loss=0.7537, lr=0.0000082, metrics:accuracy:0.5817
INFO:root:10:38:49 [Epoch 1 Batch 2020/12277] loss=0.7450, lr=0.0000082, metrics:accuracy:0.5823
INFO:root:10:38:51 [Epoch 1 Batch 2030/12277] loss=0.7682, lr=0.0000083, metrics:accuracy:0.5827
INFO:root:10:38:53 [Epoch 1 Batch 2040/12277] loss=0.6917, lr=0.0000083, metrics:accuracy:0.5833
INFO:root:10:38:54 [Epoch 1 Batch 2050/12277] loss=0.7080, lr=0.0000083, metrics:accuracy:0.5840
INFO:root:10:38:56 [Epoch 1 Batch 2060/12277] loss=0.7472, lr=0.0000084, metrics:accuracy:0.5844
INFO:root:10:38:58 [Epoch 1 Batch 2070/12277] loss=0.7271, lr=0.0000084, metrics:accuracy:0.5850
INFO:root:10:38:59 [Epoch 1 Batch 2080/12277] loss=0.7220, lr=0.0000085, metrics:accuracy:0.5855
INFO:root:10:39:01 [Epoch 1 Batch 2090/12277] loss=0.7727, lr=0.0000085, metrics:accuracy:0.5858
INFO:root:10:39:02 [Epoch 1 Batch 2100/12277] loss=0.8194, lr=0.0000086, metrics:accuracy:0.5861
INFO:root:10:39:04 [Epoch 1 Batch 2110/12277] loss=0.6449, lr=0.0000086, metrics:accuracy:0.5869
INFO:root:10:39:06 [Epoch 1 Batch 2120/12277] loss=0.7120, lr=0.0000086, metrics:accuracy:0.5874
INFO:root:10:39:07 [Epoch 1 Batch 2130/12277] loss=0.6953, lr=0.0000087, metrics:accuracy:0.5880
INFO:root:10:39:09 [Epoch 1 Batch 2140/12277] loss=0.6696, lr=0.0000087, metrics:accuracy:0.5886
INFO:root:10:39:11 [Epoch 1 Batch 2150/12277] loss=0.6868, lr=0.0000088, metrics:accuracy:0.5891
INFO:root:10:39:12 [Epoch 1 Batch 2160/12277] loss=0.7472, lr=0.0000088, metrics:accuracy:0.5894
INFO:root:10:39:14 [Epoch 1 Batch 2170/12277] loss=0.7215, lr=0.0000088, metrics:accuracy:0.5901
INFO:root:10:39:16 [Epoch 1 Batch 2180/12277] loss=0.7955, lr=0.0000089, metrics:accuracy:0.5905
INFO:root:10:39:17 [Epoch 1 Batch 2190/12277] loss=0.6596, lr=0.0000089, metrics:accuracy:0.5912
INFO:root:10:39:19 [Epoch 1 Batch 2200/12277] loss=0.6973, lr=0.0000090, metrics:accuracy:0.5919
INFO:root:10:39:21 [Epoch 1 Batch 2210/12277] loss=0.8130, lr=0.0000090, metrics:accuracy:0.5920
INFO:root:10:39:22 [Epoch 1 Batch 2220/12277] loss=0.7589, lr=0.0000090, metrics:accuracy:0.5924
INFO:root:10:39:24 [Epoch 1 Batch 2230/12277] loss=0.7348, lr=0.0000091, metrics:accuracy:0.5929
INFO:root:10:39:26 [Epoch 1 Batch 2240/12277] loss=0.7294, lr=0.0000091, metrics:accuracy:0.5934
INFO:root:10:39:28 [Epoch 1 Batch 2250/12277] loss=0.7413, lr=0.0000092, metrics:accuracy:0.5937
INFO:root:10:39:29 [Epoch 1 Batch 2260/12277] loss=0.8025, lr=0.0000092, metrics:accuracy:0.5940
INFO:root:10:39:31 [Epoch 1 Batch 2270/12277] loss=0.7342, lr=0.0000092, metrics:accuracy:0.5942
INFO:root:10:39:33 [Epoch 1 Batch 2280/12277] loss=0.7513, lr=0.0000093, metrics:accuracy:0.5946
INFO:root:10:39:35 [Epoch 1 Batch 2290/12277] loss=0.8251, lr=0.0000093, metrics:accuracy:0.5948
INFO:root:10:39:36 [Epoch 1 Batch 2300/12277] loss=0.7215, lr=0.0000094, metrics:accuracy:0.5952
INFO:root:10:39:38 [Epoch 1 Batch 2310/12277] loss=0.7047, lr=0.0000094, metrics:accuracy:0.5956
INFO:root:10:39:40 [Epoch 1 Batch 2320/12277] loss=0.7785, lr=0.0000094, metrics:accuracy:0.5959
INFO:root:10:39:41 [Epoch 1 Batch 2330/12277] loss=0.7079, lr=0.0000095, metrics:accuracy:0.5964
INFO:root:10:39:43 [Epoch 1 Batch 2340/12277] loss=0.7651, lr=0.0000095, metrics:accuracy:0.5968
INFO:root:10:39:44 [Epoch 1 Batch 2350/12277] loss=0.6817, lr=0.0000096, metrics:accuracy:0.5973
INFO:root:10:39:46 [Epoch 1 Batch 2360/12277] loss=0.6639, lr=0.0000096, metrics:accuracy:0.5978
INFO:root:10:39:47 [Epoch 1 Batch 2370/12277] loss=0.7095, lr=0.0000097, metrics:accuracy:0.5983
INFO:root:10:39:49 [Epoch 1 Batch 2380/12277] loss=0.7359, lr=0.0000097, metrics:accuracy:0.5985
INFO:root:10:39:51 [Epoch 1 Batch 2390/12277] loss=0.7546, lr=0.0000097, metrics:accuracy:0.5988
INFO:root:10:39:52 [Epoch 1 Batch 2400/12277] loss=0.6949, lr=0.0000098, metrics:accuracy:0.5993
INFO:root:10:39:54 [Epoch 1 Batch 2410/12277] loss=0.6766, lr=0.0000098, metrics:accuracy:0.5998
INFO:root:10:39:55 [Epoch 1 Batch 2420/12277] loss=0.7046, lr=0.0000099, metrics:accuracy:0.6002
INFO:root:10:39:57 [Epoch 1 Batch 2430/12277] loss=0.7185, lr=0.0000099, metrics:accuracy:0.6005
INFO:root:10:39:58 [Epoch 1 Batch 2440/12277] loss=0.7608, lr=0.0000099, metrics:accuracy:0.6008
INFO:root:10:40:00 [Epoch 1 Batch 2450/12277] loss=0.7845, lr=0.0000100, metrics:accuracy:0.6011
INFO:root:10:40:02 [Epoch 1 Batch 2460/12277] loss=0.7133, lr=0.0000100, metrics:accuracy:0.6014
INFO:root:10:40:04 [Epoch 1 Batch 2470/12277] loss=0.6530, lr=0.0000101, metrics:accuracy:0.6019
INFO:root:10:40:05 [Epoch 1 Batch 2480/12277] loss=0.7730, lr=0.0000101, metrics:accuracy:0.6022
INFO:root:10:40:06 [Epoch 1 Batch 2490/12277] loss=0.7413, lr=0.0000101, metrics:accuracy:0.6026
INFO:root:10:40:08 [Epoch 1 Batch 2500/12277] loss=0.6849, lr=0.0000102, metrics:accuracy:0.6030
INFO:root:10:40:09 [Epoch 1 Batch 2510/12277] loss=0.6439, lr=0.0000102, metrics:accuracy:0.6035
INFO:root:10:40:11 [Epoch 1 Batch 2520/12277] loss=0.7072, lr=0.0000103, metrics:accuracy:0.6039
INFO:root:10:40:13 [Epoch 1 Batch 2530/12277] loss=0.6920, lr=0.0000103, metrics:accuracy:0.6042
INFO:root:10:40:14 [Epoch 1 Batch 2540/12277] loss=0.7322, lr=0.0000103, metrics:accuracy:0.6045
INFO:root:10:40:16 [Epoch 1 Batch 2550/12277] loss=0.6908, lr=0.0000104, metrics:accuracy:0.6049
INFO:root:10:40:17 [Epoch 1 Batch 2560/12277] loss=0.7219, lr=0.0000104, metrics:accuracy:0.6054
INFO:root:10:40:19 [Epoch 1 Batch 2570/12277] loss=0.6880, lr=0.0000105, metrics:accuracy:0.6057
INFO:root:10:40:21 [Epoch 1 Batch 2580/12277] loss=0.6923, lr=0.0000105, metrics:accuracy:0.6060
INFO:root:10:40:22 [Epoch 1 Batch 2590/12277] loss=0.7359, lr=0.0000106, metrics:accuracy:0.6065
INFO:root:10:40:24 [Epoch 1 Batch 2600/12277] loss=0.6817, lr=0.0000106, metrics:accuracy:0.6068
INFO:root:10:40:25 [Epoch 1 Batch 2610/12277] loss=0.6953, lr=0.0000106, metrics:accuracy:0.6072
INFO:root:10:40:27 [Epoch 1 Batch 2620/12277] loss=0.6638, lr=0.0000107, metrics:accuracy:0.6077
INFO:root:10:40:28 [Epoch 1 Batch 2630/12277] loss=0.6496, lr=0.0000107, metrics:accuracy:0.6081
INFO:root:10:40:30 [Epoch 1 Batch 2640/12277] loss=0.7025, lr=0.0000108, metrics:accuracy:0.6086
INFO:root:10:40:31 [Epoch 1 Batch 2650/12277] loss=0.7387, lr=0.0000108, metrics:accuracy:0.6090
INFO:root:10:40:32 [Epoch 1 Batch 2660/12277] loss=0.7669, lr=0.0000108, metrics:accuracy:0.6093
INFO:root:10:40:34 [Epoch 1 Batch 2670/12277] loss=0.6952, lr=0.0000109, metrics:accuracy:0.6096
INFO:root:10:40:35 [Epoch 1 Batch 2680/12277] loss=0.7129, lr=0.0000109, metrics:accuracy:0.6100
INFO:root:10:40:37 [Epoch 1 Batch 2690/12277] loss=0.7184, lr=0.0000110, metrics:accuracy:0.6103
INFO:root:10:40:38 [Epoch 1 Batch 2700/12277] loss=0.7209, lr=0.0000110, metrics:accuracy:0.6106
INFO:root:10:40:40 [Epoch 1 Batch 2710/12277] loss=0.7880, lr=0.0000110, metrics:accuracy:0.6108
INFO:root:10:40:42 [Epoch 1 Batch 2720/12277] loss=0.6653, lr=0.0000111, metrics:accuracy:0.6112
INFO:root:10:40:44 [Epoch 1 Batch 2730/12277] loss=0.7139, lr=0.0000111, metrics:accuracy:0.6115
INFO:root:10:40:45 [Epoch 1 Batch 2740/12277] loss=0.6489, lr=0.0000112, metrics:accuracy:0.6119
INFO:root:10:40:47 [Epoch 1 Batch 2750/12277] loss=0.7589, lr=0.0000112, metrics:accuracy:0.6121
INFO:root:10:40:48 [Epoch 1 Batch 2760/12277] loss=0.6371, lr=0.0000112, metrics:accuracy:0.6127
INFO:root:10:40:50 [Epoch 1 Batch 2770/12277] loss=0.7473, lr=0.0000113, metrics:accuracy:0.6130
INFO:root:10:40:52 [Epoch 1 Batch 2780/12277] loss=0.7389, lr=0.0000113, metrics:accuracy:0.6133
INFO:root:10:40:53 [Epoch 1 Batch 2790/12277] loss=0.6712, lr=0.0000114, metrics:accuracy:0.6137
INFO:root:10:40:56 [Epoch 1 Batch 2800/12277] loss=0.7642, lr=0.0000114, metrics:accuracy:0.6139
INFO:root:10:40:57 [Epoch 1 Batch 2810/12277] loss=0.7674, lr=0.0000114, metrics:accuracy:0.6141
INFO:root:10:40:59 [Epoch 1 Batch 2820/12277] loss=0.7265, lr=0.0000115, metrics:accuracy:0.6144
INFO:root:10:41:00 [Epoch 1 Batch 2830/12277] loss=0.6849, lr=0.0000115, metrics:accuracy:0.6148
INFO:root:10:41:02 [Epoch 1 Batch 2840/12277] loss=0.6142, lr=0.0000116, metrics:accuracy:0.6153
INFO:root:10:41:04 [Epoch 1 Batch 2850/12277] loss=0.7375, lr=0.0000116, metrics:accuracy:0.6157
INFO:root:10:41:05 [Epoch 1 Batch 2860/12277] loss=0.6425, lr=0.0000117, metrics:accuracy:0.6161
INFO:root:10:41:07 [Epoch 1 Batch 2870/12277] loss=0.7210, lr=0.0000117, metrics:accuracy:0.6163
INFO:root:10:41:08 [Epoch 1 Batch 2880/12277] loss=0.7064, lr=0.0000117, metrics:accuracy:0.6166
INFO:root:10:41:10 [Epoch 1 Batch 2890/12277] loss=0.7167, lr=0.0000118, metrics:accuracy:0.6170
INFO:root:10:41:11 [Epoch 1 Batch 2900/12277] loss=0.7056, lr=0.0000118, metrics:accuracy:0.6173
INFO:root:10:41:13 [Epoch 1 Batch 2910/12277] loss=0.8173, lr=0.0000119, metrics:accuracy:0.6175
INFO:root:10:41:15 [Epoch 1 Batch 2920/12277] loss=0.7468, lr=0.0000119, metrics:accuracy:0.6178
INFO:root:10:41:16 [Epoch 1 Batch 2930/12277] loss=0.6543, lr=0.0000119, metrics:accuracy:0.6181
INFO:root:10:41:18 [Epoch 1 Batch 2940/12277] loss=0.7440, lr=0.0000120, metrics:accuracy:0.6184
INFO:root:10:41:19 [Epoch 1 Batch 2950/12277] loss=0.6601, lr=0.0000120, metrics:accuracy:0.6188
INFO:root:10:41:21 [Epoch 1 Batch 2960/12277] loss=0.6329, lr=0.0000121, metrics:accuracy:0.6192
INFO:root:10:41:23 [Epoch 1 Batch 2970/12277] loss=0.7565, lr=0.0000121, metrics:accuracy:0.6194
INFO:root:10:41:25 [Epoch 1 Batch 2980/12277] loss=0.6560, lr=0.0000121, metrics:accuracy:0.6197
INFO:root:10:41:26 [Epoch 1 Batch 2990/12277] loss=0.6987, lr=0.0000122, metrics:accuracy:0.6201
INFO:root:10:41:27 [Epoch 1 Batch 3000/12277] loss=0.7277, lr=0.0000122, metrics:accuracy:0.6204
INFO:root:10:41:29 [Epoch 1 Batch 3010/12277] loss=0.6817, lr=0.0000123, metrics:accuracy:0.6207
INFO:root:10:41:31 [Epoch 1 Batch 3020/12277] loss=0.7285, lr=0.0000123, metrics:accuracy:0.6209
INFO:root:10:41:32 [Epoch 1 Batch 3030/12277] loss=0.7290, lr=0.0000123, metrics:accuracy:0.6211
INFO:root:10:41:34 [Epoch 1 Batch 3040/12277] loss=0.7135, lr=0.0000124, metrics:accuracy:0.6213
INFO:root:10:41:36 [Epoch 1 Batch 3050/12277] loss=0.7269, lr=0.0000124, metrics:accuracy:0.6216
INFO:root:10:41:38 [Epoch 1 Batch 3060/12277] loss=0.6810, lr=0.0000125, metrics:accuracy:0.6219
INFO:root:10:41:39 [Epoch 1 Batch 3070/12277] loss=0.7759, lr=0.0000125, metrics:accuracy:0.6220
INFO:root:10:41:41 [Epoch 1 Batch 3080/12277] loss=0.7274, lr=0.0000125, metrics:accuracy:0.6222
INFO:root:10:41:43 [Epoch 1 Batch 3090/12277] loss=0.7023, lr=0.0000126, metrics:accuracy:0.6225
INFO:root:10:41:44 [Epoch 1 Batch 3100/12277] loss=0.7186, lr=0.0000126, metrics:accuracy:0.6228
INFO:root:10:41:46 [Epoch 1 Batch 3110/12277] loss=0.7233, lr=0.0000127, metrics:accuracy:0.6231
INFO:root:10:41:48 [Epoch 1 Batch 3120/12277] loss=0.6586, lr=0.0000127, metrics:accuracy:0.6234
INFO:root:10:41:49 [Epoch 1 Batch 3130/12277] loss=0.6867, lr=0.0000128, metrics:accuracy:0.6237
INFO:root:10:41:51 [Epoch 1 Batch 3140/12277] loss=0.6883, lr=0.0000128, metrics:accuracy:0.6239
INFO:root:10:41:53 [Epoch 1 Batch 3150/12277] loss=0.7239, lr=0.0000128, metrics:accuracy:0.6241
INFO:root:10:41:54 [Epoch 1 Batch 3160/12277] loss=0.7249, lr=0.0000129, metrics:accuracy:0.6244
INFO:root:10:41:56 [Epoch 1 Batch 3170/12277] loss=0.6777, lr=0.0000129, metrics:accuracy:0.6247
INFO:root:10:41:58 [Epoch 1 Batch 3180/12277] loss=0.6679, lr=0.0000130, metrics:accuracy:0.6250
INFO:root:10:41:59 [Epoch 1 Batch 3190/12277] loss=0.6382, lr=0.0000130, metrics:accuracy:0.6253
INFO:root:10:42:01 [Epoch 1 Batch 3200/12277] loss=0.7436, lr=0.0000130, metrics:accuracy:0.6255
INFO:root:10:42:03 [Epoch 1 Batch 3210/12277] loss=0.6655, lr=0.0000131, metrics:accuracy:0.6258
INFO:root:10:42:04 [Epoch 1 Batch 3220/12277] loss=0.6648, lr=0.0000131, metrics:accuracy:0.6260
INFO:root:10:42:05 [Epoch 1 Batch 3230/12277] loss=0.6298, lr=0.0000132, metrics:accuracy:0.6263
INFO:root:10:42:07 [Epoch 1 Batch 3240/12277] loss=0.8166, lr=0.0000132, metrics:accuracy:0.6264
INFO:root:10:42:08 [Epoch 1 Batch 3250/12277] loss=0.6623, lr=0.0000132, metrics:accuracy:0.6267
INFO:root:10:42:10 [Epoch 1 Batch 3260/12277] loss=0.6170, lr=0.0000133, metrics:accuracy:0.6270
INFO:root:10:42:11 [Epoch 1 Batch 3270/12277] loss=0.6558, lr=0.0000133, metrics:accuracy:0.6274
INFO:root:10:42:13 [Epoch 1 Batch 3280/12277] loss=0.7298, lr=0.0000134, metrics:accuracy:0.6276
INFO:root:10:42:14 [Epoch 1 Batch 3290/12277] loss=0.6804, lr=0.0000134, metrics:accuracy:0.6278
INFO:root:10:42:16 [Epoch 1 Batch 3300/12277] loss=0.6549, lr=0.0000134, metrics:accuracy:0.6281
INFO:root:10:42:17 [Epoch 1 Batch 3310/12277] loss=0.7416, lr=0.0000135, metrics:accuracy:0.6283
INFO:root:10:42:19 [Epoch 1 Batch 3320/12277] loss=0.7241, lr=0.0000135, metrics:accuracy:0.6286
INFO:root:10:42:21 [Epoch 1 Batch 3330/12277] loss=0.6177, lr=0.0000136, metrics:accuracy:0.6289
INFO:root:10:42:22 [Epoch 1 Batch 3340/12277] loss=0.7316, lr=0.0000136, metrics:accuracy:0.6291
INFO:root:10:42:24 [Epoch 1 Batch 3350/12277] loss=0.7062, lr=0.0000136, metrics:accuracy:0.6293
INFO:root:10:42:26 [Epoch 1 Batch 3360/12277] loss=0.6599, lr=0.0000137, metrics:accuracy:0.6296
INFO:root:10:42:28 [Epoch 1 Batch 3370/12277] loss=0.5521, lr=0.0000137, metrics:accuracy:0.6300
INFO:root:10:42:30 [Epoch 1 Batch 3380/12277] loss=0.6385, lr=0.0000138, metrics:accuracy:0.6302
INFO:root:10:42:32 [Epoch 1 Batch 3390/12277] loss=0.7148, lr=0.0000138, metrics:accuracy:0.6305
INFO:root:10:42:33 [Epoch 1 Batch 3400/12277] loss=0.6853, lr=0.0000139, metrics:accuracy:0.6307
INFO:root:10:42:35 [Epoch 1 Batch 3410/12277] loss=0.7447, lr=0.0000139, metrics:accuracy:0.6309
INFO:root:10:42:36 [Epoch 1 Batch 3420/12277] loss=0.6494, lr=0.0000139, metrics:accuracy:0.6313
INFO:root:10:42:38 [Epoch 1 Batch 3430/12277] loss=0.6898, lr=0.0000140, metrics:accuracy:0.6315
INFO:root:10:42:39 [Epoch 1 Batch 3440/12277] loss=0.7054, lr=0.0000140, metrics:accuracy:0.6318
INFO:root:10:42:41 [Epoch 1 Batch 3450/12277] loss=0.6768, lr=0.0000141, metrics:accuracy:0.6319
INFO:root:10:42:42 [Epoch 1 Batch 3460/12277] loss=0.6947, lr=0.0000141, metrics:accuracy:0.6322
INFO:root:10:42:44 [Epoch 1 Batch 3470/12277] loss=0.7372, lr=0.0000141, metrics:accuracy:0.6324
INFO:root:10:42:46 [Epoch 1 Batch 3480/12277] loss=0.6422, lr=0.0000142, metrics:accuracy:0.6326
INFO:root:10:42:47 [Epoch 1 Batch 3490/12277] loss=0.6888, lr=0.0000142, metrics:accuracy:0.6328
INFO:root:10:42:49 [Epoch 1 Batch 3500/12277] loss=0.7038, lr=0.0000143, metrics:accuracy:0.6331
INFO:root:10:42:51 [Epoch 1 Batch 3510/12277] loss=0.6721, lr=0.0000143, metrics:accuracy:0.6334
INFO:root:10:42:53 [Epoch 1 Batch 3520/12277] loss=0.6800, lr=0.0000143, metrics:accuracy:0.6337
INFO:root:10:42:54 [Epoch 1 Batch 3530/12277] loss=0.7071, lr=0.0000144, metrics:accuracy:0.6339
INFO:root:10:42:56 [Epoch 1 Batch 3540/12277] loss=0.7205, lr=0.0000144, metrics:accuracy:0.6340
INFO:root:10:42:57 [Epoch 1 Batch 3550/12277] loss=0.6684, lr=0.0000145, metrics:accuracy:0.6342
INFO:root:10:42:59 [Epoch 1 Batch 3560/12277] loss=0.6212, lr=0.0000145, metrics:accuracy:0.6345
INFO:root:10:43:01 [Epoch 1 Batch 3570/12277] loss=0.7271, lr=0.0000145, metrics:accuracy:0.6347
INFO:root:10:43:02 [Epoch 1 Batch 3580/12277] loss=0.6847, lr=0.0000146, metrics:accuracy:0.6350
INFO:root:10:43:04 [Epoch 1 Batch 3590/12277] loss=0.7046, lr=0.0000146, metrics:accuracy:0.6352
INFO:root:10:43:05 [Epoch 1 Batch 3600/12277] loss=0.6654, lr=0.0000147, metrics:accuracy:0.6355
INFO:root:10:43:07 [Epoch 1 Batch 3610/12277] loss=0.7638, lr=0.0000147, metrics:accuracy:0.6355
INFO:root:10:43:08 [Epoch 1 Batch 3620/12277] loss=0.6772, lr=0.0000147, metrics:accuracy:0.6358
INFO:root:10:43:10 [Epoch 1 Batch 3630/12277] loss=0.6840, lr=0.0000148, metrics:accuracy:0.6360
INFO:root:10:43:12 [Epoch 1 Batch 3640/12277] loss=0.6127, lr=0.0000148, metrics:accuracy:0.6363
INFO:root:10:43:13 [Epoch 1 Batch 3650/12277] loss=0.6952, lr=0.0000149, metrics:accuracy:0.6365
INFO:root:10:43:15 [Epoch 1 Batch 3660/12277] loss=0.7006, lr=0.0000149, metrics:accuracy:0.6367
INFO:root:10:43:16 [Epoch 1 Batch 3670/12277] loss=0.7206, lr=0.0000150, metrics:accuracy:0.6369
INFO:root:10:43:18 [Epoch 1 Batch 3680/12277] loss=0.6508, lr=0.0000150, metrics:accuracy:0.6372
INFO:root:10:43:19 [Epoch 1 Batch 3690/12277] loss=0.6468, lr=0.0000150, metrics:accuracy:0.6374
INFO:root:10:43:21 [Epoch 1 Batch 3700/12277] loss=0.7168, lr=0.0000151, metrics:accuracy:0.6376
INFO:root:10:43:22 [Epoch 1 Batch 3710/12277] loss=0.6352, lr=0.0000151, metrics:accuracy:0.6378
INFO:root:10:43:24 [Epoch 1 Batch 3720/12277] loss=0.7194, lr=0.0000152, metrics:accuracy:0.6379
INFO:root:10:43:26 [Epoch 1 Batch 3730/12277] loss=0.6157, lr=0.0000152, metrics:accuracy:0.6382
INFO:root:10:43:27 [Epoch 1 Batch 3740/12277] loss=0.6200, lr=0.0000152, metrics:accuracy:0.6385
INFO:root:10:43:28 [Epoch 1 Batch 3750/12277] loss=0.7708, lr=0.0000153, metrics:accuracy:0.6386
INFO:root:10:43:30 [Epoch 1 Batch 3760/12277] loss=0.7286, lr=0.0000153, metrics:accuracy:0.6387
INFO:root:10:43:32 [Epoch 1 Batch 3770/12277] loss=0.6506, lr=0.0000154, metrics:accuracy:0.6390
INFO:root:10:43:34 [Epoch 1 Batch 3780/12277] loss=0.7063, lr=0.0000154, metrics:accuracy:0.6391
INFO:root:10:43:36 [Epoch 1 Batch 3790/12277] loss=0.6736, lr=0.0000154, metrics:accuracy:0.6393
INFO:root:10:43:37 [Epoch 1 Batch 3800/12277] loss=0.6623, lr=0.0000155, metrics:accuracy:0.6395
INFO:root:10:43:39 [Epoch 1 Batch 3810/12277] loss=0.5852, lr=0.0000155, metrics:accuracy:0.6398
INFO:root:10:43:41 [Epoch 1 Batch 3820/12277] loss=0.6915, lr=0.0000156, metrics:accuracy:0.6400
INFO:root:10:43:43 [Epoch 1 Batch 3830/12277] loss=0.7398, lr=0.0000156, metrics:accuracy:0.6401
INFO:root:10:43:44 [Epoch 1 Batch 3840/12277] loss=0.5872, lr=0.0000156, metrics:accuracy:0.6404
INFO:root:10:43:46 [Epoch 1 Batch 3850/12277] loss=0.7336, lr=0.0000157, metrics:accuracy:0.6405
INFO:root:10:43:48 [Epoch 1 Batch 3860/12277] loss=0.6568, lr=0.0000157, metrics:accuracy:0.6407
INFO:root:10:43:49 [Epoch 1 Batch 3870/12277] loss=0.6764, lr=0.0000158, metrics:accuracy:0.6409
INFO:root:10:43:51 [Epoch 1 Batch 3880/12277] loss=0.7611, lr=0.0000158, metrics:accuracy:0.6410
INFO:root:10:43:52 [Epoch 1 Batch 3890/12277] loss=0.7234, lr=0.0000158, metrics:accuracy:0.6411
INFO:root:10:43:54 [Epoch 1 Batch 3900/12277] loss=0.6723, lr=0.0000159, metrics:accuracy:0.6413
INFO:root:10:43:55 [Epoch 1 Batch 3910/12277] loss=0.7112, lr=0.0000159, metrics:accuracy:0.6415
INFO:root:10:43:57 [Epoch 1 Batch 3920/12277] loss=0.6594, lr=0.0000160, metrics:accuracy:0.6417
INFO:root:10:43:59 [Epoch 1 Batch 3930/12277] loss=0.6881, lr=0.0000160, metrics:accuracy:0.6420
INFO:root:10:44:00 [Epoch 1 Batch 3940/12277] loss=0.6511, lr=0.0000161, metrics:accuracy:0.6422
INFO:root:10:44:02 [Epoch 1 Batch 3950/12277] loss=0.6954, lr=0.0000161, metrics:accuracy:0.6424
INFO:root:10:44:03 [Epoch 1 Batch 3960/12277] loss=0.7229, lr=0.0000161, metrics:accuracy:0.6424
INFO:root:10:44:05 [Epoch 1 Batch 3970/12277] loss=0.6783, lr=0.0000162, metrics:accuracy:0.6427
INFO:root:10:44:07 [Epoch 1 Batch 3980/12277] loss=0.6763, lr=0.0000162, metrics:accuracy:0.6429
INFO:root:10:44:08 [Epoch 1 Batch 3990/12277] loss=0.7231, lr=0.0000163, metrics:accuracy:0.6430
INFO:root:10:44:10 [Epoch 1 Batch 4000/12277] loss=0.6640, lr=0.0000163, metrics:accuracy:0.6432
INFO:root:10:44:11 [Epoch 1 Batch 4010/12277] loss=0.6635, lr=0.0000163, metrics:accuracy:0.6433
INFO:root:10:44:13 [Epoch 1 Batch 4020/12277] loss=0.6541, lr=0.0000164, metrics:accuracy:0.6436
INFO:root:10:44:14 [Epoch 1 Batch 4030/12277] loss=0.6256, lr=0.0000164, metrics:accuracy:0.6438
INFO:root:10:44:16 [Epoch 1 Batch 4040/12277] loss=0.6956, lr=0.0000165, metrics:accuracy:0.6440
INFO:root:10:44:18 [Epoch 1 Batch 4050/12277] loss=0.7038, lr=0.0000165, metrics:accuracy:0.6440
INFO:root:10:44:19 [Epoch 1 Batch 4060/12277] loss=0.7239, lr=0.0000165, metrics:accuracy:0.6441
INFO:root:10:44:21 [Epoch 1 Batch 4070/12277] loss=0.6594, lr=0.0000166, metrics:accuracy:0.6443
INFO:root:10:44:22 [Epoch 1 Batch 4080/12277] loss=0.6376, lr=0.0000166, metrics:accuracy:0.6446
INFO:root:10:44:24 [Epoch 1 Batch 4090/12277] loss=0.7123, lr=0.0000167, metrics:accuracy:0.6448
INFO:root:10:44:25 [Epoch 1 Batch 4100/12277] loss=0.7005, lr=0.0000167, metrics:accuracy:0.6448
INFO:root:10:44:27 [Epoch 1 Batch 4110/12277] loss=0.6402, lr=0.0000167, metrics:accuracy:0.6451
INFO:root:10:44:29 [Epoch 1 Batch 4120/12277] loss=0.6495, lr=0.0000168, metrics:accuracy:0.6453
INFO:root:10:44:30 [Epoch 1 Batch 4130/12277] loss=0.6495, lr=0.0000168, metrics:accuracy:0.6455
INFO:root:10:44:32 [Epoch 1 Batch 4140/12277] loss=0.7097, lr=0.0000169, metrics:accuracy:0.6456
INFO:root:10:44:34 [Epoch 1 Batch 4150/12277] loss=0.7084, lr=0.0000169, metrics:accuracy:0.6457
INFO:root:10:44:35 [Epoch 1 Batch 4160/12277] loss=0.6227, lr=0.0000169, metrics:accuracy:0.6459
INFO:root:10:44:36 [Epoch 1 Batch 4170/12277] loss=0.7085, lr=0.0000170, metrics:accuracy:0.6460
INFO:root:10:44:38 [Epoch 1 Batch 4180/12277] loss=0.6746, lr=0.0000170, metrics:accuracy:0.6462
INFO:root:10:44:40 [Epoch 1 Batch 4190/12277] loss=0.6479, lr=0.0000171, metrics:accuracy:0.6464
INFO:root:10:44:41 [Epoch 1 Batch 4200/12277] loss=0.7019, lr=0.0000171, metrics:accuracy:0.6465
INFO:root:10:44:43 [Epoch 1 Batch 4210/12277] loss=0.6834, lr=0.0000172, metrics:accuracy:0.6467
INFO:root:10:44:44 [Epoch 1 Batch 4220/12277] loss=0.6090, lr=0.0000172, metrics:accuracy:0.6469
INFO:root:10:44:46 [Epoch 1 Batch 4230/12277] loss=0.7185, lr=0.0000172, metrics:accuracy:0.6471
INFO:root:10:44:48 [Epoch 1 Batch 4240/12277] loss=0.6842, lr=0.0000173, metrics:accuracy:0.6473
INFO:root:10:44:49 [Epoch 1 Batch 4250/12277] loss=0.6096, lr=0.0000173, metrics:accuracy:0.6475
INFO:root:10:44:51 [Epoch 1 Batch 4260/12277] loss=0.7474, lr=0.0000174, metrics:accuracy:0.6476
INFO:root:10:44:52 [Epoch 1 Batch 4270/12277] loss=0.6112, lr=0.0000174, metrics:accuracy:0.6479
INFO:root:10:44:54 [Epoch 1 Batch 4280/12277] loss=0.6518, lr=0.0000174, metrics:accuracy:0.6481
INFO:root:10:44:56 [Epoch 1 Batch 4290/12277] loss=0.6091, lr=0.0000175, metrics:accuracy:0.6483
INFO:root:10:44:58 [Epoch 1 Batch 4300/12277] loss=0.6652, lr=0.0000175, metrics:accuracy:0.6485
INFO:root:10:44:59 [Epoch 1 Batch 4310/12277] loss=0.6839, lr=0.0000176, metrics:accuracy:0.6486
INFO:root:10:45:01 [Epoch 1 Batch 4320/12277] loss=0.7256, lr=0.0000176, metrics:accuracy:0.6488
INFO:root:10:45:02 [Epoch 1 Batch 4330/12277] loss=0.6816, lr=0.0000176, metrics:accuracy:0.6489
INFO:root:10:45:04 [Epoch 1 Batch 4340/12277] loss=0.6129, lr=0.0000177, metrics:accuracy:0.6491
INFO:root:10:45:05 [Epoch 1 Batch 4350/12277] loss=0.6040, lr=0.0000177, metrics:accuracy:0.6495
INFO:root:10:45:07 [Epoch 1 Batch 4360/12277] loss=0.5861, lr=0.0000178, metrics:accuracy:0.6497
INFO:root:10:45:08 [Epoch 1 Batch 4370/12277] loss=0.6940, lr=0.0000178, metrics:accuracy:0.6499
INFO:root:10:45:10 [Epoch 1 Batch 4380/12277] loss=0.6470, lr=0.0000178, metrics:accuracy:0.6501
INFO:root:10:45:11 [Epoch 1 Batch 4390/12277] loss=0.7295, lr=0.0000179, metrics:accuracy:0.6502
INFO:root:10:45:13 [Epoch 1 Batch 4400/12277] loss=0.7445, lr=0.0000179, metrics:accuracy:0.6504
INFO:root:10:45:14 [Epoch 1 Batch 4410/12277] loss=0.6806, lr=0.0000180, metrics:accuracy:0.6505
INFO:root:10:45:16 [Epoch 1 Batch 4420/12277] loss=0.6593, lr=0.0000180, metrics:accuracy:0.6507
INFO:root:10:45:17 [Epoch 1 Batch 4430/12277] loss=0.6729, lr=0.0000180, metrics:accuracy:0.6509
INFO:root:10:45:19 [Epoch 1 Batch 4440/12277] loss=0.7108, lr=0.0000181, metrics:accuracy:0.6511
INFO:root:10:45:21 [Epoch 1 Batch 4450/12277] loss=0.6997, lr=0.0000181, metrics:accuracy:0.6512
INFO:root:10:45:22 [Epoch 1 Batch 4460/12277] loss=0.6695, lr=0.0000182, metrics:accuracy:0.6514
INFO:root:10:45:24 [Epoch 1 Batch 4470/12277] loss=0.6385, lr=0.0000182, metrics:accuracy:0.6516
INFO:root:10:45:26 [Epoch 1 Batch 4480/12277] loss=0.7108, lr=0.0000183, metrics:accuracy:0.6516
INFO:root:10:45:27 [Epoch 1 Batch 4490/12277] loss=0.6349, lr=0.0000183, metrics:accuracy:0.6518
INFO:root:10:45:29 [Epoch 1 Batch 4500/12277] loss=0.7199, lr=0.0000183, metrics:accuracy:0.6519
INFO:root:10:45:30 [Epoch 1 Batch 4510/12277] loss=0.6489, lr=0.0000184, metrics:accuracy:0.6521
INFO:root:10:45:32 [Epoch 1 Batch 4520/12277] loss=0.6502, lr=0.0000184, metrics:accuracy:0.6523
INFO:root:10:45:33 [Epoch 1 Batch 4530/12277] loss=0.6065, lr=0.0000185, metrics:accuracy:0.6526
INFO:root:10:45:35 [Epoch 1 Batch 4540/12277] loss=0.7052, lr=0.0000185, metrics:accuracy:0.6527
INFO:root:10:45:36 [Epoch 1 Batch 4550/12277] loss=0.6300, lr=0.0000185, metrics:accuracy:0.6529
INFO:root:10:45:38 [Epoch 1 Batch 4560/12277] loss=0.6761, lr=0.0000186, metrics:accuracy:0.6530
INFO:root:10:45:40 [Epoch 1 Batch 4570/12277] loss=0.6866, lr=0.0000186, metrics:accuracy:0.6532
INFO:root:10:45:41 [Epoch 1 Batch 4580/12277] loss=0.5432, lr=0.0000187, metrics:accuracy:0.6535
INFO:root:10:45:43 [Epoch 1 Batch 4590/12277] loss=0.7584, lr=0.0000187, metrics:accuracy:0.6535
INFO:root:10:45:45 [Epoch 1 Batch 4600/12277] loss=0.7280, lr=0.0000187, metrics:accuracy:0.6536
INFO:root:10:45:47 [Epoch 1 Batch 4610/12277] loss=0.7100, lr=0.0000188, metrics:accuracy:0.6537
INFO:root:10:45:48 [Epoch 1 Batch 4620/12277] loss=0.6796, lr=0.0000188, metrics:accuracy:0.6538
INFO:root:10:45:50 [Epoch 1 Batch 4630/12277] loss=0.6933, lr=0.0000189, metrics:accuracy:0.6540
INFO:root:10:45:52 [Epoch 1 Batch 4640/12277] loss=0.7402, lr=0.0000189, metrics:accuracy:0.6541
INFO:root:10:45:53 [Epoch 1 Batch 4650/12277] loss=0.6796, lr=0.0000189, metrics:accuracy:0.6543
INFO:root:10:45:55 [Epoch 1 Batch 4660/12277] loss=0.6827, lr=0.0000190, metrics:accuracy:0.6544
INFO:root:10:45:57 [Epoch 1 Batch 4670/12277] loss=0.7233, lr=0.0000190, metrics:accuracy:0.6546
INFO:root:10:45:58 [Epoch 1 Batch 4680/12277] loss=0.6715, lr=0.0000191, metrics:accuracy:0.6547
INFO:root:10:46:00 [Epoch 1 Batch 4690/12277] loss=0.5785, lr=0.0000191, metrics:accuracy:0.6550
INFO:root:10:46:02 [Epoch 1 Batch 4700/12277] loss=0.5997, lr=0.0000191, metrics:accuracy:0.6552
INFO:root:10:46:04 [Epoch 1 Batch 4710/12277] loss=0.6706, lr=0.0000192, metrics:accuracy:0.6553
INFO:root:10:46:05 [Epoch 1 Batch 4720/12277] loss=0.6505, lr=0.0000192, metrics:accuracy:0.6555
INFO:root:10:46:07 [Epoch 1 Batch 4730/12277] loss=0.6279, lr=0.0000193, metrics:accuracy:0.6557
INFO:root:10:46:08 [Epoch 1 Batch 4740/12277] loss=0.6473, lr=0.0000193, metrics:accuracy:0.6559
INFO:root:10:46:10 [Epoch 1 Batch 4750/12277] loss=0.7107, lr=0.0000194, metrics:accuracy:0.6560
INFO:root:10:46:11 [Epoch 1 Batch 4760/12277] loss=0.6896, lr=0.0000194, metrics:accuracy:0.6561
INFO:root:10:46:13 [Epoch 1 Batch 4770/12277] loss=0.6543, lr=0.0000194, metrics:accuracy:0.6563
INFO:root:10:46:15 [Epoch 1 Batch 4780/12277] loss=0.6978, lr=0.0000195, metrics:accuracy:0.6563
INFO:root:10:46:17 [Epoch 1 Batch 4790/12277] loss=0.6168, lr=0.0000195, metrics:accuracy:0.6566
INFO:root:10:46:18 [Epoch 1 Batch 4800/12277] loss=0.6286, lr=0.0000196, metrics:accuracy:0.6567
INFO:root:10:46:20 [Epoch 1 Batch 4810/12277] loss=0.6598, lr=0.0000196, metrics:accuracy:0.6568
INFO:root:10:46:21 [Epoch 1 Batch 4820/12277] loss=0.6576, lr=0.0000196, metrics:accuracy:0.6570
INFO:root:10:46:23 [Epoch 1 Batch 4830/12277] loss=0.6796, lr=0.0000197, metrics:accuracy:0.6571
INFO:root:10:46:25 [Epoch 1 Batch 4840/12277] loss=0.7549, lr=0.0000197, metrics:accuracy:0.6572
INFO:root:10:46:26 [Epoch 1 Batch 4850/12277] loss=0.7177, lr=0.0000198, metrics:accuracy:0.6573
INFO:root:10:46:28 [Epoch 1 Batch 4860/12277] loss=0.7155, lr=0.0000198, metrics:accuracy:0.6574
INFO:root:10:46:29 [Epoch 1 Batch 4870/12277] loss=0.6685, lr=0.0000198, metrics:accuracy:0.6575
INFO:root:10:46:31 [Epoch 1 Batch 4880/12277] loss=0.6970, lr=0.0000199, metrics:accuracy:0.6576
INFO:root:10:46:33 [Epoch 1 Batch 4890/12277] loss=0.6819, lr=0.0000199, metrics:accuracy:0.6578
INFO:root:10:46:35 [Epoch 1 Batch 4900/12277] loss=0.6711, lr=0.0000200, metrics:accuracy:0.6579
INFO:root:10:46:36 [Epoch 1 Batch 4910/12277] loss=0.6036, lr=0.0000200, metrics:accuracy:0.6581
INFO:root:10:46:38 [Epoch 1 Batch 4920/12277] loss=0.6469, lr=0.0000200, metrics:accuracy:0.6582
INFO:root:10:46:39 [Epoch 1 Batch 4930/12277] loss=0.5907, lr=0.0000200, metrics:accuracy:0.6584
INFO:root:10:46:41 [Epoch 1 Batch 4940/12277] loss=0.6744, lr=0.0000200, metrics:accuracy:0.6586
INFO:root:10:46:42 [Epoch 1 Batch 4950/12277] loss=0.6848, lr=0.0000200, metrics:accuracy:0.6587
INFO:root:10:46:44 [Epoch 1 Batch 4960/12277] loss=0.7321, lr=0.0000200, metrics:accuracy:0.6588
INFO:root:10:46:46 [Epoch 1 Batch 4970/12277] loss=0.6474, lr=0.0000200, metrics:accuracy:0.6589
INFO:root:10:46:47 [Epoch 1 Batch 4980/12277] loss=0.6570, lr=0.0000200, metrics:accuracy:0.6590
INFO:root:10:46:49 [Epoch 1 Batch 4990/12277] loss=0.7521, lr=0.0000200, metrics:accuracy:0.6590
INFO:root:10:46:51 [Epoch 1 Batch 5000/12277] loss=0.5928, lr=0.0000200, metrics:accuracy:0.6592
INFO:root:10:46:53 [Epoch 1 Batch 5010/12277] loss=0.6545, lr=0.0000200, metrics:accuracy:0.6594
INFO:root:10:46:55 [Epoch 1 Batch 5020/12277] loss=0.7148, lr=0.0000199, metrics:accuracy:0.6595
INFO:root:10:46:56 [Epoch 1 Batch 5030/12277] loss=0.6602, lr=0.0000199, metrics:accuracy:0.6596
INFO:root:10:46:58 [Epoch 1 Batch 5040/12277] loss=0.7059, lr=0.0000199, metrics:accuracy:0.6597
INFO:root:10:46:59 [Epoch 1 Batch 5050/12277] loss=0.6510, lr=0.0000199, metrics:accuracy:0.6599
INFO:root:10:47:01 [Epoch 1 Batch 5060/12277] loss=0.6289, lr=0.0000199, metrics:accuracy:0.6600
INFO:root:10:47:03 [Epoch 1 Batch 5070/12277] loss=0.7416, lr=0.0000199, metrics:accuracy:0.6601
INFO:root:10:47:04 [Epoch 1 Batch 5080/12277] loss=0.6602, lr=0.0000199, metrics:accuracy:0.6603
INFO:root:10:47:06 [Epoch 1 Batch 5090/12277] loss=0.6363, lr=0.0000199, metrics:accuracy:0.6605
INFO:root:10:47:08 [Epoch 1 Batch 5100/12277] loss=0.6723, lr=0.0000199, metrics:accuracy:0.6606
INFO:root:10:47:09 [Epoch 1 Batch 5110/12277] loss=0.6823, lr=0.0000199, metrics:accuracy:0.6607
INFO:root:10:47:11 [Epoch 1 Batch 5120/12277] loss=0.6222, lr=0.0000199, metrics:accuracy:0.6609
INFO:root:10:47:12 [Epoch 1 Batch 5130/12277] loss=0.5929, lr=0.0000199, metrics:accuracy:0.6610
INFO:root:10:47:14 [Epoch 1 Batch 5140/12277] loss=0.6532, lr=0.0000199, metrics:accuracy:0.6611
INFO:root:10:47:16 [Epoch 1 Batch 5150/12277] loss=0.6561, lr=0.0000199, metrics:accuracy:0.6613
INFO:root:10:47:17 [Epoch 1 Batch 5160/12277] loss=0.6177, lr=0.0000199, metrics:accuracy:0.6615
INFO:root:10:47:19 [Epoch 1 Batch 5170/12277] loss=0.6453, lr=0.0000199, metrics:accuracy:0.6616
INFO:root:10:47:20 [Epoch 1 Batch 5180/12277] loss=0.7627, lr=0.0000199, metrics:accuracy:0.6617
INFO:root:10:47:22 [Epoch 1 Batch 5190/12277] loss=0.6408, lr=0.0000199, metrics:accuracy:0.6618
INFO:root:10:47:24 [Epoch 1 Batch 5200/12277] loss=0.6014, lr=0.0000199, metrics:accuracy:0.6620
INFO:root:10:47:25 [Epoch 1 Batch 5210/12277] loss=0.6401, lr=0.0000199, metrics:accuracy:0.6622
INFO:root:10:47:27 [Epoch 1 Batch 5220/12277] loss=0.6363, lr=0.0000199, metrics:accuracy:0.6623
INFO:root:10:47:28 [Epoch 1 Batch 5230/12277] loss=0.7007, lr=0.0000199, metrics:accuracy:0.6624
INFO:root:10:47:30 [Epoch 1 Batch 5240/12277] loss=0.6026, lr=0.0000199, metrics:accuracy:0.6626
INFO:root:10:47:32 [Epoch 1 Batch 5250/12277] loss=0.6898, lr=0.0000198, metrics:accuracy:0.6627
INFO:root:10:47:33 [Epoch 1 Batch 5260/12277] loss=0.6521, lr=0.0000198, metrics:accuracy:0.6628
INFO:root:10:47:35 [Epoch 1 Batch 5270/12277] loss=0.6792, lr=0.0000198, metrics:accuracy:0.6629
INFO:root:10:47:36 [Epoch 1 Batch 5280/12277] loss=0.6638, lr=0.0000198, metrics:accuracy:0.6630
INFO:root:10:47:38 [Epoch 1 Batch 5290/12277] loss=0.7257, lr=0.0000198, metrics:accuracy:0.6631
INFO:root:10:47:39 [Epoch 1 Batch 5300/12277] loss=0.6530, lr=0.0000198, metrics:accuracy:0.6632
INFO:root:10:47:41 [Epoch 1 Batch 5310/12277] loss=0.6561, lr=0.0000198, metrics:accuracy:0.6634
INFO:root:10:47:43 [Epoch 1 Batch 5320/12277] loss=0.7420, lr=0.0000198, metrics:accuracy:0.6634
INFO:root:10:47:44 [Epoch 1 Batch 5330/12277] loss=0.6867, lr=0.0000198, metrics:accuracy:0.6635
INFO:root:10:47:45 [Epoch 1 Batch 5340/12277] loss=0.6586, lr=0.0000198, metrics:accuracy:0.6636
INFO:root:10:47:47 [Epoch 1 Batch 5350/12277] loss=0.6539, lr=0.0000198, metrics:accuracy:0.6637
INFO:root:10:47:49 [Epoch 1 Batch 5360/12277] loss=0.6264, lr=0.0000198, metrics:accuracy:0.6639
INFO:root:10:47:51 [Epoch 1 Batch 5370/12277] loss=0.6514, lr=0.0000198, metrics:accuracy:0.6640
INFO:root:10:47:53 [Epoch 1 Batch 5380/12277] loss=0.7073, lr=0.0000198, metrics:accuracy:0.6641
INFO:root:10:47:54 [Epoch 1 Batch 5390/12277] loss=0.6327, lr=0.0000198, metrics:accuracy:0.6642
INFO:root:10:47:56 [Epoch 1 Batch 5400/12277] loss=0.6476, lr=0.0000198, metrics:accuracy:0.6643
INFO:root:10:47:57 [Epoch 1 Batch 5410/12277] loss=0.6516, lr=0.0000198, metrics:accuracy:0.6645
INFO:root:10:47:59 [Epoch 1 Batch 5420/12277] loss=0.6175, lr=0.0000198, metrics:accuracy:0.6646
INFO:root:10:48:01 [Epoch 1 Batch 5430/12277] loss=0.6176, lr=0.0000198, metrics:accuracy:0.6648
INFO:root:10:48:02 [Epoch 1 Batch 5440/12277] loss=0.6333, lr=0.0000198, metrics:accuracy:0.6649
INFO:root:10:48:04 [Epoch 1 Batch 5450/12277] loss=0.7201, lr=0.0000198, metrics:accuracy:0.6650
INFO:root:10:48:05 [Epoch 1 Batch 5460/12277] loss=0.6808, lr=0.0000198, metrics:accuracy:0.6651
INFO:root:10:48:07 [Epoch 1 Batch 5470/12277] loss=0.6849, lr=0.0000197, metrics:accuracy:0.6651
INFO:root:10:48:09 [Epoch 1 Batch 5480/12277] loss=0.6356, lr=0.0000197, metrics:accuracy:0.6653
INFO:root:10:48:10 [Epoch 1 Batch 5490/12277] loss=0.6519, lr=0.0000197, metrics:accuracy:0.6654
INFO:root:10:48:12 [Epoch 1 Batch 5500/12277] loss=0.6771, lr=0.0000197, metrics:accuracy:0.6655
INFO:root:10:48:13 [Epoch 1 Batch 5510/12277] loss=0.5956, lr=0.0000197, metrics:accuracy:0.6657
INFO:root:10:48:15 [Epoch 1 Batch 5520/12277] loss=0.6148, lr=0.0000197, metrics:accuracy:0.6659
INFO:root:10:48:17 [Epoch 1 Batch 5530/12277] loss=0.6803, lr=0.0000197, metrics:accuracy:0.6660
INFO:root:10:48:18 [Epoch 1 Batch 5540/12277] loss=0.6574, lr=0.0000197, metrics:accuracy:0.6661
INFO:root:10:48:19 [Epoch 1 Batch 5550/12277] loss=0.5818, lr=0.0000197, metrics:accuracy:0.6663
INFO:root:10:48:21 [Epoch 1 Batch 5560/12277] loss=0.7278, lr=0.0000197, metrics:accuracy:0.6664
INFO:root:10:48:22 [Epoch 1 Batch 5570/12277] loss=0.6947, lr=0.0000197, metrics:accuracy:0.6664
INFO:root:10:48:25 [Epoch 1 Batch 5580/12277] loss=0.6217, lr=0.0000197, metrics:accuracy:0.6666
INFO:root:10:48:26 [Epoch 1 Batch 5590/12277] loss=0.6221, lr=0.0000197, metrics:accuracy:0.6667
INFO:root:10:48:28 [Epoch 1 Batch 5600/12277] loss=0.6709, lr=0.0000197, metrics:accuracy:0.6668
INFO:root:10:48:30 [Epoch 1 Batch 5610/12277] loss=0.7563, lr=0.0000197, metrics:accuracy:0.6669
INFO:root:10:48:31 [Epoch 1 Batch 5620/12277] loss=0.6423, lr=0.0000197, metrics:accuracy:0.6670
INFO:root:10:48:33 [Epoch 1 Batch 5630/12277] loss=0.5419, lr=0.0000197, metrics:accuracy:0.6673
INFO:root:10:48:34 [Epoch 1 Batch 5640/12277] loss=0.6507, lr=0.0000197, metrics:accuracy:0.6674
INFO:root:10:48:36 [Epoch 1 Batch 5650/12277] loss=0.7942, lr=0.0000197, metrics:accuracy:0.6674
INFO:root:10:48:37 [Epoch 1 Batch 5660/12277] loss=0.6753, lr=0.0000197, metrics:accuracy:0.6675
INFO:root:10:48:39 [Epoch 1 Batch 5670/12277] loss=0.7049, lr=0.0000197, metrics:accuracy:0.6676
INFO:root:10:48:41 [Epoch 1 Batch 5680/12277] loss=0.6425, lr=0.0000197, metrics:accuracy:0.6677
INFO:root:10:48:42 [Epoch 1 Batch 5690/12277] loss=0.6486, lr=0.0000196, metrics:accuracy:0.6678
INFO:root:10:48:44 [Epoch 1 Batch 5700/12277] loss=0.6979, lr=0.0000196, metrics:accuracy:0.6679
INFO:root:10:48:45 [Epoch 1 Batch 5710/12277] loss=0.6605, lr=0.0000196, metrics:accuracy:0.6680
INFO:root:10:48:47 [Epoch 1 Batch 5720/12277] loss=0.6360, lr=0.0000196, metrics:accuracy:0.6682
INFO:root:10:48:49 [Epoch 1 Batch 5730/12277] loss=0.6729, lr=0.0000196, metrics:accuracy:0.6683
INFO:root:10:48:50 [Epoch 1 Batch 5740/12277] loss=0.5974, lr=0.0000196, metrics:accuracy:0.6684
INFO:root:10:48:52 [Epoch 1 Batch 5750/12277] loss=0.6835, lr=0.0000196, metrics:accuracy:0.6685
INFO:root:10:48:55 [Epoch 1 Batch 5760/12277] loss=0.6399, lr=0.0000196, metrics:accuracy:0.6686
INFO:root:10:48:56 [Epoch 1 Batch 5770/12277] loss=0.7271, lr=0.0000196, metrics:accuracy:0.6686
INFO:root:10:48:58 [Epoch 1 Batch 5780/12277] loss=0.6467, lr=0.0000196, metrics:accuracy:0.6688
INFO:root:10:49:00 [Epoch 1 Batch 5790/12277] loss=0.6495, lr=0.0000196, metrics:accuracy:0.6689
INFO:root:10:49:01 [Epoch 1 Batch 5800/12277] loss=0.6285, lr=0.0000196, metrics:accuracy:0.6690
INFO:root:10:49:03 [Epoch 1 Batch 5810/12277] loss=0.7000, lr=0.0000196, metrics:accuracy:0.6690
INFO:root:10:49:05 [Epoch 1 Batch 5820/12277] loss=0.5681, lr=0.0000196, metrics:accuracy:0.6692
INFO:root:10:49:06 [Epoch 1 Batch 5830/12277] loss=0.6839, lr=0.0000196, metrics:accuracy:0.6693
INFO:root:10:49:08 [Epoch 1 Batch 5840/12277] loss=0.6784, lr=0.0000196, metrics:accuracy:0.6694
INFO:root:10:49:09 [Epoch 1 Batch 5850/12277] loss=0.6205, lr=0.0000196, metrics:accuracy:0.6696
INFO:root:10:49:11 [Epoch 1 Batch 5860/12277] loss=0.6725, lr=0.0000196, metrics:accuracy:0.6697
INFO:root:10:49:13 [Epoch 1 Batch 5870/12277] loss=0.6162, lr=0.0000196, metrics:accuracy:0.6698
INFO:root:10:49:14 [Epoch 1 Batch 5880/12277] loss=0.6586, lr=0.0000196, metrics:accuracy:0.6699
INFO:root:10:49:16 [Epoch 1 Batch 5890/12277] loss=0.6411, lr=0.0000196, metrics:accuracy:0.6700
INFO:root:10:49:17 [Epoch 1 Batch 5900/12277] loss=0.6667, lr=0.0000196, metrics:accuracy:0.6701
INFO:root:10:49:19 [Epoch 1 Batch 5910/12277] loss=0.6274, lr=0.0000195, metrics:accuracy:0.6703
INFO:root:10:49:21 [Epoch 1 Batch 5920/12277] loss=0.6732, lr=0.0000195, metrics:accuracy:0.6704
INFO:root:10:49:22 [Epoch 1 Batch 5930/12277] loss=0.6352, lr=0.0000195, metrics:accuracy:0.6705
INFO:root:10:49:24 [Epoch 1 Batch 5940/12277] loss=0.6353, lr=0.0000195, metrics:accuracy:0.6706
INFO:root:10:49:26 [Epoch 1 Batch 5950/12277] loss=0.6837, lr=0.0000195, metrics:accuracy:0.6707
INFO:root:10:49:27 [Epoch 1 Batch 5960/12277] loss=0.7040, lr=0.0000195, metrics:accuracy:0.6708
INFO:root:10:49:29 [Epoch 1 Batch 5970/12277] loss=0.6436, lr=0.0000195, metrics:accuracy:0.6709
INFO:root:10:49:31 [Epoch 1 Batch 5980/12277] loss=0.6607, lr=0.0000195, metrics:accuracy:0.6710
INFO:root:10:49:32 [Epoch 1 Batch 5990/12277] loss=0.6885, lr=0.0000195, metrics:accuracy:0.6711
INFO:root:10:49:34 [Epoch 1 Batch 6000/12277] loss=0.7078, lr=0.0000195, metrics:accuracy:0.6712
INFO:root:10:49:35 [Epoch 1 Batch 6010/12277] loss=0.6204, lr=0.0000195, metrics:accuracy:0.6713
INFO:root:10:49:37 [Epoch 1 Batch 6020/12277] loss=0.6599, lr=0.0000195, metrics:accuracy:0.6714
INFO:root:10:49:38 [Epoch 1 Batch 6030/12277] loss=0.6650, lr=0.0000195, metrics:accuracy:0.6715
INFO:root:10:49:40 [Epoch 1 Batch 6040/12277] loss=0.5855, lr=0.0000195, metrics:accuracy:0.6716
INFO:root:10:49:41 [Epoch 1 Batch 6050/12277] loss=0.5567, lr=0.0000195, metrics:accuracy:0.6718
INFO:root:10:49:43 [Epoch 1 Batch 6060/12277] loss=0.7803, lr=0.0000195, metrics:accuracy:0.6718
INFO:root:10:49:45 [Epoch 1 Batch 6070/12277] loss=0.6290, lr=0.0000195, metrics:accuracy:0.6719
INFO:root:10:49:47 [Epoch 1 Batch 6080/12277] loss=0.6542, lr=0.0000195, metrics:accuracy:0.6720
INFO:root:10:49:49 [Epoch 1 Batch 6090/12277] loss=0.6145, lr=0.0000195, metrics:accuracy:0.6722
INFO:root:10:49:51 [Epoch 1 Batch 6100/12277] loss=0.7229, lr=0.0000195, metrics:accuracy:0.6722
INFO:root:10:49:53 [Epoch 1 Batch 6110/12277] loss=0.6710, lr=0.0000195, metrics:accuracy:0.6722
INFO:root:10:49:54 [Epoch 1 Batch 6120/12277] loss=0.6430, lr=0.0000195, metrics:accuracy:0.6723
INFO:root:10:49:56 [Epoch 1 Batch 6130/12277] loss=0.6536, lr=0.0000194, metrics:accuracy:0.6724
INFO:root:10:49:58 [Epoch 1 Batch 6140/12277] loss=0.6340, lr=0.0000194, metrics:accuracy:0.6725
INFO:root:10:49:59 [Epoch 1 Batch 6150/12277] loss=0.6925, lr=0.0000194, metrics:accuracy:0.6726
INFO:root:10:50:01 [Epoch 1 Batch 6160/12277] loss=0.7082, lr=0.0000194, metrics:accuracy:0.6727
INFO:root:10:50:03 [Epoch 1 Batch 6170/12277] loss=0.6393, lr=0.0000194, metrics:accuracy:0.6727
INFO:root:10:50:05 [Epoch 1 Batch 6180/12277] loss=0.6655, lr=0.0000194, metrics:accuracy:0.6729
INFO:root:10:50:06 [Epoch 1 Batch 6190/12277] loss=0.6839, lr=0.0000194, metrics:accuracy:0.6730
INFO:root:10:50:08 [Epoch 1 Batch 6200/12277] loss=0.6979, lr=0.0000194, metrics:accuracy:0.6731
INFO:root:10:50:10 [Epoch 1 Batch 6210/12277] loss=0.6657, lr=0.0000194, metrics:accuracy:0.6732
INFO:root:10:50:11 [Epoch 1 Batch 6220/12277] loss=0.6613, lr=0.0000194, metrics:accuracy:0.6733
INFO:root:10:50:13 [Epoch 1 Batch 6230/12277] loss=0.6377, lr=0.0000194, metrics:accuracy:0.6734
INFO:root:10:50:15 [Epoch 1 Batch 6240/12277] loss=0.6853, lr=0.0000194, metrics:accuracy:0.6734
INFO:root:10:50:16 [Epoch 1 Batch 6250/12277] loss=0.6249, lr=0.0000194, metrics:accuracy:0.6736
INFO:root:10:50:18 [Epoch 1 Batch 6260/12277] loss=0.6827, lr=0.0000194, metrics:accuracy:0.6736
INFO:root:10:50:19 [Epoch 1 Batch 6270/12277] loss=0.6516, lr=0.0000194, metrics:accuracy:0.6737
INFO:root:10:50:21 [Epoch 1 Batch 6280/12277] loss=0.6531, lr=0.0000194, metrics:accuracy:0.6738
INFO:root:10:50:23 [Epoch 1 Batch 6290/12277] loss=0.6312, lr=0.0000194, metrics:accuracy:0.6739
INFO:root:10:50:24 [Epoch 1 Batch 6300/12277] loss=0.6556, lr=0.0000194, metrics:accuracy:0.6740
INFO:root:10:50:26 [Epoch 1 Batch 6310/12277] loss=0.7438, lr=0.0000194, metrics:accuracy:0.6740
INFO:root:10:50:28 [Epoch 1 Batch 6320/12277] loss=0.6538, lr=0.0000194, metrics:accuracy:0.6741
INFO:root:10:50:29 [Epoch 1 Batch 6330/12277] loss=0.6849, lr=0.0000194, metrics:accuracy:0.6741
INFO:root:10:50:30 [Epoch 1 Batch 6340/12277] loss=0.6681, lr=0.0000194, metrics:accuracy:0.6742
INFO:root:10:50:32 [Epoch 1 Batch 6350/12277] loss=0.6720, lr=0.0000193, metrics:accuracy:0.6743
INFO:root:10:50:34 [Epoch 1 Batch 6360/12277] loss=0.7478, lr=0.0000193, metrics:accuracy:0.6743
INFO:root:10:50:36 [Epoch 1 Batch 6370/12277] loss=0.6549, lr=0.0000193, metrics:accuracy:0.6744
INFO:root:10:50:37 [Epoch 1 Batch 6380/12277] loss=0.5836, lr=0.0000193, metrics:accuracy:0.6745
INFO:root:10:50:38 [Epoch 1 Batch 6390/12277] loss=0.6609, lr=0.0000193, metrics:accuracy:0.6746
INFO:root:10:50:40 [Epoch 1 Batch 6400/12277] loss=0.5423, lr=0.0000193, metrics:accuracy:0.6748
INFO:root:10:50:42 [Epoch 1 Batch 6410/12277] loss=0.5272, lr=0.0000193, metrics:accuracy:0.6750
INFO:root:10:50:43 [Epoch 1 Batch 6420/12277] loss=0.5670, lr=0.0000193, metrics:accuracy:0.6752
INFO:root:10:50:45 [Epoch 1 Batch 6430/12277] loss=0.6598, lr=0.0000193, metrics:accuracy:0.6753
INFO:root:10:50:47 [Epoch 1 Batch 6440/12277] loss=0.5729, lr=0.0000193, metrics:accuracy:0.6754
INFO:root:10:50:48 [Epoch 1 Batch 6450/12277] loss=0.6577, lr=0.0000193, metrics:accuracy:0.6755
INFO:root:10:50:50 [Epoch 1 Batch 6460/12277] loss=0.7182, lr=0.0000193, metrics:accuracy:0.6756
INFO:root:10:50:52 [Epoch 1 Batch 6470/12277] loss=0.6372, lr=0.0000193, metrics:accuracy:0.6757
INFO:root:10:50:53 [Epoch 1 Batch 6480/12277] loss=0.6582, lr=0.0000193, metrics:accuracy:0.6757
INFO:root:10:50:55 [Epoch 1 Batch 6490/12277] loss=0.6740, lr=0.0000193, metrics:accuracy:0.6758
INFO:root:10:50:57 [Epoch 1 Batch 6500/12277] loss=0.6041, lr=0.0000193, metrics:accuracy:0.6759
INFO:root:10:50:58 [Epoch 1 Batch 6510/12277] loss=0.6893, lr=0.0000193, metrics:accuracy:0.6759
INFO:root:10:51:00 [Epoch 1 Batch 6520/12277] loss=0.6678, lr=0.0000193, metrics:accuracy:0.6760
INFO:root:10:51:01 [Epoch 1 Batch 6530/12277] loss=0.7334, lr=0.0000193, metrics:accuracy:0.6760
INFO:root:10:51:03 [Epoch 1 Batch 6540/12277] loss=0.5768, lr=0.0000193, metrics:accuracy:0.6761
INFO:root:10:51:05 [Epoch 1 Batch 6550/12277] loss=0.5894, lr=0.0000193, metrics:accuracy:0.6763
INFO:root:10:51:06 [Epoch 1 Batch 6560/12277] loss=0.6370, lr=0.0000193, metrics:accuracy:0.6763
INFO:root:10:51:08 [Epoch 1 Batch 6570/12277] loss=0.6553, lr=0.0000192, metrics:accuracy:0.6765
INFO:root:10:51:10 [Epoch 1 Batch 6580/12277] loss=0.5697, lr=0.0000192, metrics:accuracy:0.6766
INFO:root:10:51:12 [Epoch 1 Batch 6590/12277] loss=0.6661, lr=0.0000192, metrics:accuracy:0.6767
INFO:root:10:51:14 [Epoch 1 Batch 6600/12277] loss=0.6195, lr=0.0000192, metrics:accuracy:0.6768
INFO:root:10:51:15 [Epoch 1 Batch 6610/12277] loss=0.6844, lr=0.0000192, metrics:accuracy:0.6769
INFO:root:10:51:17 [Epoch 1 Batch 6620/12277] loss=0.6217, lr=0.0000192, metrics:accuracy:0.6770
INFO:root:10:51:19 [Epoch 1 Batch 6630/12277] loss=0.6513, lr=0.0000192, metrics:accuracy:0.6770
INFO:root:10:51:21 [Epoch 1 Batch 6640/12277] loss=0.6151, lr=0.0000192, metrics:accuracy:0.6771
INFO:root:10:51:23 [Epoch 1 Batch 6650/12277] loss=0.6528, lr=0.0000192, metrics:accuracy:0.6772
INFO:root:10:51:24 [Epoch 1 Batch 6660/12277] loss=0.6431, lr=0.0000192, metrics:accuracy:0.6773
INFO:root:10:51:26 [Epoch 1 Batch 6670/12277] loss=0.7091, lr=0.0000192, metrics:accuracy:0.6773
INFO:root:10:51:28 [Epoch 1 Batch 6680/12277] loss=0.6310, lr=0.0000192, metrics:accuracy:0.6774
INFO:root:10:51:29 [Epoch 1 Batch 6690/12277] loss=0.5807, lr=0.0000192, metrics:accuracy:0.6775
INFO:root:10:51:31 [Epoch 1 Batch 6700/12277] loss=0.6938, lr=0.0000192, metrics:accuracy:0.6776
INFO:root:10:51:33 [Epoch 1 Batch 6710/12277] loss=0.6628, lr=0.0000192, metrics:accuracy:0.6776
INFO:root:10:51:35 [Epoch 1 Batch 6720/12277] loss=0.6345, lr=0.0000192, metrics:accuracy:0.6777
INFO:root:10:51:36 [Epoch 1 Batch 6730/12277] loss=0.6568, lr=0.0000192, metrics:accuracy:0.6778
INFO:root:10:51:37 [Epoch 1 Batch 6740/12277] loss=0.6357, lr=0.0000192, metrics:accuracy:0.6779
INFO:root:10:51:39 [Epoch 1 Batch 6750/12277] loss=0.6521, lr=0.0000192, metrics:accuracy:0.6780
INFO:root:10:51:40 [Epoch 1 Batch 6760/12277] loss=0.6829, lr=0.0000192, metrics:accuracy:0.6780
INFO:root:10:51:42 [Epoch 1 Batch 6770/12277] loss=0.5883, lr=0.0000192, metrics:accuracy:0.6781
INFO:root:10:51:43 [Epoch 1 Batch 6780/12277] loss=0.6739, lr=0.0000192, metrics:accuracy:0.6782
INFO:root:10:51:45 [Epoch 1 Batch 6790/12277] loss=0.6088, lr=0.0000191, metrics:accuracy:0.6783
INFO:root:10:51:47 [Epoch 1 Batch 6800/12277] loss=0.6488, lr=0.0000191, metrics:accuracy:0.6783
INFO:root:10:51:48 [Epoch 1 Batch 6810/12277] loss=0.6690, lr=0.0000191, metrics:accuracy:0.6785
INFO:root:10:51:49 [Epoch 1 Batch 6820/12277] loss=0.6818, lr=0.0000191, metrics:accuracy:0.6785
INFO:root:10:51:51 [Epoch 1 Batch 6830/12277] loss=0.6437, lr=0.0000191, metrics:accuracy:0.6786
INFO:root:10:51:53 [Epoch 1 Batch 6840/12277] loss=0.6017, lr=0.0000191, metrics:accuracy:0.6787
INFO:root:10:51:55 [Epoch 1 Batch 6850/12277] loss=0.5637, lr=0.0000191, metrics:accuracy:0.6788
INFO:root:10:51:56 [Epoch 1 Batch 6860/12277] loss=0.6402, lr=0.0000191, metrics:accuracy:0.6789
INFO:root:10:51:58 [Epoch 1 Batch 6870/12277] loss=0.6115, lr=0.0000191, metrics:accuracy:0.6790
INFO:root:10:51:59 [Epoch 1 Batch 6880/12277] loss=0.6350, lr=0.0000191, metrics:accuracy:0.6791
INFO:root:10:52:01 [Epoch 1 Batch 6890/12277] loss=0.7069, lr=0.0000191, metrics:accuracy:0.6792
INFO:root:10:52:02 [Epoch 1 Batch 6900/12277] loss=0.6049, lr=0.0000191, metrics:accuracy:0.6793
INFO:root:10:52:04 [Epoch 1 Batch 6910/12277] loss=0.6100, lr=0.0000191, metrics:accuracy:0.6794
INFO:root:10:52:06 [Epoch 1 Batch 6920/12277] loss=0.6662, lr=0.0000191, metrics:accuracy:0.6795
INFO:root:10:52:07 [Epoch 1 Batch 6930/12277] loss=0.6358, lr=0.0000191, metrics:accuracy:0.6796
INFO:root:10:52:09 [Epoch 1 Batch 6940/12277] loss=0.6149, lr=0.0000191, metrics:accuracy:0.6797
INFO:root:10:52:11 [Epoch 1 Batch 6950/12277] loss=0.6401, lr=0.0000191, metrics:accuracy:0.6798
INFO:root:10:52:12 [Epoch 1 Batch 6960/12277] loss=0.5577, lr=0.0000191, metrics:accuracy:0.6799
INFO:root:10:52:13 [Epoch 1 Batch 6970/12277] loss=0.5749, lr=0.0000191, metrics:accuracy:0.6800
INFO:root:10:52:15 [Epoch 1 Batch 6980/12277] loss=0.7157, lr=0.0000191, metrics:accuracy:0.6801
INFO:root:10:52:17 [Epoch 1 Batch 6990/12277] loss=0.5847, lr=0.0000191, metrics:accuracy:0.6802
INFO:root:10:52:18 [Epoch 1 Batch 7000/12277] loss=0.7238, lr=0.0000191, metrics:accuracy:0.6803
INFO:root:10:52:20 [Epoch 1 Batch 7010/12277] loss=0.6200, lr=0.0000190, metrics:accuracy:0.6804
INFO:root:10:52:21 [Epoch 1 Batch 7020/12277] loss=0.6557, lr=0.0000190, metrics:accuracy:0.6805
INFO:root:10:52:23 [Epoch 1 Batch 7030/12277] loss=0.6276, lr=0.0000190, metrics:accuracy:0.6805
INFO:root:10:52:24 [Epoch 1 Batch 7040/12277] loss=0.6626, lr=0.0000190, metrics:accuracy:0.6806
INFO:root:10:52:26 [Epoch 1 Batch 7050/12277] loss=0.7515, lr=0.0000190, metrics:accuracy:0.6806
INFO:root:10:52:28 [Epoch 1 Batch 7060/12277] loss=0.7253, lr=0.0000190, metrics:accuracy:0.6807
INFO:root:10:52:29 [Epoch 1 Batch 7070/12277] loss=0.5518, lr=0.0000190, metrics:accuracy:0.6808
INFO:root:10:52:31 [Epoch 1 Batch 7080/12277] loss=0.7208, lr=0.0000190, metrics:accuracy:0.6808
INFO:root:10:52:33 [Epoch 1 Batch 7090/12277] loss=0.5801, lr=0.0000190, metrics:accuracy:0.6810
INFO:root:10:52:34 [Epoch 1 Batch 7100/12277] loss=0.6540, lr=0.0000190, metrics:accuracy:0.6810
INFO:root:10:52:36 [Epoch 1 Batch 7110/12277] loss=0.6367, lr=0.0000190, metrics:accuracy:0.6812
INFO:root:10:52:38 [Epoch 1 Batch 7120/12277] loss=0.6834, lr=0.0000190, metrics:accuracy:0.6812
INFO:root:10:52:39 [Epoch 1 Batch 7130/12277] loss=0.6273, lr=0.0000190, metrics:accuracy:0.6813
INFO:root:10:52:41 [Epoch 1 Batch 7140/12277] loss=0.6548, lr=0.0000190, metrics:accuracy:0.6814
INFO:root:10:52:43 [Epoch 1 Batch 7150/12277] loss=0.6931, lr=0.0000190, metrics:accuracy:0.6814
INFO:root:10:52:44 [Epoch 1 Batch 7160/12277] loss=0.6504, lr=0.0000190, metrics:accuracy:0.6815
INFO:root:10:52:46 [Epoch 1 Batch 7170/12277] loss=0.6795, lr=0.0000190, metrics:accuracy:0.6815
INFO:root:10:52:48 [Epoch 1 Batch 7180/12277] loss=0.6311, lr=0.0000190, metrics:accuracy:0.6816
INFO:root:10:52:49 [Epoch 1 Batch 7190/12277] loss=0.6360, lr=0.0000190, metrics:accuracy:0.6817
INFO:root:10:52:51 [Epoch 1 Batch 7200/12277] loss=0.6866, lr=0.0000190, metrics:accuracy:0.6818
INFO:root:10:52:52 [Epoch 1 Batch 7210/12277] loss=0.6571, lr=0.0000190, metrics:accuracy:0.6819
INFO:root:10:52:54 [Epoch 1 Batch 7220/12277] loss=0.6959, lr=0.0000190, metrics:accuracy:0.6819
INFO:root:10:52:56 [Epoch 1 Batch 7230/12277] loss=0.7258, lr=0.0000189, metrics:accuracy:0.6820
INFO:root:10:52:58 [Epoch 1 Batch 7240/12277] loss=0.6553, lr=0.0000189, metrics:accuracy:0.6820
INFO:root:10:52:59 [Epoch 1 Batch 7250/12277] loss=0.6471, lr=0.0000189, metrics:accuracy:0.6821
INFO:root:10:53:01 [Epoch 1 Batch 7260/12277] loss=0.7095, lr=0.0000189, metrics:accuracy:0.6821
INFO:root:10:53:03 [Epoch 1 Batch 7270/12277] loss=0.6154, lr=0.0000189, metrics:accuracy:0.6822
INFO:root:10:53:04 [Epoch 1 Batch 7280/12277] loss=0.6877, lr=0.0000189, metrics:accuracy:0.6822
INFO:root:10:53:06 [Epoch 1 Batch 7290/12277] loss=0.5998, lr=0.0000189, metrics:accuracy:0.6823
INFO:root:10:53:07 [Epoch 1 Batch 7300/12277] loss=0.6778, lr=0.0000189, metrics:accuracy:0.6824
INFO:root:10:53:09 [Epoch 1 Batch 7310/12277] loss=0.5846, lr=0.0000189, metrics:accuracy:0.6825
INFO:root:10:53:10 [Epoch 1 Batch 7320/12277] loss=0.5681, lr=0.0000189, metrics:accuracy:0.6826
INFO:root:10:53:12 [Epoch 1 Batch 7330/12277] loss=0.6674, lr=0.0000189, metrics:accuracy:0.6827
INFO:root:10:53:14 [Epoch 1 Batch 7340/12277] loss=0.6121, lr=0.0000189, metrics:accuracy:0.6828
INFO:root:10:53:15 [Epoch 1 Batch 7350/12277] loss=0.6369, lr=0.0000189, metrics:accuracy:0.6828
INFO:root:10:53:17 [Epoch 1 Batch 7360/12277] loss=0.6548, lr=0.0000189, metrics:accuracy:0.6829
INFO:root:10:53:18 [Epoch 1 Batch 7370/12277] loss=0.7531, lr=0.0000189, metrics:accuracy:0.6829
INFO:root:10:53:20 [Epoch 1 Batch 7380/12277] loss=0.6128, lr=0.0000189, metrics:accuracy:0.6830
INFO:root:10:53:21 [Epoch 1 Batch 7390/12277] loss=0.6455, lr=0.0000189, metrics:accuracy:0.6831
INFO:root:10:53:23 [Epoch 1 Batch 7400/12277] loss=0.6497, lr=0.0000189, metrics:accuracy:0.6831
INFO:root:10:53:25 [Epoch 1 Batch 7410/12277] loss=0.6442, lr=0.0000189, metrics:accuracy:0.6832
INFO:root:10:53:27 [Epoch 1 Batch 7420/12277] loss=0.6456, lr=0.0000189, metrics:accuracy:0.6832
INFO:root:10:53:28 [Epoch 1 Batch 7430/12277] loss=0.6482, lr=0.0000189, metrics:accuracy:0.6833
INFO:root:10:53:30 [Epoch 1 Batch 7440/12277] loss=0.7278, lr=0.0000189, metrics:accuracy:0.6834
INFO:root:10:53:31 [Epoch 1 Batch 7450/12277] loss=0.5913, lr=0.0000188, metrics:accuracy:0.6834
INFO:root:10:53:33 [Epoch 1 Batch 7460/12277] loss=0.6964, lr=0.0000188, metrics:accuracy:0.6835
INFO:root:10:53:34 [Epoch 1 Batch 7470/12277] loss=0.5872, lr=0.0000188, metrics:accuracy:0.6836
INFO:root:10:53:36 [Epoch 1 Batch 7480/12277] loss=0.6067, lr=0.0000188, metrics:accuracy:0.6837
INFO:root:10:53:38 [Epoch 1 Batch 7490/12277] loss=0.6312, lr=0.0000188, metrics:accuracy:0.6838
INFO:root:10:53:39 [Epoch 1 Batch 7500/12277] loss=0.6309, lr=0.0000188, metrics:accuracy:0.6839
INFO:root:10:53:41 [Epoch 1 Batch 7510/12277] loss=0.5909, lr=0.0000188, metrics:accuracy:0.6840
INFO:root:10:53:42 [Epoch 1 Batch 7520/12277] loss=0.6852, lr=0.0000188, metrics:accuracy:0.6841
INFO:root:10:53:44 [Epoch 1 Batch 7530/12277] loss=0.6157, lr=0.0000188, metrics:accuracy:0.6841
INFO:root:10:53:46 [Epoch 1 Batch 7540/12277] loss=0.6843, lr=0.0000188, metrics:accuracy:0.6842
INFO:root:10:53:47 [Epoch 1 Batch 7550/12277] loss=0.6815, lr=0.0000188, metrics:accuracy:0.6843
INFO:root:10:53:49 [Epoch 1 Batch 7560/12277] loss=0.5921, lr=0.0000188, metrics:accuracy:0.6844
INFO:root:10:53:51 [Epoch 1 Batch 7570/12277] loss=0.6648, lr=0.0000188, metrics:accuracy:0.6844
INFO:root:10:53:52 [Epoch 1 Batch 7580/12277] loss=0.6098, lr=0.0000188, metrics:accuracy:0.6845
INFO:root:10:53:54 [Epoch 1 Batch 7590/12277] loss=0.6353, lr=0.0000188, metrics:accuracy:0.6846
INFO:root:10:53:55 [Epoch 1 Batch 7600/12277] loss=0.6207, lr=0.0000188, metrics:accuracy:0.6847
INFO:root:10:53:57 [Epoch 1 Batch 7610/12277] loss=0.6457, lr=0.0000188, metrics:accuracy:0.6847
INFO:root:10:53:59 [Epoch 1 Batch 7620/12277] loss=0.6453, lr=0.0000188, metrics:accuracy:0.6848
INFO:root:10:54:00 [Epoch 1 Batch 7630/12277] loss=0.6162, lr=0.0000188, metrics:accuracy:0.6848
INFO:root:10:54:02 [Epoch 1 Batch 7640/12277] loss=0.6767, lr=0.0000188, metrics:accuracy:0.6849
INFO:root:10:54:04 [Epoch 1 Batch 7650/12277] loss=0.6965, lr=0.0000188, metrics:accuracy:0.6849
INFO:root:10:54:05 [Epoch 1 Batch 7660/12277] loss=0.5657, lr=0.0000188, metrics:accuracy:0.6850
INFO:root:10:54:07 [Epoch 1 Batch 7670/12277] loss=0.6462, lr=0.0000188, metrics:accuracy:0.6851
INFO:root:10:54:08 [Epoch 1 Batch 7680/12277] loss=0.6308, lr=0.0000187, metrics:accuracy:0.6852
INFO:root:10:54:10 [Epoch 1 Batch 7690/12277] loss=0.6535, lr=0.0000187, metrics:accuracy:0.6853
INFO:root:10:54:12 [Epoch 1 Batch 7700/12277] loss=0.5612, lr=0.0000187, metrics:accuracy:0.6854
INFO:root:10:54:14 [Epoch 1 Batch 7710/12277] loss=0.5663, lr=0.0000187, metrics:accuracy:0.6855
INFO:root:10:54:15 [Epoch 1 Batch 7720/12277] loss=0.6089, lr=0.0000187, metrics:accuracy:0.6856
INFO:root:10:54:17 [Epoch 1 Batch 7730/12277] loss=0.7198, lr=0.0000187, metrics:accuracy:0.6857
INFO:root:10:54:19 [Epoch 1 Batch 7740/12277] loss=0.6332, lr=0.0000187, metrics:accuracy:0.6857
INFO:root:10:54:20 [Epoch 1 Batch 7750/12277] loss=0.5857, lr=0.0000187, metrics:accuracy:0.6858
INFO:root:10:54:22 [Epoch 1 Batch 7760/12277] loss=0.6255, lr=0.0000187, metrics:accuracy:0.6859
INFO:root:10:54:23 [Epoch 1 Batch 7770/12277] loss=0.6030, lr=0.0000187, metrics:accuracy:0.6860
INFO:root:10:54:25 [Epoch 1 Batch 7780/12277] loss=0.6071, lr=0.0000187, metrics:accuracy:0.6860
INFO:root:10:54:26 [Epoch 1 Batch 7790/12277] loss=0.6067, lr=0.0000187, metrics:accuracy:0.6861
INFO:root:10:54:28 [Epoch 1 Batch 7800/12277] loss=0.5457, lr=0.0000187, metrics:accuracy:0.6862
INFO:root:10:54:30 [Epoch 1 Batch 7810/12277] loss=0.6723, lr=0.0000187, metrics:accuracy:0.6863
INFO:root:10:54:31 [Epoch 1 Batch 7820/12277] loss=0.7126, lr=0.0000187, metrics:accuracy:0.6863
INFO:root:10:54:33 [Epoch 1 Batch 7830/12277] loss=0.6406, lr=0.0000187, metrics:accuracy:0.6864
INFO:root:10:54:34 [Epoch 1 Batch 7840/12277] loss=0.6668, lr=0.0000187, metrics:accuracy:0.6865
INFO:root:10:54:36 [Epoch 1 Batch 7850/12277] loss=0.5919, lr=0.0000187, metrics:accuracy:0.6866
INFO:root:10:54:38 [Epoch 1 Batch 7860/12277] loss=0.5993, lr=0.0000187, metrics:accuracy:0.6867
INFO:root:10:54:39 [Epoch 1 Batch 7870/12277] loss=0.5815, lr=0.0000187, metrics:accuracy:0.6868
INFO:root:10:54:41 [Epoch 1 Batch 7880/12277] loss=0.6336, lr=0.0000187, metrics:accuracy:0.6869
INFO:root:10:54:42 [Epoch 1 Batch 7890/12277] loss=0.6020, lr=0.0000187, metrics:accuracy:0.6870
INFO:root:10:54:44 [Epoch 1 Batch 7900/12277] loss=0.6086, lr=0.0000186, metrics:accuracy:0.6871
INFO:root:10:54:46 [Epoch 1 Batch 7910/12277] loss=0.6212, lr=0.0000186, metrics:accuracy:0.6872
INFO:root:10:54:47 [Epoch 1 Batch 7920/12277] loss=0.6684, lr=0.0000186, metrics:accuracy:0.6872
INFO:root:10:54:49 [Epoch 1 Batch 7930/12277] loss=0.6258, lr=0.0000186, metrics:accuracy:0.6873
INFO:root:10:54:51 [Epoch 1 Batch 7940/12277] loss=0.6846, lr=0.0000186, metrics:accuracy:0.6873
INFO:root:10:54:53 [Epoch 1 Batch 7950/12277] loss=0.6499, lr=0.0000186, metrics:accuracy:0.6874
INFO:root:10:54:54 [Epoch 1 Batch 7960/12277] loss=0.6052, lr=0.0000186, metrics:accuracy:0.6875
INFO:root:10:54:56 [Epoch 1 Batch 7970/12277] loss=0.5658, lr=0.0000186, metrics:accuracy:0.6876
INFO:root:10:54:58 [Epoch 1 Batch 7980/12277] loss=0.6297, lr=0.0000186, metrics:accuracy:0.6877
INFO:root:10:54:59 [Epoch 1 Batch 7990/12277] loss=0.5730, lr=0.0000186, metrics:accuracy:0.6878
INFO:root:10:55:01 [Epoch 1 Batch 8000/12277] loss=0.6348, lr=0.0000186, metrics:accuracy:0.6878
INFO:root:10:55:03 [Epoch 1 Batch 8010/12277] loss=0.6771, lr=0.0000186, metrics:accuracy:0.6879
INFO:root:10:55:05 [Epoch 1 Batch 8020/12277] loss=0.6239, lr=0.0000186, metrics:accuracy:0.6880
INFO:root:10:55:06 [Epoch 1 Batch 8030/12277] loss=0.6565, lr=0.0000186, metrics:accuracy:0.6880
INFO:root:10:55:08 [Epoch 1 Batch 8040/12277] loss=0.6947, lr=0.0000186, metrics:accuracy:0.6880
INFO:root:10:55:10 [Epoch 1 Batch 8050/12277] loss=0.6216, lr=0.0000186, metrics:accuracy:0.6881
INFO:root:10:55:11 [Epoch 1 Batch 8060/12277] loss=0.6247, lr=0.0000186, metrics:accuracy:0.6882
INFO:root:10:55:13 [Epoch 1 Batch 8070/12277] loss=0.5613, lr=0.0000186, metrics:accuracy:0.6883
INFO:root:10:55:14 [Epoch 1 Batch 8080/12277] loss=0.6562, lr=0.0000186, metrics:accuracy:0.6883
INFO:root:10:55:16 [Epoch 1 Batch 8090/12277] loss=0.6298, lr=0.0000186, metrics:accuracy:0.6884
INFO:root:10:55:17 [Epoch 1 Batch 8100/12277] loss=0.6645, lr=0.0000186, metrics:accuracy:0.6885
INFO:root:10:55:19 [Epoch 1 Batch 8110/12277] loss=0.6020, lr=0.0000186, metrics:accuracy:0.6885
INFO:root:10:55:20 [Epoch 1 Batch 8120/12277] loss=0.6483, lr=0.0000185, metrics:accuracy:0.6886
INFO:root:10:55:22 [Epoch 1 Batch 8130/12277] loss=0.6789, lr=0.0000185, metrics:accuracy:0.6886
INFO:root:10:55:24 [Epoch 1 Batch 8140/12277] loss=0.6852, lr=0.0000185, metrics:accuracy:0.6886
INFO:root:10:55:25 [Epoch 1 Batch 8150/12277] loss=0.6370, lr=0.0000185, metrics:accuracy:0.6887
INFO:root:10:55:27 [Epoch 1 Batch 8160/12277] loss=0.6190, lr=0.0000185, metrics:accuracy:0.6888
INFO:root:10:55:29 [Epoch 1 Batch 8170/12277] loss=0.5902, lr=0.0000185, metrics:accuracy:0.6888
INFO:root:10:55:30 [Epoch 1 Batch 8180/12277] loss=0.6293, lr=0.0000185, metrics:accuracy:0.6889
INFO:root:10:55:32 [Epoch 1 Batch 8190/12277] loss=0.6411, lr=0.0000185, metrics:accuracy:0.6890
INFO:root:10:55:33 [Epoch 1 Batch 8200/12277] loss=0.6423, lr=0.0000185, metrics:accuracy:0.6890
INFO:root:10:55:35 [Epoch 1 Batch 8210/12277] loss=0.6222, lr=0.0000185, metrics:accuracy:0.6891
INFO:root:10:55:37 [Epoch 1 Batch 8220/12277] loss=0.6519, lr=0.0000185, metrics:accuracy:0.6891
INFO:root:10:55:39 [Epoch 1 Batch 8230/12277] loss=0.6632, lr=0.0000185, metrics:accuracy:0.6892
INFO:root:10:55:40 [Epoch 1 Batch 8240/12277] loss=0.6143, lr=0.0000185, metrics:accuracy:0.6892
INFO:root:10:55:42 [Epoch 1 Batch 8250/12277] loss=0.6437, lr=0.0000185, metrics:accuracy:0.6893
INFO:root:10:55:44 [Epoch 1 Batch 8260/12277] loss=0.5921, lr=0.0000185, metrics:accuracy:0.6894
INFO:root:10:55:45 [Epoch 1 Batch 8270/12277] loss=0.6205, lr=0.0000185, metrics:accuracy:0.6894
INFO:root:10:55:47 [Epoch 1 Batch 8280/12277] loss=0.7019, lr=0.0000185, metrics:accuracy:0.6894
INFO:root:10:55:49 [Epoch 1 Batch 8290/12277] loss=0.6769, lr=0.0000185, metrics:accuracy:0.6895
INFO:root:10:55:51 [Epoch 1 Batch 8300/12277] loss=0.5923, lr=0.0000185, metrics:accuracy:0.6896
INFO:root:10:55:52 [Epoch 1 Batch 8310/12277] loss=0.6044, lr=0.0000185, metrics:accuracy:0.6897
INFO:root:10:55:54 [Epoch 1 Batch 8320/12277] loss=0.6900, lr=0.0000185, metrics:accuracy:0.6898
INFO:root:10:55:55 [Epoch 1 Batch 8330/12277] loss=0.5815, lr=0.0000185, metrics:accuracy:0.6899
INFO:root:10:55:57 [Epoch 1 Batch 8340/12277] loss=0.5914, lr=0.0000184, metrics:accuracy:0.6900
INFO:root:10:55:58 [Epoch 1 Batch 8350/12277] loss=0.6966, lr=0.0000184, metrics:accuracy:0.6900
INFO:root:10:56:00 [Epoch 1 Batch 8360/12277] loss=0.5730, lr=0.0000184, metrics:accuracy:0.6901
INFO:root:10:56:02 [Epoch 1 Batch 8370/12277] loss=0.6274, lr=0.0000184, metrics:accuracy:0.6901
INFO:root:10:56:03 [Epoch 1 Batch 8380/12277] loss=0.6001, lr=0.0000184, metrics:accuracy:0.6902
INFO:root:10:56:05 [Epoch 1 Batch 8390/12277] loss=0.6187, lr=0.0000184, metrics:accuracy:0.6903
INFO:root:10:56:07 [Epoch 1 Batch 8400/12277] loss=0.5622, lr=0.0000184, metrics:accuracy:0.6904
INFO:root:10:56:08 [Epoch 1 Batch 8410/12277] loss=0.6073, lr=0.0000184, metrics:accuracy:0.6904
INFO:root:10:56:10 [Epoch 1 Batch 8420/12277] loss=0.6172, lr=0.0000184, metrics:accuracy:0.6905
INFO:root:10:56:12 [Epoch 1 Batch 8430/12277] loss=0.6970, lr=0.0000184, metrics:accuracy:0.6905
INFO:root:10:56:13 [Epoch 1 Batch 8440/12277] loss=0.6233, lr=0.0000184, metrics:accuracy:0.6906
INFO:root:10:56:15 [Epoch 1 Batch 8450/12277] loss=0.6588, lr=0.0000184, metrics:accuracy:0.6906
INFO:root:10:56:17 [Epoch 1 Batch 8460/12277] loss=0.6731, lr=0.0000184, metrics:accuracy:0.6906
INFO:root:10:56:19 [Epoch 1 Batch 8470/12277] loss=0.5912, lr=0.0000184, metrics:accuracy:0.6907
INFO:root:10:56:20 [Epoch 1 Batch 8480/12277] loss=0.6286, lr=0.0000184, metrics:accuracy:0.6908
INFO:root:10:56:22 [Epoch 1 Batch 8490/12277] loss=0.6554, lr=0.0000184, metrics:accuracy:0.6908
INFO:root:10:56:23 [Epoch 1 Batch 8500/12277] loss=0.7265, lr=0.0000184, metrics:accuracy:0.6908
INFO:root:10:56:25 [Epoch 1 Batch 8510/12277] loss=0.6145, lr=0.0000184, metrics:accuracy:0.6909
INFO:root:10:56:27 [Epoch 1 Batch 8520/12277] loss=0.6798, lr=0.0000184, metrics:accuracy:0.6909
INFO:root:10:56:28 [Epoch 1 Batch 8530/12277] loss=0.6919, lr=0.0000184, metrics:accuracy:0.6909
INFO:root:10:56:30 [Epoch 1 Batch 8540/12277] loss=0.7188, lr=0.0000184, metrics:accuracy:0.6909
INFO:root:10:56:31 [Epoch 1 Batch 8550/12277] loss=0.6088, lr=0.0000184, metrics:accuracy:0.6909
INFO:root:10:56:33 [Epoch 1 Batch 8560/12277] loss=0.5959, lr=0.0000183, metrics:accuracy:0.6910
INFO:root:10:56:35 [Epoch 1 Batch 8570/12277] loss=0.6171, lr=0.0000183, metrics:accuracy:0.6911
INFO:root:10:56:36 [Epoch 1 Batch 8580/12277] loss=0.6592, lr=0.0000183, metrics:accuracy:0.6911
INFO:root:10:56:38 [Epoch 1 Batch 8590/12277] loss=0.6985, lr=0.0000183, metrics:accuracy:0.6911
INFO:root:10:56:39 [Epoch 1 Batch 8600/12277] loss=0.5758, lr=0.0000183, metrics:accuracy:0.6912
INFO:root:10:56:41 [Epoch 1 Batch 8610/12277] loss=0.6461, lr=0.0000183, metrics:accuracy:0.6912
INFO:root:10:56:43 [Epoch 1 Batch 8620/12277] loss=0.6712, lr=0.0000183, metrics:accuracy:0.6913
INFO:root:10:56:44 [Epoch 1 Batch 8630/12277] loss=0.6346, lr=0.0000183, metrics:accuracy:0.6913
INFO:root:10:56:46 [Epoch 1 Batch 8640/12277] loss=0.7147, lr=0.0000183, metrics:accuracy:0.6914
INFO:root:10:56:47 [Epoch 1 Batch 8650/12277] loss=0.6093, lr=0.0000183, metrics:accuracy:0.6914
INFO:root:10:56:49 [Epoch 1 Batch 8660/12277] loss=0.5725, lr=0.0000183, metrics:accuracy:0.6915
INFO:root:10:56:51 [Epoch 1 Batch 8670/12277] loss=0.6088, lr=0.0000183, metrics:accuracy:0.6916
INFO:root:10:56:52 [Epoch 1 Batch 8680/12277] loss=0.6295, lr=0.0000183, metrics:accuracy:0.6916
INFO:root:10:56:54 [Epoch 1 Batch 8690/12277] loss=0.6630, lr=0.0000183, metrics:accuracy:0.6916
INFO:root:10:56:56 [Epoch 1 Batch 8700/12277] loss=0.6324, lr=0.0000183, metrics:accuracy:0.6917
INFO:root:10:56:58 [Epoch 1 Batch 8710/12277] loss=0.6785, lr=0.0000183, metrics:accuracy:0.6917
INFO:root:10:57:00 [Epoch 1 Batch 8720/12277] loss=0.7420, lr=0.0000183, metrics:accuracy:0.6917
INFO:root:10:57:01 [Epoch 1 Batch 8730/12277] loss=0.5981, lr=0.0000183, metrics:accuracy:0.6918
INFO:root:10:57:03 [Epoch 1 Batch 8740/12277] loss=0.6331, lr=0.0000183, metrics:accuracy:0.6918
INFO:root:10:57:04 [Epoch 1 Batch 8750/12277] loss=0.5945, lr=0.0000183, metrics:accuracy:0.6919
INFO:root:10:57:06 [Epoch 1 Batch 8760/12277] loss=0.6158, lr=0.0000183, metrics:accuracy:0.6920
INFO:root:10:57:08 [Epoch 1 Batch 8770/12277] loss=0.6759, lr=0.0000183, metrics:accuracy:0.6920
INFO:root:10:57:10 [Epoch 1 Batch 8780/12277] loss=0.5909, lr=0.0000182, metrics:accuracy:0.6920
INFO:root:10:57:11 [Epoch 1 Batch 8790/12277] loss=0.7212, lr=0.0000182, metrics:accuracy:0.6920
INFO:root:10:57:13 [Epoch 1 Batch 8800/12277] loss=0.6578, lr=0.0000182, metrics:accuracy:0.6920
INFO:root:10:57:15 [Epoch 1 Batch 8810/12277] loss=0.7022, lr=0.0000182, metrics:accuracy:0.6921
INFO:root:10:57:17 [Epoch 1 Batch 8820/12277] loss=0.5482, lr=0.0000182, metrics:accuracy:0.6922
INFO:root:10:57:18 [Epoch 1 Batch 8830/12277] loss=0.6064, lr=0.0000182, metrics:accuracy:0.6922
INFO:root:10:57:20 [Epoch 1 Batch 8840/12277] loss=0.6286, lr=0.0000182, metrics:accuracy:0.6923
INFO:root:10:57:21 [Epoch 1 Batch 8850/12277] loss=0.5229, lr=0.0000182, metrics:accuracy:0.6924
INFO:root:10:57:23 [Epoch 1 Batch 8860/12277] loss=0.7045, lr=0.0000182, metrics:accuracy:0.6924
INFO:root:10:57:25 [Epoch 1 Batch 8870/12277] loss=0.6328, lr=0.0000182, metrics:accuracy:0.6925
INFO:root:10:57:26 [Epoch 1 Batch 8880/12277] loss=0.5878, lr=0.0000182, metrics:accuracy:0.6926
INFO:root:10:57:28 [Epoch 1 Batch 8890/12277] loss=0.6387, lr=0.0000182, metrics:accuracy:0.6926
INFO:root:10:57:30 [Epoch 1 Batch 8900/12277] loss=0.6450, lr=0.0000182, metrics:accuracy:0.6926
INFO:root:10:57:32 [Epoch 1 Batch 8910/12277] loss=0.5809, lr=0.0000182, metrics:accuracy:0.6926
INFO:root:10:57:33 [Epoch 1 Batch 8920/12277] loss=0.5756, lr=0.0000182, metrics:accuracy:0.6927
INFO:root:10:57:35 [Epoch 1 Batch 8930/12277] loss=0.5896, lr=0.0000182, metrics:accuracy:0.6928
INFO:root:10:57:36 [Epoch 1 Batch 8940/12277] loss=0.4915, lr=0.0000182, metrics:accuracy:0.6929
INFO:root:10:57:37 [Epoch 1 Batch 8950/12277] loss=0.6168, lr=0.0000182, metrics:accuracy:0.6930
INFO:root:10:57:39 [Epoch 1 Batch 8960/12277] loss=0.6080, lr=0.0000182, metrics:accuracy:0.6931
INFO:root:10:57:41 [Epoch 1 Batch 8970/12277] loss=0.6189, lr=0.0000182, metrics:accuracy:0.6932
INFO:root:10:57:42 [Epoch 1 Batch 8980/12277] loss=0.6067, lr=0.0000182, metrics:accuracy:0.6932
INFO:root:10:57:44 [Epoch 1 Batch 8990/12277] loss=0.5453, lr=0.0000182, metrics:accuracy:0.6933
INFO:root:10:57:45 [Epoch 1 Batch 9000/12277] loss=0.6450, lr=0.0000181, metrics:accuracy:0.6934
INFO:root:10:57:47 [Epoch 1 Batch 9010/12277] loss=0.6116, lr=0.0000181, metrics:accuracy:0.6934
INFO:root:10:57:48 [Epoch 1 Batch 9020/12277] loss=0.5791, lr=0.0000181, metrics:accuracy:0.6935
INFO:root:10:57:50 [Epoch 1 Batch 9030/12277] loss=0.6036, lr=0.0000181, metrics:accuracy:0.6936
INFO:root:10:57:52 [Epoch 1 Batch 9040/12277] loss=0.5571, lr=0.0000181, metrics:accuracy:0.6936
INFO:root:10:57:53 [Epoch 1 Batch 9050/12277] loss=0.6244, lr=0.0000181, metrics:accuracy:0.6937
INFO:root:10:57:55 [Epoch 1 Batch 9060/12277] loss=0.6170, lr=0.0000181, metrics:accuracy:0.6938
INFO:root:10:57:57 [Epoch 1 Batch 9070/12277] loss=0.5870, lr=0.0000181, metrics:accuracy:0.6938
INFO:root:10:57:58 [Epoch 1 Batch 9080/12277] loss=0.6976, lr=0.0000181, metrics:accuracy:0.6939
INFO:root:10:58:00 [Epoch 1 Batch 9090/12277] loss=0.6030, lr=0.0000181, metrics:accuracy:0.6940
INFO:root:10:58:01 [Epoch 1 Batch 9100/12277] loss=0.6365, lr=0.0000181, metrics:accuracy:0.6940
INFO:root:10:58:03 [Epoch 1 Batch 9110/12277] loss=0.6454, lr=0.0000181, metrics:accuracy:0.6940
INFO:root:10:58:05 [Epoch 1 Batch 9120/12277] loss=0.6344, lr=0.0000181, metrics:accuracy:0.6941
INFO:root:10:58:06 [Epoch 1 Batch 9130/12277] loss=0.5839, lr=0.0000181, metrics:accuracy:0.6941
INFO:root:10:58:08 [Epoch 1 Batch 9140/12277] loss=0.5711, lr=0.0000181, metrics:accuracy:0.6942
INFO:root:10:58:10 [Epoch 1 Batch 9150/12277] loss=0.6300, lr=0.0000181, metrics:accuracy:0.6943
INFO:root:10:58:12 [Epoch 1 Batch 9160/12277] loss=0.5605, lr=0.0000181, metrics:accuracy:0.6944
INFO:root:10:58:13 [Epoch 1 Batch 9170/12277] loss=0.6479, lr=0.0000181, metrics:accuracy:0.6944
INFO:root:10:58:15 [Epoch 1 Batch 9180/12277] loss=0.6400, lr=0.0000181, metrics:accuracy:0.6945
INFO:root:10:58:16 [Epoch 1 Batch 9190/12277] loss=0.5895, lr=0.0000181, metrics:accuracy:0.6946
INFO:root:10:58:18 [Epoch 1 Batch 9200/12277] loss=0.5565, lr=0.0000181, metrics:accuracy:0.6947
INFO:root:10:58:20 [Epoch 1 Batch 9210/12277] loss=0.5926, lr=0.0000181, metrics:accuracy:0.6947
INFO:root:10:58:21 [Epoch 1 Batch 9220/12277] loss=0.6061, lr=0.0000180, metrics:accuracy:0.6948
INFO:root:10:58:23 [Epoch 1 Batch 9230/12277] loss=0.7064, lr=0.0000180, metrics:accuracy:0.6948
INFO:root:10:58:25 [Epoch 1 Batch 9240/12277] loss=0.6824, lr=0.0000180, metrics:accuracy:0.6948
INFO:root:10:58:26 [Epoch 1 Batch 9250/12277] loss=0.6142, lr=0.0000180, metrics:accuracy:0.6949
INFO:root:10:58:28 [Epoch 1 Batch 9260/12277] loss=0.6435, lr=0.0000180, metrics:accuracy:0.6949
INFO:root:10:58:29 [Epoch 1 Batch 9270/12277] loss=0.5636, lr=0.0000180, metrics:accuracy:0.6950
INFO:root:10:58:31 [Epoch 1 Batch 9280/12277] loss=0.6126, lr=0.0000180, metrics:accuracy:0.6950
INFO:root:10:58:33 [Epoch 1 Batch 9290/12277] loss=0.6785, lr=0.0000180, metrics:accuracy:0.6951
INFO:root:10:58:34 [Epoch 1 Batch 9300/12277] loss=0.6940, lr=0.0000180, metrics:accuracy:0.6951
INFO:root:10:58:36 [Epoch 1 Batch 9310/12277] loss=0.5887, lr=0.0000180, metrics:accuracy:0.6952
INFO:root:10:58:38 [Epoch 1 Batch 9320/12277] loss=0.6211, lr=0.0000180, metrics:accuracy:0.6952
INFO:root:10:58:39 [Epoch 1 Batch 9330/12277] loss=0.6206, lr=0.0000180, metrics:accuracy:0.6952
INFO:root:10:58:41 [Epoch 1 Batch 9340/12277] loss=0.7050, lr=0.0000180, metrics:accuracy:0.6953
INFO:root:10:58:43 [Epoch 1 Batch 9350/12277] loss=0.6147, lr=0.0000180, metrics:accuracy:0.6953
INFO:root:10:58:45 [Epoch 1 Batch 9360/12277] loss=0.5845, lr=0.0000180, metrics:accuracy:0.6954
INFO:root:10:58:46 [Epoch 1 Batch 9370/12277] loss=0.5184, lr=0.0000180, metrics:accuracy:0.6955
INFO:root:10:58:48 [Epoch 1 Batch 9380/12277] loss=0.5581, lr=0.0000180, metrics:accuracy:0.6956
INFO:root:10:58:50 [Epoch 1 Batch 9390/12277] loss=0.6376, lr=0.0000180, metrics:accuracy:0.6957
INFO:root:10:58:51 [Epoch 1 Batch 9400/12277] loss=0.6860, lr=0.0000180, metrics:accuracy:0.6957
INFO:root:10:58:53 [Epoch 1 Batch 9410/12277] loss=0.5983, lr=0.0000180, metrics:accuracy:0.6958
INFO:root:10:58:54 [Epoch 1 Batch 9420/12277] loss=0.5718, lr=0.0000180, metrics:accuracy:0.6959
INFO:root:10:58:56 [Epoch 1 Batch 9430/12277] loss=0.6215, lr=0.0000180, metrics:accuracy:0.6960
INFO:root:10:58:58 [Epoch 1 Batch 9440/12277] loss=0.6104, lr=0.0000179, metrics:accuracy:0.6960
INFO:root:10:58:59 [Epoch 1 Batch 9450/12277] loss=0.6318, lr=0.0000179, metrics:accuracy:0.6961
INFO:root:10:59:01 [Epoch 1 Batch 9460/12277] loss=0.6780, lr=0.0000179, metrics:accuracy:0.6961
INFO:root:10:59:02 [Epoch 1 Batch 9470/12277] loss=0.6334, lr=0.0000179, metrics:accuracy:0.6961
INFO:root:10:59:04 [Epoch 1 Batch 9480/12277] loss=0.6586, lr=0.0000179, metrics:accuracy:0.6962
INFO:root:10:59:06 [Epoch 1 Batch 9490/12277] loss=0.5796, lr=0.0000179, metrics:accuracy:0.6962
INFO:root:10:59:07 [Epoch 1 Batch 9500/12277] loss=0.6961, lr=0.0000179, metrics:accuracy:0.6962
INFO:root:10:59:09 [Epoch 1 Batch 9510/12277] loss=0.6164, lr=0.0000179, metrics:accuracy:0.6963
INFO:root:10:59:11 [Epoch 1 Batch 9520/12277] loss=0.5940, lr=0.0000179, metrics:accuracy:0.6964
INFO:root:10:59:12 [Epoch 1 Batch 9530/12277] loss=0.6368, lr=0.0000179, metrics:accuracy:0.6964
INFO:root:10:59:14 [Epoch 1 Batch 9540/12277] loss=0.7008, lr=0.0000179, metrics:accuracy:0.6964
INFO:root:10:59:16 [Epoch 1 Batch 9550/12277] loss=0.5998, lr=0.0000179, metrics:accuracy:0.6965
INFO:root:10:59:17 [Epoch 1 Batch 9560/12277] loss=0.5720, lr=0.0000179, metrics:accuracy:0.6965
INFO:root:10:59:19 [Epoch 1 Batch 9570/12277] loss=0.6806, lr=0.0000179, metrics:accuracy:0.6965
INFO:root:10:59:21 [Epoch 1 Batch 9580/12277] loss=0.5538, lr=0.0000179, metrics:accuracy:0.6966
INFO:root:10:59:22 [Epoch 1 Batch 9590/12277] loss=0.6006, lr=0.0000179, metrics:accuracy:0.6967
INFO:root:10:59:24 [Epoch 1 Batch 9600/12277] loss=0.5857, lr=0.0000179, metrics:accuracy:0.6967
INFO:root:10:59:26 [Epoch 1 Batch 9610/12277] loss=0.6777, lr=0.0000179, metrics:accuracy:0.6968
INFO:root:10:59:27 [Epoch 1 Batch 9620/12277] loss=0.5682, lr=0.0000179, metrics:accuracy:0.6968
INFO:root:10:59:29 [Epoch 1 Batch 9630/12277] loss=0.6143, lr=0.0000179, metrics:accuracy:0.6969
INFO:root:10:59:31 [Epoch 1 Batch 9640/12277] loss=0.6309, lr=0.0000179, metrics:accuracy:0.6970
INFO:root:10:59:32 [Epoch 1 Batch 9650/12277] loss=0.6494, lr=0.0000179, metrics:accuracy:0.6970
INFO:root:10:59:34 [Epoch 1 Batch 9660/12277] loss=0.5414, lr=0.0000178, metrics:accuracy:0.6971
INFO:root:10:59:36 [Epoch 1 Batch 9670/12277] loss=0.5830, lr=0.0000178, metrics:accuracy:0.6972
INFO:root:10:59:37 [Epoch 1 Batch 9680/12277] loss=0.5727, lr=0.0000178, metrics:accuracy:0.6972
INFO:root:10:59:39 [Epoch 1 Batch 9690/12277] loss=0.5392, lr=0.0000178, metrics:accuracy:0.6973
INFO:root:10:59:40 [Epoch 1 Batch 9700/12277] loss=0.6537, lr=0.0000178, metrics:accuracy:0.6974
INFO:root:10:59:42 [Epoch 1 Batch 9710/12277] loss=0.6246, lr=0.0000178, metrics:accuracy:0.6974
INFO:root:10:59:43 [Epoch 1 Batch 9720/12277] loss=0.5513, lr=0.0000178, metrics:accuracy:0.6975
INFO:root:10:59:45 [Epoch 1 Batch 9730/12277] loss=0.6305, lr=0.0000178, metrics:accuracy:0.6976
INFO:root:10:59:47 [Epoch 1 Batch 9740/12277] loss=0.6265, lr=0.0000178, metrics:accuracy:0.6976
INFO:root:10:59:48 [Epoch 1 Batch 9750/12277] loss=0.6609, lr=0.0000178, metrics:accuracy:0.6977
INFO:root:10:59:50 [Epoch 1 Batch 9760/12277] loss=0.5533, lr=0.0000178, metrics:accuracy:0.6978
INFO:root:10:59:52 [Epoch 1 Batch 9770/12277] loss=0.6254, lr=0.0000178, metrics:accuracy:0.6978
INFO:root:10:59:53 [Epoch 1 Batch 9780/12277] loss=0.5598, lr=0.0000178, metrics:accuracy:0.6979
INFO:root:10:59:54 [Epoch 1 Batch 9790/12277] loss=0.6029, lr=0.0000178, metrics:accuracy:0.6979
INFO:root:10:59:56 [Epoch 1 Batch 9800/12277] loss=0.6231, lr=0.0000178, metrics:accuracy:0.6979
INFO:root:10:59:58 [Epoch 1 Batch 9810/12277] loss=0.6160, lr=0.0000178, metrics:accuracy:0.6980
INFO:root:11:00:00 [Epoch 1 Batch 9820/12277] loss=0.5387, lr=0.0000178, metrics:accuracy:0.6981
INFO:root:11:00:01 [Epoch 1 Batch 9830/12277] loss=0.6035, lr=0.0000178, metrics:accuracy:0.6982
INFO:root:11:00:03 [Epoch 1 Batch 9840/12277] loss=0.6822, lr=0.0000178, metrics:accuracy:0.6982
INFO:root:11:00:04 [Epoch 1 Batch 9850/12277] loss=0.6525, lr=0.0000178, metrics:accuracy:0.6982
INFO:root:11:00:06 [Epoch 1 Batch 9860/12277] loss=0.6440, lr=0.0000178, metrics:accuracy:0.6982
INFO:root:11:00:08 [Epoch 1 Batch 9870/12277] loss=0.6536, lr=0.0000178, metrics:accuracy:0.6983
INFO:root:11:00:10 [Epoch 1 Batch 9880/12277] loss=0.5694, lr=0.0000177, metrics:accuracy:0.6983
INFO:root:11:00:11 [Epoch 1 Batch 9890/12277] loss=0.6053, lr=0.0000177, metrics:accuracy:0.6984
INFO:root:11:00:13 [Epoch 1 Batch 9900/12277] loss=0.6205, lr=0.0000177, metrics:accuracy:0.6984
INFO:root:11:00:15 [Epoch 1 Batch 9910/12277] loss=0.6844, lr=0.0000177, metrics:accuracy:0.6984
INFO:root:11:00:16 [Epoch 1 Batch 9920/12277] loss=0.6204, lr=0.0000177, metrics:accuracy:0.6985
INFO:root:11:00:18 [Epoch 1 Batch 9930/12277] loss=0.5919, lr=0.0000177, metrics:accuracy:0.6985
INFO:root:11:00:19 [Epoch 1 Batch 9940/12277] loss=0.5841, lr=0.0000177, metrics:accuracy:0.6986
INFO:root:11:00:21 [Epoch 1 Batch 9950/12277] loss=0.5434, lr=0.0000177, metrics:accuracy:0.6987