-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlog.txt
8191 lines (8190 loc) · 979 KB
/
log.txt
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
Epoch: [ 46] [350/4000] time: 26695.4508, net0_loss = 0.20966, net0_acc = 0.9667, net0_test_acc = 0.9659, net1_loss = 0.18846, net1_acc = 0.9714, net1_test_acc = 0.9284
Epoch: [ 46] [350/4000] time: 26695.4508, dice0 = 0.08471, cross0 = 0.0771, kl0 = 0.0066, exclusion0 = 0.0891, dice1 = 0.05955, cross1 = 0.1111, kl1 = 0.0051, exclusion1 = 0.0306
1.2229236
Epoch: [ 46] [400/4000] time: 26702.8905, net0_loss = 0.16685, net0_acc = 0.9739, net0_test_acc = 0.8531, net1_loss = 0.15892, net1_acc = 0.9734, net1_test_acc = 0.9096
Epoch: [ 46] [400/4000] time: 26702.8905, dice0 = 0.06444, cross0 = 0.0634, kl0 = 0.0112, exclusion0 = 0.0668, dice1 = 0.06012, cross1 = 0.0710, kl1 = 0.0067, exclusion1 = 0.0489
1.1734962
Epoch: [ 46] [450/4000] time: 26710.3421, net0_loss = 0.05540, net0_acc = 0.9919, net0_test_acc = 0.9146, net1_loss = 0.37424, net1_acc = 0.9442, net1_test_acc = 0.7974
Epoch: [ 46] [450/4000] time: 26710.3422, dice0 = 0.02258, cross0 = 0.0199, kl0 = 0.0015, exclusion0 = 0.0244, dice1 = 0.12444, cross1 = 0.1472, kl1 = 0.0461, exclusion1 = 0.1591
1.267275
Epoch: [ 46] [500/4000] time: 26717.7435, net0_loss = 0.15507, net0_acc = 0.9751, net0_test_acc = 0.8836, net1_loss = 0.13466, net1_acc = 0.9790, net1_test_acc = 0.8550
Epoch: [ 46] [500/4000] time: 26717.7436, dice0 = 0.06197, cross0 = 0.0629, kl0 = 0.0043, exclusion0 = 0.0561, dice1 = 0.05274, cross1 = 0.0544, kl1 = 0.0040, exclusion1 = 0.0510
1.1360718
Epoch: [ 46] [550/4000] time: 26725.1275, net0_loss = 0.11231, net0_acc = 0.9849, net0_test_acc = 0.9165, net1_loss = 0.13760, net1_acc = 0.9772, net1_test_acc = 0.9099
Epoch: [ 46] [550/4000] time: 26725.1276, dice0 = 0.04033, cross0 = 0.0354, kl0 = 0.0125, exclusion0 = 0.0606, dice1 = 0.05286, cross1 = 0.0606, kl1 = 0.0048, exclusion1 = 0.0436
1.0999944
Epoch: [ 46] [600/4000] time: 26732.5140, net0_loss = 0.16652, net0_acc = 0.9729, net0_test_acc = 0.8948, net1_loss = 0.12297, net1_acc = 0.9779, net1_test_acc = 0.9075
Epoch: [ 46] [600/4000] time: 26732.5141, dice0 = 0.05865, cross0 = 0.0879, kl0 = 0.0029, exclusion0 = 0.0369, dice1 = 0.04730, cross1 = 0.0588, kl1 = 0.0030, exclusion1 = 0.0308
1.0908715
Epoch: [ 46] [650/4000] time: 26739.8570, net0_loss = 0.36744, net0_acc = 0.9446, net0_test_acc = 0.9277, net1_loss = 0.17253, net1_acc = 0.9701, net1_test_acc = 0.9499
Epoch: [ 46] [650/4000] time: 26739.8572, dice0 = 0.12927, cross0 = 0.1435, kl0 = 0.0376, exclusion0 = 0.1518, dice1 = 0.06704, cross1 = 0.0686, kl1 = 0.0089, exclusion1 = 0.0649
1.1949989
Epoch: [ 46] [700/4000] time: 26747.4386, net0_loss = 0.22908, net0_acc = 0.9629, net0_test_acc = 0.9776, net1_loss = 0.06797, net1_acc = 0.9893, net1_test_acc = 0.9894
Epoch: [ 46] [700/4000] time: 26747.4387, dice0 = 0.08888, cross0 = 0.0965, kl0 = 0.0070, exclusion0 = 0.0804, dice1 = 0.02639, cross1 = 0.0289, kl1 = 0.0020, exclusion1 = 0.0234
1.2012689
Epoch: [ 46] [750/4000] time: 26754.8721, net0_loss = 0.19319, net0_acc = 0.9664, net0_test_acc = 0.9665, net1_loss = 0.21594, net1_acc = 0.9623, net1_test_acc = 0.9546
Epoch: [ 46] [750/4000] time: 26754.8721, dice0 = 0.07252, cross0 = 0.0867, kl0 = 0.0087, exclusion0 = 0.0593, dice1 = 0.08125, cross1 = 0.0921, kl1 = 0.0104, exclusion1 = 0.0747
1.1695942
Epoch: [ 46] [800/4000] time: 26762.2957, net0_loss = 0.10061, net0_acc = 0.9837, net0_test_acc = 0.9735, net1_loss = 0.11900, net1_acc = 0.9819, net1_test_acc = 0.9326
Epoch: [ 46] [800/4000] time: 26762.2958, dice0 = 0.04009, cross0 = 0.0396, kl0 = 0.0029, exclusion0 = 0.0390, dice1 = 0.04717, cross1 = 0.0432, kl1 = 0.0059, exclusion1 = 0.0514
1.254278
Epoch: [ 46] [850/4000] time: 26769.6850, net0_loss = 0.21212, net0_acc = 0.9632, net0_test_acc = 0.8690, net1_loss = 0.07407, net1_acc = 0.9902, net1_test_acc = 0.9880
Epoch: [ 46] [850/4000] time: 26769.6851, dice0 = 0.08004, cross0 = 0.0915, kl0 = 0.0126, exclusion0 = 0.0687, dice1 = 0.02978, cross1 = 0.0240, kl1 = 0.0057, exclusion1 = 0.0350
1.1444254
Epoch: [ 46] [900/4000] time: 26777.0927, net0_loss = 0.14597, net0_acc = 0.9752, net0_test_acc = 0.9241, net1_loss = 0.30801, net1_acc = 0.9533, net1_test_acc = 0.9898
Epoch: [ 46] [900/4000] time: 26777.0927, dice0 = 0.05235, cross0 = 0.0663, kl0 = 0.0094, exclusion0 = 0.0452, dice1 = 0.09998, cross1 = 0.1519, kl1 = 0.0226, exclusion1 = 0.0898
1.145451
Epoch: [ 46] [950/4000] time: 26784.4817, net0_loss = 0.29342, net0_acc = 0.9489, net0_test_acc = 0.9064, net1_loss = 0.11303, net1_acc = 0.9844, net1_test_acc = 0.9126
Epoch: [ 46] [950/4000] time: 26784.4817, dice0 = 0.09992, cross0 = 0.1305, kl0 = 0.0296, exclusion0 = 0.0964, dice1 = 0.03686, cross1 = 0.0607, kl1 = 0.0030, exclusion1 = 0.0280
1.1424066
Epoch: [ 46] [1000/4000] time: 26791.9088, net0_loss = 0.12508, net0_acc = 0.9813, net0_test_acc = 0.9618, net1_loss = 0.29199, net1_acc = 0.9495, net1_test_acc = 0.9628
Epoch: [ 46] [1000/4000] time: 26791.9088, dice0 = 0.04866, cross0 = 0.0460, kl0 = 0.0069, exclusion0 = 0.0540, dice1 = 0.10163, cross1 = 0.1487, kl1 = 0.0129, exclusion1 = 0.0705
1.1681929
Epoch: [ 46] [1050/4000] time: 26799.3347, net0_loss = 0.13728, net0_acc = 0.9776, net0_test_acc = 0.7544, net1_loss = 0.06394, net1_acc = 0.9900, net1_test_acc = 0.8950
Epoch: [ 46] [1050/4000] time: 26799.3348, dice0 = 0.05154, cross0 = 0.0590, kl0 = 0.0055, exclusion0 = 0.0480, dice1 = 0.02621, cross1 = 0.0246, kl1 = 0.0020, exclusion1 = 0.0243
1.2206494
Epoch: [ 46] [1100/4000] time: 26806.7439, net0_loss = 0.22532, net0_acc = 0.9660, net0_test_acc = 0.8386, net1_loss = 0.09029, net1_acc = 0.9867, net1_test_acc = 0.8281
Epoch: [ 46] [1100/4000] time: 26806.7440, dice0 = 0.07173, cross0 = 0.1340, kl0 = 0.0033, exclusion0 = 0.0359, dice1 = 0.03429, cross1 = 0.0358, kl1 = 0.0038, exclusion1 = 0.0365
1.1333597
Epoch: [ 46] [1150/4000] time: 26814.1567, net0_loss = 0.13528, net0_acc = 0.9747, net0_test_acc = 0.9864, net1_loss = 0.17165, net1_acc = 0.9720, net1_test_acc = 0.9657
Epoch: [ 46] [1150/4000] time: 26814.1568, dice0 = 0.05316, cross0 = 0.0646, kl0 = 0.0029, exclusion0 = 0.0321, dice1 = 0.06007, cross1 = 0.0803, kl1 = 0.0085, exclusion1 = 0.0542
1.1464872
Epoch: [ 46] [1200/4000] time: 26821.5760, net0_loss = 0.17523, net0_acc = 0.9748, net0_test_acc = 0.9406, net1_loss = 0.13042, net1_acc = 0.9789, net1_test_acc = 0.9434
Epoch: [ 46] [1200/4000] time: 26821.5761, dice0 = 0.06205, cross0 = 0.0619, kl0 = 0.0192, exclusion0 = 0.0834, dice1 = 0.05007, cross1 = 0.0541, kl1 = 0.0056, exclusion1 = 0.0470
1.2708127
Epoch: [ 46] [1250/4000] time: 26828.9195, net0_loss = 0.19224, net0_acc = 0.9675, net0_test_acc = 0.9481, net1_loss = 0.35188, net1_acc = 0.9426, net1_test_acc = 0.9706
Epoch: [ 46] [1250/4000] time: 26828.9195, dice0 = 0.07680, cross0 = 0.0825, kl0 = 0.0027, exclusion0 = 0.0631, dice1 = 0.12130, cross1 = 0.1586, kl1 = 0.0244, exclusion1 = 0.1196
1.2085264
Epoch: [ 46] [1300/4000] time: 26836.3764, net0_loss = 0.22271, net0_acc = 0.9612, net0_test_acc = 0.9152, net1_loss = 0.14096, net1_acc = 0.9781, net1_test_acc = 0.9779
Epoch: [ 46] [1300/4000] time: 26836.3764, dice0 = 0.07934, cross0 = 0.1080, kl0 = 0.0130, exclusion0 = 0.0578, dice1 = 0.05264, cross1 = 0.0563, kl1 = 0.0085, exclusion1 = 0.0556
1.1453274
Epoch: [ 46] [1350/4000] time: 26843.7816, net0_loss = 0.06390, net0_acc = 0.9900, net0_test_acc = 0.9572, net1_loss = 0.15618, net1_acc = 0.9778, net1_test_acc = 0.9194
Epoch: [ 46] [1350/4000] time: 26843.7817, dice0 = 0.02526, cross0 = 0.0237, kl0 = 0.0031, exclusion0 = 0.0268, dice1 = 0.05713, cross1 = 0.0557, kl1 = 0.0138, exclusion1 = 0.0729
1.2032154
Epoch: [ 46] [1400/4000] time: 26851.1384, net0_loss = 0.11143, net0_acc = 0.9844, net0_test_acc = 0.9352, net1_loss = 0.20133, net1_acc = 0.9673, net1_test_acc = 0.9258
Epoch: [ 46] [1400/4000] time: 26851.1385, dice0 = 0.03580, cross0 = 0.0616, kl0 = 0.0028, exclusion0 = 0.0252, dice1 = 0.07808, cross1 = 0.0857, kl1 = 0.0054, exclusion1 = 0.0697
1.2035729
Epoch: [ 46] [1450/4000] time: 26858.5735, net0_loss = 0.87143, net0_acc = 0.8763, net0_test_acc = 0.9720, net1_loss = 0.18323, net1_acc = 0.9694, net1_test_acc = 0.9145
Epoch: [ 46] [1450/4000] time: 26858.5736, dice0 = 0.22213, cross0 = 0.6000, kl0 = 0.0196, exclusion0 = 0.0789, dice1 = 0.07107, cross1 = 0.0730, kl1 = 0.0127, exclusion1 = 0.0657
1.172308
Epoch: [ 46] [1500/4000] time: 26865.9865, net0_loss = 0.10589, net0_acc = 0.9819, net0_test_acc = 0.7364, net1_loss = 0.13555, net1_acc = 0.9769, net1_test_acc = 0.9388
Epoch: [ 46] [1500/4000] time: 26865.9865, dice0 = 0.04265, cross0 = 0.0438, kl0 = 0.0024, exclusion0 = 0.0364, dice1 = 0.05344, cross1 = 0.0581, kl1 = 0.0030, exclusion1 = 0.0451
1.1698605
Epoch: [ 46] [1550/4000] time: 26873.3589, net0_loss = 0.14722, net0_acc = 0.9757, net0_test_acc = 0.8930, net1_loss = 0.09264, net1_acc = 0.9859, net1_test_acc = 0.8227
Epoch: [ 46] [1550/4000] time: 26873.3591, dice0 = 0.05852, cross0 = 0.0633, kl0 = 0.0031, exclusion0 = 0.0476, dice1 = 0.03710, cross1 = 0.0346, kl1 = 0.0023, exclusion1 = 0.0395
1.1274688
Epoch: [ 46] [1600/4000] time: 26880.8023, net0_loss = 0.18996, net0_acc = 0.9678, net0_test_acc = 0.9040, net1_loss = 0.25537, net1_acc = 0.9597, net1_test_acc = 0.9590
Epoch: [ 46] [1600/4000] time: 26880.8023, dice0 = 0.07460, cross0 = 0.0785, kl0 = 0.0078, exclusion0 = 0.0660, dice1 = 0.08098, cross1 = 0.1406, kl1 = 0.0135, exclusion1 = 0.0540
1.2192698
Epoch: [ 46] [1650/4000] time: 26888.2499, net0_loss = 0.18701, net0_acc = 0.9692, net0_test_acc = 0.9362, net1_loss = 0.15447, net1_acc = 0.9720, net1_test_acc = 0.9797
Epoch: [ 46] [1650/4000] time: 26888.2500, dice0 = 0.06880, cross0 = 0.0808, kl0 = 0.0116, exclusion0 = 0.0633, dice1 = 0.06219, cross1 = 0.0659, kl1 = 0.0035, exclusion1 = 0.0493
1.130673
Epoch: [ 46] [1700/4000] time: 26895.6470, net0_loss = 0.21292, net0_acc = 0.9627, net0_test_acc = 0.9224, net1_loss = 0.05321, net1_acc = 0.9928, net1_test_acc = 0.9314
Epoch: [ 46] [1700/4000] time: 26895.6470, dice0 = 0.08274, cross0 = 0.0955, kl0 = 0.0041, exclusion0 = 0.0651, dice1 = 0.02155, cross1 = 0.0181, kl1 = 0.0021, exclusion1 = 0.0249
1.2716686
Epoch: [ 46] [1750/4000] time: 26903.0324, net0_loss = 0.16604, net0_acc = 0.9769, net0_test_acc = 0.9540, net1_loss = 0.22175, net1_acc = 0.9682, net1_test_acc = 0.8977
Epoch: [ 46] [1750/4000] time: 26903.0325, dice0 = 0.05817, cross0 = 0.0585, kl0 = 0.0202, exclusion0 = 0.0785, dice1 = 0.07607, cross1 = 0.0765, kl1 = 0.0255, exclusion1 = 0.1128
1.1799538
Epoch: [ 46] [1800/4000] time: 26910.4737, net0_loss = 0.46411, net0_acc = 0.9244, net0_test_acc = 0.7402, net1_loss = 0.16366, net1_acc = 0.9719, net1_test_acc = 0.8250
Epoch: [ 46] [1800/4000] time: 26910.4737, dice0 = 0.16682, cross0 = 0.1956, kl0 = 0.0279, exclusion0 = 0.1755, dice1 = 0.06292, cross1 = 0.0637, kl1 = 0.0122, exclusion1 = 0.0618
1.1766567
Epoch: [ 46] [1850/4000] time: 26917.8934, net0_loss = 0.16292, net0_acc = 0.9728, net0_test_acc = 0.8160, net1_loss = 0.20224, net1_acc = 0.9693, net1_test_acc = 0.8123
Epoch: [ 46] [1850/4000] time: 26917.8934, dice0 = 0.06099, cross0 = 0.0773, kl0 = 0.0034, exclusion0 = 0.0460, dice1 = 0.06938, cross1 = 0.0869, kl1 = 0.0186, exclusion1 = 0.0734
1.0677174
Epoch: [ 46] [1900/4000] time: 26925.3101, net0_loss = 0.15099, net0_acc = 0.9767, net0_test_acc = 0.9778, net1_loss = 0.26404, net1_acc = 0.9635, net1_test_acc = 0.9455
Epoch: [ 46] [1900/4000] time: 26925.3102, dice0 = 0.06161, cross0 = 0.0540, kl0 = 0.0038, exclusion0 = 0.0669, dice1 = 0.07848, cross1 = 0.1588, kl1 = 0.0053, exclusion1 = 0.0481
1.2211754
Epoch: [ 46] [1950/4000] time: 26932.7005, net0_loss = 0.19143, net0_acc = 0.9698, net0_test_acc = 0.9891, net1_loss = 0.05020, net1_acc = 0.9933, net1_test_acc = 0.9481
Epoch: [ 46] [1950/4000] time: 26932.7005, dice0 = 0.07022, cross0 = 0.0820, kl0 = 0.0130, exclusion0 = 0.0655, dice1 = 0.02019, cross1 = 0.0168, kl1 = 0.0030, exclusion1 = 0.0234
1.1493909
Epoch: [ 46] [2000/4000] time: 26940.1025, net0_loss = 0.09315, net0_acc = 0.9849, net0_test_acc = 0.9503, net1_loss = 0.10344, net1_acc = 0.9843, net1_test_acc = 0.7721
Epoch: [ 46] [2000/4000] time: 26940.1026, dice0 = 0.03580, cross0 = 0.0397, kl0 = 0.0039, exclusion0 = 0.0314, dice1 = 0.04005, cross1 = 0.0381, kl1 = 0.0073, exclusion1 = 0.0433
1.1412508
Epoch: [ 46] [2050/4000] time: 26947.5322, net0_loss = 0.08963, net0_acc = 0.9858, net0_test_acc = 0.9785, net1_loss = 0.27341, net1_acc = 0.9529, net1_test_acc = 0.9201
Epoch: [ 46] [2050/4000] time: 26947.5323, dice0 = 0.03616, cross0 = 0.0343, kl0 = 0.0024, exclusion0 = 0.0360, dice1 = 0.10520, cross1 = 0.1219, kl1 = 0.0083, exclusion1 = 0.0843
1.1062665
Epoch: [ 46] [2100/4000] time: 26954.9169, net0_loss = 0.08217, net0_acc = 0.9888, net0_test_acc = 0.9450, net1_loss = 0.03868, net1_acc = 0.9951, net1_test_acc = 0.9574
Epoch: [ 46] [2100/4000] time: 26954.9170, dice0 = 0.03076, cross0 = 0.0316, kl0 = 0.0046, exclusion0 = 0.0350, dice1 = 0.01548, cross1 = 0.0132, kl1 = 0.0018, exclusion1 = 0.0183
1.1887085
Epoch: [ 46] [2150/4000] time: 26962.3185, net0_loss = 0.08769, net0_acc = 0.9852, net0_test_acc = 0.9424, net1_loss = 0.20806, net1_acc = 0.9676, net1_test_acc = 0.9808
Epoch: [ 46] [2150/4000] time: 26962.3186, dice0 = 0.03434, cross0 = 0.0395, kl0 = 0.0016, exclusion0 = 0.0261, dice1 = 0.07357, cross1 = 0.0983, kl1 = 0.0104, exclusion1 = 0.0621
1.2047645
Epoch: [ 46] [2200/4000] time: 26969.7422, net0_loss = 0.12420, net0_acc = 0.9818, net0_test_acc = 0.8782, net1_loss = 0.18002, net1_acc = 0.9736, net1_test_acc = 0.9510
Epoch: [ 46] [2200/4000] time: 26969.7423, dice0 = 0.04691, cross0 = 0.0459, kl0 = 0.0099, exclusion0 = 0.0529, dice1 = 0.07013, cross1 = 0.0618, kl1 = 0.0109, exclusion1 = 0.0852
1.150063
Epoch: [ 46] [2250/4000] time: 26977.1780, net0_loss = 0.09379, net0_acc = 0.9831, net0_test_acc = 0.9034, net1_loss = 0.10469, net1_acc = 0.9848, net1_test_acc = 0.9646
Epoch: [ 46] [2250/4000] time: 26977.1780, dice0 = 0.03781, cross0 = 0.0412, kl0 = 0.0022, exclusion0 = 0.0274, dice1 = 0.04057, cross1 = 0.0391, kl1 = 0.0052, exclusion1 = 0.0449
1.0976518
Epoch: [ 46] [2300/4000] time: 26984.5432, net0_loss = 0.10772, net0_acc = 0.9799, net0_test_acc = 0.9476, net1_loss = 0.06370, net1_acc = 0.9906, net1_test_acc = 0.9660
Epoch: [ 46] [2300/4000] time: 26984.5432, dice0 = 0.04360, cross0 = 0.0443, kl0 = 0.0040, exclusion0 = 0.0357, dice1 = 0.02489, cross1 = 0.0237, kl1 = 0.0031, exclusion1 = 0.0272
1.2515373
Epoch: [ 46] [2350/4000] time: 26992.0055, net0_loss = 0.08797, net0_acc = 0.9893, net0_test_acc = 0.9259, net1_loss = 0.13184, net1_acc = 0.9761, net1_test_acc = 0.9780
Epoch: [ 46] [2350/4000] time: 26992.0056, dice0 = 0.03604, cross0 = 0.0293, kl0 = 0.0039, exclusion0 = 0.0414, dice1 = 0.04965, cross1 = 0.0589, kl1 = 0.0076, exclusion1 = 0.0389
1.1286895
Epoch: [ 46] [2400/4000] time: 26999.4074, net0_loss = 0.08386, net0_acc = 0.9870, net0_test_acc = 0.9758, net1_loss = 0.09977, net1_acc = 0.9832, net1_test_acc = 0.9573
Epoch: [ 46] [2400/4000] time: 26999.4074, dice0 = 0.03356, cross0 = 0.0322, kl0 = 0.0032, exclusion0 = 0.0331, dice1 = 0.03855, cross1 = 0.0450, kl1 = 0.0027, exclusion1 = 0.0297
1.2192123
Epoch: [ 46] [2450/4000] time: 27006.8207, net0_loss = 0.27711, net0_acc = 0.9593, net0_test_acc = 0.7392, net1_loss = 0.12798, net1_acc = 0.9793, net1_test_acc = 0.9186
Epoch: [ 46] [2450/4000] time: 27006.8208, dice0 = 0.09394, cross0 = 0.1337, kl0 = 0.0139, exclusion0 = 0.0850, dice1 = 0.04845, cross1 = 0.0583, kl1 = 0.0036, exclusion1 = 0.0389
1.1693989
Epoch: [ 46] [2500/4000] time: 27014.2348, net0_loss = 0.31579, net0_acc = 0.9472, net0_test_acc = 0.9517, net1_loss = 0.22671, net1_acc = 0.9680, net1_test_acc = 0.9541
Epoch: [ 46] [2500/4000] time: 27014.2349, dice0 = 0.10968, cross0 = 0.1528, kl0 = 0.0182, exclusion0 = 0.0885, dice1 = 0.07409, cross1 = 0.1007, kl1 = 0.0232, exclusion1 = 0.0807
1.1988649
Epoch: [ 46] [2550/4000] time: 27021.6408, net0_loss = 0.20643, net0_acc = 0.9658, net0_test_acc = 0.9340, net1_loss = 0.10588, net1_acc = 0.9850, net1_test_acc = 0.9455
Epoch: [ 46] [2550/4000] time: 27021.6409, dice0 = 0.07152, cross0 = 0.0965, kl0 = 0.0140, exclusion0 = 0.0629, dice1 = 0.04286, cross1 = 0.0385, kl1 = 0.0035, exclusion1 = 0.0455
1.2623215
Epoch: [ 46] [2600/4000] time: 27029.0272, net0_loss = 0.12025, net0_acc = 0.9781, net0_test_acc = 0.9518, net1_loss = 0.07648, net1_acc = 0.9876, net1_test_acc = 0.9257
Epoch: [ 46] [2600/4000] time: 27029.0272, dice0 = 0.04893, cross0 = 0.0517, kl0 = 0.0022, exclusion0 = 0.0370, dice1 = 0.02875, cross1 = 0.0358, kl1 = 0.0017, exclusion1 = 0.0221
1.1780365
Epoch: [ 46] [2650/4000] time: 27036.3986, net0_loss = 0.08456, net0_acc = 0.9878, net0_test_acc = 0.8121, net1_loss = 0.08364, net1_acc = 0.9884, net1_test_acc = 0.9277
Epoch: [ 46] [2650/4000] time: 27036.3986, dice0 = 0.03388, cross0 = 0.0296, kl0 = 0.0035, exclusion0 = 0.0386, dice1 = 0.03448, cross1 = 0.0279, kl1 = 0.0035, exclusion1 = 0.0390
1.1194575
Epoch: [ 46] [2700/4000] time: 27043.8658, net0_loss = 0.12387, net0_acc = 0.9800, net0_test_acc = 0.8913, net1_loss = 0.20308, net1_acc = 0.9671, net1_test_acc = 0.9132
Epoch: [ 46] [2700/4000] time: 27043.8659, dice0 = 0.04885, cross0 = 0.0492, kl0 = 0.0054, exclusion0 = 0.0463, dice1 = 0.07615, cross1 = 0.0861, kl1 = 0.0102, exclusion1 = 0.0714
1.1949239
Epoch: [ 46] [2750/4000] time: 27051.2683, net0_loss = 0.19292, net0_acc = 0.9651, net0_test_acc = 0.9559, net1_loss = 0.18704, net1_acc = 0.9666, net1_test_acc = 0.9376
Epoch: [ 46] [2750/4000] time: 27051.2683, dice0 = 0.07165, cross0 = 0.0998, kl0 = 0.0027, exclusion0 = 0.0403, dice1 = 0.07201, cross1 = 0.0859, kl1 = 0.0042, exclusion1 = 0.0541
1.1654601
Epoch: [ 46] [2800/4000] time: 27058.6927, net0_loss = 0.24407, net0_acc = 0.9612, net0_test_acc = 0.8182, net1_loss = 0.16996, net1_acc = 0.9709, net1_test_acc = 0.9288
Epoch: [ 46] [2800/4000] time: 27058.6928, dice0 = 0.08345, cross0 = 0.1054, kl0 = 0.0247, exclusion0 = 0.0857, dice1 = 0.06148, cross1 = 0.0859, kl1 = 0.0063, exclusion1 = 0.0388
1.1684781
Epoch: [ 46] [2850/4000] time: 27066.1019, net0_loss = 0.11318, net0_acc = 0.9825, net0_test_acc = 0.9647, net1_loss = 0.28378, net1_acc = 0.9496, net1_test_acc = 0.9592
Epoch: [ 46] [2850/4000] time: 27066.1020, dice0 = 0.04267, cross0 = 0.0436, kl0 = 0.0063, exclusion0 = 0.0474, dice1 = 0.10176, cross1 = 0.1502, kl1 = 0.0041, exclusion1 = 0.0596
1.2067538
Epoch: [ 46] [2900/4000] time: 27073.5005, net0_loss = 0.34223, net0_acc = 0.9454, net0_test_acc = 0.9527, net1_loss = 0.09553, net1_acc = 0.9853, net1_test_acc = 0.9901
Epoch: [ 46] [2900/4000] time: 27073.5007, dice0 = 0.11262, cross0 = 0.1693, kl0 = 0.0229, exclusion0 = 0.0977, dice1 = 0.03917, cross1 = 0.0322, kl1 = 0.0042, exclusion1 = 0.0441
1.1806517
Epoch: [ 46] [2950/4000] time: 27080.9142, net0_loss = 0.23483, net0_acc = 0.9602, net0_test_acc = 0.9614, net1_loss = 0.28548, net1_acc = 0.9537, net1_test_acc = 0.9055
Epoch: [ 46] [2950/4000] time: 27080.9142, dice0 = 0.08680, cross0 = 0.1116, kl0 = 0.0074, exclusion0 = 0.0656, dice1 = 0.10023, cross1 = 0.1181, kl1 = 0.0263, exclusion1 = 0.1081
1.1457752
Epoch: [ 46] [3000/4000] time: 27088.2585, net0_loss = 0.22067, net0_acc = 0.9657, net0_test_acc = 0.8551, net1_loss = 0.25325, net1_acc = 0.9590, net1_test_acc = 0.9038
Epoch: [ 46] [3000/4000] time: 27088.2586, dice0 = 0.07863, cross0 = 0.0993, kl0 = 0.0125, exclusion0 = 0.0729, dice1 = 0.08717, cross1 = 0.1188, kl1 = 0.0178, exclusion1 = 0.0767
1.1832517
Epoch: [ 46] [3050/4000] time: 27095.7316, net0_loss = 0.18701, net0_acc = 0.9687, net0_test_acc = 0.8293, net1_loss = 0.25337, net1_acc = 0.9659, net1_test_acc = 0.9728
Epoch: [ 46] [3050/4000] time: 27095.7317, dice0 = 0.07231, cross0 = 0.0752, kl0 = 0.0083, exclusion0 = 0.0707, dice1 = 0.07599, cross1 = 0.1377, kl1 = 0.0149, exclusion1 = 0.0645
1.3603423
Epoch: [ 46] [3100/4000] time: 27103.1736, net0_loss = 0.18544, net0_acc = 0.9666, net0_test_acc = 0.9826, net1_loss = 0.24205, net1_acc = 0.9617, net1_test_acc = 0.8689
Epoch: [ 46] [3100/4000] time: 27103.1737, dice0 = 0.07239, cross0 = 0.0827, kl0 = 0.0072, exclusion0 = 0.0534, dice1 = 0.09176, cross1 = 0.0960, kl1 = 0.0112, exclusion1 = 0.0975
1.2166705
Epoch: [ 46] [3150/4000] time: 27110.5550, net0_loss = 0.12235, net0_acc = 0.9795, net0_test_acc = 0.9530, net1_loss = 0.05628, net1_acc = 0.9917, net1_test_acc = 0.9685
Epoch: [ 46] [3150/4000] time: 27110.5551, dice0 = 0.04584, cross0 = 0.0517, kl0 = 0.0063, exclusion0 = 0.0434, dice1 = 0.02120, cross1 = 0.0228, kl1 = 0.0030, exclusion1 = 0.0214
1.2167058
Epoch: [ 46] [3200/4000] time: 27117.9795, net0_loss = 0.04353, net0_acc = 0.9935, net0_test_acc = 0.8959, net1_loss = 0.05957, net1_acc = 0.9925, net1_test_acc = 0.9231
Epoch: [ 46] [3200/4000] time: 27117.9796, dice0 = 0.01755, cross0 = 0.0160, kl0 = 0.0012, exclusion0 = 0.0189, dice1 = 0.02452, cross1 = 0.0191, kl1 = 0.0025, exclusion1 = 0.0294
1.2121308
Epoch: [ 46] [3250/4000] time: 27125.2752, net0_loss = 0.09720, net0_acc = 0.9853, net0_test_acc = 0.9528, net1_loss = 0.10951, net1_acc = 0.9815, net1_test_acc = 0.8965
Epoch: [ 46] [3250/4000] time: 27125.2753, dice0 = 0.03935, cross0 = 0.0347, kl0 = 0.0030, exclusion0 = 0.0432, dice1 = 0.04160, cross1 = 0.0477, kl1 = 0.0062, exclusion1 = 0.0342
1.2479694
Epoch: [ 46] [3300/4000] time: 27132.7635, net0_loss = 0.21870, net0_acc = 0.9639, net0_test_acc = 0.9650, net1_loss = 0.08424, net1_acc = 0.9865, net1_test_acc = 0.9533
Epoch: [ 46] [3300/4000] time: 27132.7635, dice0 = 0.08492, cross0 = 0.0904, kl0 = 0.0075, exclusion0 = 0.0791, dice1 = 0.03468, cross1 = 0.0314, kl1 = 0.0020, exclusion1 = 0.0344
1.2131833
Epoch: [ 46] [3350/4000] time: 27140.1837, net0_loss = 0.15775, net0_acc = 0.9729, net0_test_acc = 0.9357, net1_loss = 0.18121, net1_acc = 0.9728, net1_test_acc = 0.9434
Epoch: [ 46] [3350/4000] time: 27140.1838, dice0 = 0.06028, cross0 = 0.0735, kl0 = 0.0033, exclusion0 = 0.0447, dice1 = 0.06076, cross1 = 0.0970, kl1 = 0.0049, exclusion1 = 0.0419
1.3842304
Epoch: [ 46] [3400/4000] time: 27147.5897, net0_loss = 0.06579, net0_acc = 0.9915, net0_test_acc = 0.9413, net1_loss = 0.18098, net1_acc = 0.9682, net1_test_acc = 0.7773
Epoch: [ 46] [3400/4000] time: 27147.5898, dice0 = 0.02540, cross0 = 0.0225, kl0 = 0.0048, exclusion0 = 0.0309, dice1 = 0.06453, cross1 = 0.0933, kl1 = 0.0056, exclusion1 = 0.0406
1.2138708
Epoch: [ 46] [3450/4000] time: 27155.0071, net0_loss = 0.15226, net0_acc = 0.9755, net0_test_acc = 0.8714, net1_loss = 0.18447, net1_acc = 0.9697, net1_test_acc = 0.8975
Epoch: [ 46] [3450/4000] time: 27155.0071, dice0 = 0.05529, cross0 = 0.0753, kl0 = 0.0028, exclusion0 = 0.0405, dice1 = 0.07172, cross1 = 0.0779, kl1 = 0.0053, exclusion1 = 0.0643
1.1948884
Epoch: [ 46] [3500/4000] time: 27162.3485, net0_loss = 0.04852, net0_acc = 0.9938, net0_test_acc = 0.9171, net1_loss = 0.08763, net1_acc = 0.9856, net1_test_acc = 0.8264
Epoch: [ 46] [3500/4000] time: 27162.3486, dice0 = 0.01979, cross0 = 0.0154, kl0 = 0.0016, exclusion0 = 0.0251, dice1 = 0.03400, cross1 = 0.0400, kl1 = 0.0026, exclusion1 = 0.0246
1.3641603
Epoch: [ 46] [3550/4000] time: 27169.7830, net0_loss = 0.33596, net0_acc = 0.9429, net0_test_acc = 0.9414, net1_loss = 0.07247, net1_acc = 0.9900, net1_test_acc = 0.9374
Epoch: [ 46] [3550/4000] time: 27169.7831, dice0 = 0.11555, cross0 = 0.1661, kl0 = 0.0185, exclusion0 = 0.0902, dice1 = 0.02904, cross1 = 0.0276, kl1 = 0.0021, exclusion1 = 0.0296
1.1897398
Epoch: [ 46] [3600/4000] time: 27177.3007, net0_loss = 0.09670, net0_acc = 0.9834, net0_test_acc = 0.9075, net1_loss = 0.12360, net1_acc = 0.9817, net1_test_acc = 0.9415
Epoch: [ 46] [3600/4000] time: 27177.3007, dice0 = 0.03761, cross0 = 0.0436, kl0 = 0.0021, exclusion0 = 0.0288, dice1 = 0.04733, cross1 = 0.0437, kl1 = 0.0091, exclusion1 = 0.0560
1.1990465
Epoch: [ 46] [3650/4000] time: 27184.7204, net0_loss = 0.23013, net0_acc = 0.9602, net0_test_acc = 0.9718, net1_loss = 0.12240, net1_acc = 0.9818, net1_test_acc = 0.9367
Epoch: [ 46] [3650/4000] time: 27184.7204, dice0 = 0.08504, cross0 = 0.1143, kl0 = 0.0055, exclusion0 = 0.0560, dice1 = 0.04554, cross1 = 0.0471, kl1 = 0.0077, exclusion1 = 0.0517
1.227709
Epoch: [ 46] [3700/4000] time: 27192.1664, net0_loss = 0.29616, net0_acc = 0.9506, net0_test_acc = 0.9594, net1_loss = 0.18407, net1_acc = 0.9674, net1_test_acc = 0.8696
Epoch: [ 46] [3700/4000] time: 27192.1666, dice0 = 0.10629, cross0 = 0.1364, kl0 = 0.0145, exclusion0 = 0.0925, dice1 = 0.06773, cross1 = 0.0932, kl1 = 0.0037, exclusion1 = 0.0426
1.2516447
Epoch: [ 46] [3750/4000] time: 27199.5319, net0_loss = 0.09822, net0_acc = 0.9845, net0_test_acc = 0.9479, net1_loss = 0.26057, net1_acc = 0.9542, net1_test_acc = 0.9826
Epoch: [ 46] [3750/4000] time: 27199.5320, dice0 = 0.04027, cross0 = 0.0361, kl0 = 0.0024, exclusion0 = 0.0413, dice1 = 0.09430, cross1 = 0.1053, kl1 = 0.0233, exclusion1 = 0.0987
1.2356558
Epoch: [ 46] [3800/4000] time: 27207.0061, net0_loss = 0.05483, net0_acc = 0.9925, net0_test_acc = 0.8709, net1_loss = 0.10502, net1_acc = 0.9849, net1_test_acc = 0.8179
Epoch: [ 46] [3800/4000] time: 27207.0062, dice0 = 0.02166, cross0 = 0.0179, kl0 = 0.0033, exclusion0 = 0.0273, dice1 = 0.03847, cross1 = 0.0477, kl1 = 0.0031, exclusion1 = 0.0346
1.225934
Epoch: [ 46] [3850/4000] time: 27214.4140, net0_loss = 0.04785, net0_acc = 0.9935, net0_test_acc = 0.9363, net1_loss = 0.44683, net1_acc = 0.9164, net1_test_acc = 0.8995
Epoch: [ 46] [3850/4000] time: 27214.4141, dice0 = 0.01915, cross0 = 0.0162, kl0 = 0.0022, exclusion0 = 0.0229, dice1 = 0.15844, cross1 = 0.2311, kl1 = 0.0145, exclusion1 = 0.1001
1.1724534
Epoch: [ 46] [3900/4000] time: 27221.7601, net0_loss = 0.12082, net0_acc = 0.9793, net0_test_acc = 0.9420, net1_loss = 0.10748, net1_acc = 0.9829, net1_test_acc = 0.9550
Epoch: [ 46] [3900/4000] time: 27221.7601, dice0 = 0.04568, cross0 = 0.0568, kl0 = 0.0037, exclusion0 = 0.0330, dice1 = 0.04053, cross1 = 0.0483, kl1 = 0.0038, exclusion1 = 0.0335
1.2011719
Epoch: [ 46] [3950/4000] time: 27229.1715, net0_loss = 0.15427, net0_acc = 0.9718, net0_test_acc = 0.9332, net1_loss = 0.08337, net1_acc = 0.9877, net1_test_acc = 0.9899
Epoch: [ 46] [3950/4000] time: 27229.1715, dice0 = 0.05944, cross0 = 0.0744, kl0 = 0.0027, exclusion0 = 0.0382, dice1 = 0.03056, cross1 = 0.0346, kl1 = 0.0057, exclusion1 = 0.0308
1.2230648
Epoch: [ 47] [ 0/4000] time: 27236.6205, net0_loss = 0.15683, net0_acc = 0.9727, net0_test_acc = 0.9613, net1_loss = 0.13428, net1_acc = 0.9792, net1_test_acc = 0.7974
Epoch: [ 47] [ 0/4000] time: 27236.6206, dice0 = 0.05995, cross0 = 0.0683, kl0 = 0.0066, exclusion0 = 0.0506, dice1 = 0.05009, cross1 = 0.0524, kl1 = 0.0090, exclusion1 = 0.0546
1.2059556
Epoch: [ 47] [ 50/4000] time: 27244.0577, net0_loss = 0.14224, net0_acc = 0.9769, net0_test_acc = 0.8794, net1_loss = 0.06253, net1_acc = 0.9907, net1_test_acc = 0.9855
Epoch: [ 47] [ 50/4000] time: 27244.0578, dice0 = 0.05321, cross0 = 0.0595, kl0 = 0.0069, exclusion0 = 0.0522, dice1 = 0.02466, cross1 = 0.0236, kl1 = 0.0025, exclusion1 = 0.0260
1.2482249
Epoch: [ 47] [100/4000] time: 27251.4614, net0_loss = 0.10985, net0_acc = 0.9828, net0_test_acc = 0.9686, net1_loss = 0.15551, net1_acc = 0.9738, net1_test_acc = 0.9186
Epoch: [ 47] [100/4000] time: 27251.4615, dice0 = 0.03739, cross0 = 0.0591, kl0 = 0.0026, exclusion0 = 0.0241, dice1 = 0.05995, cross1 = 0.0626, kl1 = 0.0083, exclusion1 = 0.0577
1.1736227
Epoch: [ 47] [150/4000] time: 27258.8467, net0_loss = 0.06446, net0_acc = 0.9913, net0_test_acc = 0.8793, net1_loss = 0.25945, net1_acc = 0.9594, net1_test_acc = 0.9042
Epoch: [ 47] [150/4000] time: 27258.8468, dice0 = 0.02607, cross0 = 0.0226, kl0 = 0.0024, exclusion0 = 0.0293, dice1 = 0.09043, cross1 = 0.1013, kl1 = 0.0253, exclusion1 = 0.1103
1.2420316
Epoch: [ 47] [200/4000] time: 27266.2329, net0_loss = 0.18029, net0_acc = 0.9683, net0_test_acc = 0.8965, net1_loss = 0.27455, net1_acc = 0.9584, net1_test_acc = 0.8190
Epoch: [ 47] [200/4000] time: 27266.2330, dice0 = 0.07147, cross0 = 0.0790, kl0 = 0.0049, exclusion0 = 0.0547, dice1 = 0.09343, cross1 = 0.1457, kl1 = 0.0049, exclusion1 = 0.0661
1.1532248
Epoch: [ 47] [250/4000] time: 27273.6585, net0_loss = 0.04667, net0_acc = 0.9952, net0_test_acc = 0.9080, net1_loss = 0.18428, net1_acc = 0.9680, net1_test_acc = 0.9280
Epoch: [ 47] [250/4000] time: 27273.6586, dice0 = 0.01933, cross0 = 0.0131, kl0 = 0.0014, exclusion0 = 0.0271, dice1 = 0.07185, cross1 = 0.0808, kl1 = 0.0055, exclusion1 = 0.0578
1.1429739
Epoch: [ 47] [300/4000] time: 27280.9437, net0_loss = 0.11880, net0_acc = 0.9815, net0_test_acc = 0.9203, net1_loss = 0.14356, net1_acc = 0.9769, net1_test_acc = 0.9222
Epoch: [ 47] [300/4000] time: 27280.9438, dice0 = 0.04589, cross0 = 0.0477, kl0 = 0.0040, exclusion0 = 0.0464, dice1 = 0.05570, cross1 = 0.0591, kl1 = 0.0057, exclusion1 = 0.0519
1.1081964
Epoch: [ 47] [350/4000] time: 27288.3128, net0_loss = 0.07044, net0_acc = 0.9898, net0_test_acc = 0.8971, net1_loss = 0.23413, net1_acc = 0.9684, net1_test_acc = 0.9066
Epoch: [ 47] [350/4000] time: 27288.3129, dice0 = 0.02728, cross0 = 0.0273, kl0 = 0.0044, exclusion0 = 0.0273, dice1 = 0.08547, cross1 = 0.0824, kl1 = 0.0220, exclusion1 = 0.1105
1.125517
Epoch: [ 47] [400/4000] time: 27295.8455, net0_loss = 0.30379, net0_acc = 0.9512, net0_test_acc = 0.9323, net1_loss = 0.05927, net1_acc = 0.9911, net1_test_acc = 0.9525
Epoch: [ 47] [400/4000] time: 27295.8456, dice0 = 0.10697, cross0 = 0.1278, kl0 = 0.0242, exclusion0 = 0.1138, dice1 = 0.02410, cross1 = 0.0219, kl1 = 0.0016, exclusion1 = 0.0249
1.2049209
Epoch: [ 47] [450/4000] time: 27303.2701, net0_loss = 0.11506, net0_acc = 0.9814, net0_test_acc = 0.9752, net1_loss = 0.36129, net1_acc = 0.9510, net1_test_acc = 0.9886
Epoch: [ 47] [450/4000] time: 27303.2702, dice0 = 0.04676, cross0 = 0.0441, kl0 = 0.0024, exclusion0 = 0.0459, dice1 = 0.10930, cross1 = 0.1967, kl1 = 0.0221, exclusion1 = 0.0884
1.1472999
Epoch: [ 47] [500/4000] time: 27310.6326, net0_loss = 0.09404, net0_acc = 0.9864, net0_test_acc = 0.9629, net1_loss = 0.24225, net1_acc = 0.9565, net1_test_acc = 0.9571
Epoch: [ 47] [500/4000] time: 27310.6327, dice0 = 0.03473, cross0 = 0.0343, kl0 = 0.0071, exclusion0 = 0.0429, dice1 = 0.09183, cross1 = 0.1090, kl1 = 0.0106, exclusion1 = 0.0722
1.13651
Epoch: [ 47] [550/4000] time: 27318.0585, net0_loss = 0.19273, net0_acc = 0.9697, net0_test_acc = 0.9742, net1_loss = 0.14215, net1_acc = 0.9776, net1_test_acc = 0.9180
Epoch: [ 47] [550/4000] time: 27318.0586, dice0 = 0.07170, cross0 = 0.0745, kl0 = 0.0143, exclusion0 = 0.0787, dice1 = 0.05320, cross1 = 0.0597, kl1 = 0.0064, exclusion1 = 0.0520
1.1265155
Epoch: [ 47] [600/4000] time: 27325.4358, net0_loss = 0.09501, net0_acc = 0.9850, net0_test_acc = 0.8834, net1_loss = 0.23460, net1_acc = 0.9672, net1_test_acc = 0.9848
Epoch: [ 47] [600/4000] time: 27325.4359, dice0 = 0.03820, cross0 = 0.0345, kl0 = 0.0042, exclusion0 = 0.0405, dice1 = 0.07918, cross1 = 0.0826, kl1 = 0.0287, exclusion1 = 0.1170
1.13293
Epoch: [ 47] [650/4000] time: 27332.7978, net0_loss = 0.27223, net0_acc = 0.9553, net0_test_acc = 0.9318, net1_loss = 0.08743, net1_acc = 0.9876, net1_test_acc = 0.9908
Epoch: [ 47] [650/4000] time: 27332.7979, dice0 = 0.09999, cross0 = 0.1152, kl0 = 0.0180, exclusion0 = 0.0961, dice1 = 0.03355, cross1 = 0.0347, kl1 = 0.0044, exclusion1 = 0.0340
1.1243415
Epoch: [ 47] [700/4000] time: 27340.3120, net0_loss = 0.13748, net0_acc = 0.9763, net0_test_acc = 0.9134, net1_loss = 0.27026, net1_acc = 0.9548, net1_test_acc = 0.9173
Epoch: [ 47] [700/4000] time: 27340.3121, dice0 = 0.05341, cross0 = 0.0621, kl0 = 0.0036, exclusion0 = 0.0403, dice1 = 0.09414, cross1 = 0.1321, kl1 = 0.0141, exclusion1 = 0.0739
1.0495896
Epoch: [ 47] [750/4000] time: 27347.7535, net0_loss = 0.03751, net0_acc = 0.9950, net0_test_acc = 0.9682, net1_loss = 0.26034, net1_acc = 0.9541, net1_test_acc = 0.9606
Epoch: [ 47] [750/4000] time: 27347.7537, dice0 = 0.01523, cross0 = 0.0122, kl0 = 0.0014, exclusion0 = 0.0188, dice1 = 0.09347, cross1 = 0.1366, kl1 = 0.0055, exclusion1 = 0.0551
1.1202687
Epoch: [ 47] [800/4000] time: 27355.1371, net0_loss = 0.26360, net0_acc = 0.9725, net0_test_acc = 0.7484, net1_loss = 0.13874, net1_acc = 0.9747, net1_test_acc = 0.8936
Epoch: [ 47] [800/4000] time: 27355.1372, dice0 = 0.06138, cross0 = 0.1788, kl0 = 0.0070, exclusion0 = 0.0398, dice1 = 0.05398, cross1 = 0.0631, kl1 = 0.0038, exclusion1 = 0.0394
1.1656692
Epoch: [ 47] [850/4000] time: 27362.5243, net0_loss = 0.13620, net0_acc = 0.9795, net0_test_acc = 0.8350, net1_loss = 0.23201, net1_acc = 0.9615, net1_test_acc = 0.8552
Epoch: [ 47] [850/4000] time: 27362.5243, dice0 = 0.05293, cross0 = 0.0533, kl0 = 0.0057, exclusion0 = 0.0543, dice1 = 0.08788, cross1 = 0.0967, kl1 = 0.0149, exclusion1 = 0.0801
1.0885984
Epoch: [ 47] [900/4000] time: 27369.8980, net0_loss = 0.04821, net0_acc = 0.9931, net0_test_acc = 0.9862, net1_loss = 0.16957, net1_acc = 0.9711, net1_test_acc = 0.9696
Epoch: [ 47] [900/4000] time: 27369.8980, dice0 = 0.01904, cross0 = 0.0174, kl0 = 0.0020, exclusion0 = 0.0216, dice1 = 0.06617, cross1 = 0.0711, kl1 = 0.0068, exclusion1 = 0.0577
1.224087
Epoch: [ 47] [950/4000] time: 27377.3335, net0_loss = 0.17859, net0_acc = 0.9706, net0_test_acc = 0.9384, net1_loss = 0.09087, net1_acc = 0.9866, net1_test_acc = 0.9350
Epoch: [ 47] [950/4000] time: 27377.3336, dice0 = 0.06616, cross0 = 0.0811, kl0 = 0.0073, exclusion0 = 0.0554, dice1 = 0.03489, cross1 = 0.0332, kl1 = 0.0078, exclusion1 = 0.0377
1.219226
Epoch: [ 47] [1000/4000] time: 27384.7271, net0_loss = 0.04054, net0_acc = 0.9941, net0_test_acc = 0.9539, net1_loss = 0.34493, net1_acc = 0.9489, net1_test_acc = 0.9627
Epoch: [ 47] [1000/4000] time: 27384.7272, dice0 = 0.01634, cross0 = 0.0154, kl0 = 0.0013, exclusion0 = 0.0164, dice1 = 0.10390, cross1 = 0.1997, kl1 = 0.0148, exclusion1 = 0.0679
1.2443969
Epoch: [ 47] [1050/4000] time: 27392.1237, net0_loss = 0.10394, net0_acc = 0.9830, net0_test_acc = 0.8857, net1_loss = 0.10494, net1_acc = 0.9842, net1_test_acc = 0.9754
Epoch: [ 47] [1050/4000] time: 27392.1238, dice0 = 0.04165, cross0 = 0.0404, kl0 = 0.0032, exclusion0 = 0.0406, dice1 = 0.03941, cross1 = 0.0420, kl1 = 0.0059, exclusion1 = 0.0411
1.0854949
Epoch: [ 47] [1100/4000] time: 27399.6119, net0_loss = 0.15186, net0_acc = 0.9746, net0_test_acc = 0.9526, net1_loss = 0.12354, net1_acc = 0.9796, net1_test_acc = 0.9337
Epoch: [ 47] [1100/4000] time: 27399.6119, dice0 = 0.05991, cross0 = 0.0610, kl0 = 0.0056, exclusion0 = 0.0562, dice1 = 0.04607, cross1 = 0.0552, kl1 = 0.0050, exclusion1 = 0.0395
1.1591822
Epoch: [ 47] [1150/4000] time: 27406.9995, net0_loss = 0.08261, net0_acc = 0.9865, net0_test_acc = 0.9420, net1_loss = 0.14042, net1_acc = 0.9764, net1_test_acc = 0.9429
Epoch: [ 47] [1150/4000] time: 27406.9996, dice0 = 0.03365, cross0 = 0.0321, kl0 = 0.0017, exclusion0 = 0.0320, dice1 = 0.05239, cross1 = 0.0661, kl1 = 0.0050, exclusion1 = 0.0389
1.1248249
Epoch: [ 47] [1200/4000] time: 27414.3738, net0_loss = 0.16088, net0_acc = 0.9741, net0_test_acc = 0.9729, net1_loss = 0.04849, net1_acc = 0.9928, net1_test_acc = 0.9153
Epoch: [ 47] [1200/4000] time: 27414.3739, dice0 = 0.06060, cross0 = 0.0709, kl0 = 0.0070, exclusion0 = 0.0517, dice1 = 0.01959, cross1 = 0.0171, kl1 = 0.0018, exclusion1 = 0.0219
1.125277
Epoch: [ 47] [1250/4000] time: 27421.7654, net0_loss = 0.08760, net0_acc = 0.9868, net0_test_acc = 0.7349, net1_loss = 0.15613, net1_acc = 0.9749, net1_test_acc = 0.9497
Epoch: [ 47] [1250/4000] time: 27421.7654, dice0 = 0.03351, cross0 = 0.0391, kl0 = 0.0039, exclusion0 = 0.0261, dice1 = 0.06357, cross1 = 0.0593, kl1 = 0.0051, exclusion1 = 0.0614
1.1628406
Epoch: [ 47] [1300/4000] time: 27429.1910, net0_loss = 0.24226, net0_acc = 0.9571, net0_test_acc = 0.8803, net1_loss = 0.14260, net1_acc = 0.9749, net1_test_acc = 0.8196
Epoch: [ 47] [1300/4000] time: 27429.1910, dice0 = 0.08907, cross0 = 0.1167, kl0 = 0.0101, exclusion0 = 0.0629, dice1 = 0.05720, cross1 = 0.0577, kl1 = 0.0053, exclusion1 = 0.0500
1.182122
Epoch: [ 47] [1350/4000] time: 27436.5580, net0_loss = 0.11095, net0_acc = 0.9820, net0_test_acc = 0.8808, net1_loss = 0.17547, net1_acc = 0.9702, net1_test_acc = 0.9673
Epoch: [ 47] [1350/4000] time: 27436.5581, dice0 = 0.04395, cross0 = 0.0451, kl0 = 0.0032, exclusion0 = 0.0406, dice1 = 0.06932, cross1 = 0.0724, kl1 = 0.0053, exclusion1 = 0.0621
1.2444474
Epoch: [ 47] [1400/4000] time: 27444.0315, net0_loss = 0.15194, net0_acc = 0.9753, net0_test_acc = 0.9201, net1_loss = 0.26948, net1_acc = 0.9653, net1_test_acc = 0.9782
Epoch: [ 47] [1400/4000] time: 27444.0315, dice0 = 0.05557, cross0 = 0.0696, kl0 = 0.0075, exclusion0 = 0.0460, dice1 = 0.07718, cross1 = 0.1384, kl1 = 0.0247, exclusion1 = 0.0831
1.2138172
Epoch: [ 47] [1450/4000] time: 27451.4742, net0_loss = 0.17698, net0_acc = 0.9723, net0_test_acc = 0.9136, net1_loss = 0.08037, net1_acc = 0.9874, net1_test_acc = 0.9217
Epoch: [ 47] [1450/4000] time: 27451.4743, dice0 = 0.06445, cross0 = 0.0856, kl0 = 0.0047, exclusion0 = 0.0493, dice1 = 0.03306, cross1 = 0.0285, kl1 = 0.0036, exclusion1 = 0.0341
1.1939161
Epoch: [ 47] [1500/4000] time: 27458.8653, net0_loss = 0.24863, net0_acc = 0.9600, net0_test_acc = 0.9568, net1_loss = 0.05378, net1_acc = 0.9932, net1_test_acc = 0.9238
Epoch: [ 47] [1500/4000] time: 27458.8654, dice0 = 0.08124, cross0 = 0.1329, kl0 = 0.0137, exclusion0 = 0.0554, dice1 = 0.02067, cross1 = 0.0156, kl1 = 0.0075, exclusion1 = 0.0275
1.2424183
Epoch: [ 47] [1550/4000] time: 27466.2876, net0_loss = 0.07587, net0_acc = 0.9879, net0_test_acc = 0.7554, net1_loss = 0.10564, net1_acc = 0.9837, net1_test_acc = 0.8246
Epoch: [ 47] [1550/4000] time: 27466.2876, dice0 = 0.02883, cross0 = 0.0346, kl0 = 0.0022, exclusion0 = 0.0227, dice1 = 0.04135, cross1 = 0.0409, kl1 = 0.0042, exclusion1 = 0.0427
1.1493942
Epoch: [ 47] [1600/4000] time: 27473.7145, net0_loss = 0.09201, net0_acc = 0.9857, net0_test_acc = 0.8132, net1_loss = 0.27540, net1_acc = 0.9507, net1_test_acc = 0.8155
Epoch: [ 47] [1600/4000] time: 27473.7146, dice0 = 0.03578, cross0 = 0.0382, kl0 = 0.0025, exclusion0 = 0.0335, dice1 = 0.10059, cross1 = 0.1418, kl1 = 0.0055, exclusion1 = 0.0605
1.1502774
Epoch: [ 47] [1650/4000] time: 27481.0229, net0_loss = 0.14637, net0_acc = 0.9786, net0_test_acc = 0.9759, net1_loss = 0.23473, net1_acc = 0.9655, net1_test_acc = 0.9463
Epoch: [ 47] [1650/4000] time: 27481.0229, dice0 = 0.05397, cross0 = 0.0632, kl0 = 0.0059, exclusion0 = 0.0524, dice1 = 0.09299, cross1 = 0.0866, kl1 = 0.0078, exclusion1 = 0.1025
1.1516496
Epoch: [ 47] [1700/4000] time: 27488.4614, net0_loss = 0.06684, net0_acc = 0.9916, net0_test_acc = 0.9899, net1_loss = 0.11592, net1_acc = 0.9804, net1_test_acc = 0.9524
Epoch: [ 47] [1700/4000] time: 27488.4615, dice0 = 0.02219, cross0 = 0.0331, kl0 = 0.0025, exclusion0 = 0.0207, dice1 = 0.04538, cross1 = 0.0444, kl1 = 0.0070, exclusion1 = 0.0452
1.2406864
Epoch: [ 47] [1750/4000] time: 27495.9340, net0_loss = 0.06526, net0_acc = 0.9903, net0_test_acc = 0.9402, net1_loss = 0.18490, net1_acc = 0.9723, net1_test_acc = 0.8854
Epoch: [ 47] [1750/4000] time: 27495.9342, dice0 = 0.02599, cross0 = 0.0236, kl0 = 0.0032, exclusion0 = 0.0281, dice1 = 0.06251, cross1 = 0.0691, kl1 = 0.0232, exclusion1 = 0.0833
1.1588407
Epoch: [ 47] [1800/4000] time: 27503.3356, net0_loss = 0.20612, net0_acc = 0.9664, net0_test_acc = 0.9804, net1_loss = 0.07135, net1_acc = 0.9919, net1_test_acc = 0.8962
Epoch: [ 47] [1800/4000] time: 27503.3357, dice0 = 0.07235, cross0 = 0.0940, kl0 = 0.0136, exclusion0 = 0.0660, dice1 = 0.02918, cross1 = 0.0211, kl1 = 0.0048, exclusion1 = 0.0374
1.2191103
Epoch: [ 47] [1850/4000] time: 27510.8254, net0_loss = 0.18331, net0_acc = 0.9678, net0_test_acc = 0.9324, net1_loss = 0.07106, net1_acc = 0.9890, net1_test_acc = 0.9663
Epoch: [ 47] [1850/4000] time: 27510.8255, dice0 = 0.07003, cross0 = 0.0809, kl0 = 0.0077, exclusion0 = 0.0571, dice1 = 0.02993, cross1 = 0.0253, kl1 = 0.0015, exclusion1 = 0.0302
1.1900749
Epoch: [ 47] [1900/4000] time: 27518.2328, net0_loss = 0.24790, net0_acc = 0.9572, net0_test_acc = 0.9373, net1_loss = 0.07134, net1_acc = 0.9903, net1_test_acc = 0.9799
Epoch: [ 47] [1900/4000] time: 27518.2329, dice0 = 0.08829, cross0 = 0.1167, kl0 = 0.0137, exclusion0 = 0.0720, dice1 = 0.02617, cross1 = 0.0293, kl1 = 0.0039, exclusion1 = 0.0278
1.2294533
Epoch: [ 47] [1950/4000] time: 27525.4977, net0_loss = 0.25549, net0_acc = 0.9593, net0_test_acc = 0.8657, net1_loss = 0.09596, net1_acc = 0.9848, net1_test_acc = 0.9496
Epoch: [ 47] [1950/4000] time: 27525.4978, dice0 = 0.09827, cross0 = 0.1051, kl0 = 0.0094, exclusion0 = 0.0948, dice1 = 0.03686, cross1 = 0.0401, kl1 = 0.0039, exclusion1 = 0.0341
1.2226682
Epoch: [ 47] [2000/4000] time: 27533.0705, net0_loss = 0.19176, net0_acc = 0.9703, net0_test_acc = 0.8944, net1_loss = 0.04205, net1_acc = 0.9951, net1_test_acc = 0.9627
Epoch: [ 47] [2000/4000] time: 27533.0706, dice0 = 0.06940, cross0 = 0.0765, kl0 = 0.0149, exclusion0 = 0.0768, dice1 = 0.01744, cross1 = 0.0128, kl1 = 0.0016, exclusion1 = 0.0219
1.1454413
Epoch: [ 47] [2050/4000] time: 27540.5027, net0_loss = 0.09220, net0_acc = 0.9859, net0_test_acc = 0.9629, net1_loss = 0.53141, net1_acc = 0.9155, net1_test_acc = 0.9477
Epoch: [ 47] [2050/4000] time: 27540.5028, dice0 = 0.03762, cross0 = 0.0356, kl0 = 0.0021, exclusion0 = 0.0358, dice1 = 0.16003, cross1 = 0.2960, kl1 = 0.0324, exclusion1 = 0.1183
1.2076924
Epoch: [ 47] [2100/4000] time: 27547.8723, net0_loss = 0.12982, net0_acc = 0.9796, net0_test_acc = 0.9122, net1_loss = 0.30450, net1_acc = 0.9460, net1_test_acc = 0.9705
Epoch: [ 47] [2100/4000] time: 27547.8724, dice0 = 0.05151, cross0 = 0.0504, kl0 = 0.0050, exclusion0 = 0.0508, dice1 = 0.10527, cross1 = 0.1681, kl1 = 0.0066, exclusion1 = 0.0556
1.1722021
Epoch: [ 47] [2150/4000] time: 27555.3284, net0_loss = 0.16676, net0_acc = 0.9725, net0_test_acc = 0.9795, net1_loss = 0.09159, net1_acc = 0.9860, net1_test_acc = 0.9534
Epoch: [ 47] [2150/4000] time: 27555.3285, dice0 = 0.06177, cross0 = 0.0749, kl0 = 0.0089, exclusion0 = 0.0513, dice1 = 0.03453, cross1 = 0.0355, kl1 = 0.0046, exclusion1 = 0.0385
1.202705
Epoch: [ 47] [2200/4000] time: 27562.6965, net0_loss = 0.13606, net0_acc = 0.9777, net0_test_acc = 0.7515, net1_loss = 0.11105, net1_acc = 0.9831, net1_test_acc = 0.9262
Epoch: [ 47] [2200/4000] time: 27562.6966, dice0 = 0.05306, cross0 = 0.0535, kl0 = 0.0060, exclusion0 = 0.0530, dice1 = 0.04382, cross1 = 0.0395, kl1 = 0.0061, exclusion1 = 0.0494
1.0844194
Epoch: [ 47] [2250/4000] time: 27570.1256, net0_loss = 0.10634, net0_acc = 0.9837, net0_test_acc = 0.9506, net1_loss = 0.13124, net1_acc = 0.9799, net1_test_acc = 0.9485
Epoch: [ 47] [2250/4000] time: 27570.1257, dice0 = 0.04289, cross0 = 0.0399, kl0 = 0.0038, exclusion0 = 0.0432, dice1 = 0.04927, cross1 = 0.0485, kl1 = 0.0097, exclusion1 = 0.0573
1.1641083
Epoch: [ 47] [2300/4000] time: 27577.5175, net0_loss = 0.57106, net0_acc = 0.9181, net0_test_acc = 0.9362, net1_loss = 0.20151, net1_acc = 0.9698, net1_test_acc = 0.9381
Epoch: [ 47] [2300/4000] time: 27577.5176, dice0 = 0.16747, cross0 = 0.3330, kl0 = 0.0181, exclusion0 = 0.1231, dice1 = 0.07599, cross1 = 0.0775, kl1 = 0.0176, exclusion1 = 0.0785
1.3113766
Epoch: [ 47] [2350/4000] time: 27584.9084, net0_loss = 0.40459, net0_acc = 0.9317, net0_test_acc = 0.9436, net1_loss = 0.18979, net1_acc = 0.9677, net1_test_acc = 0.9293
Epoch: [ 47] [2350/4000] time: 27584.9085, dice0 = 0.13395, cross0 = 0.2352, kl0 = 0.0066, exclusion0 = 0.0644, dice1 = 0.07472, cross1 = 0.0779, kl1 = 0.0065, exclusion1 = 0.0677
1.1435436
Epoch: [ 47] [2400/4000] time: 27592.2792, net0_loss = 0.10315, net0_acc = 0.9849, net0_test_acc = 0.8148, net1_loss = 0.06216, net1_acc = 0.9913, net1_test_acc = 0.9177
Epoch: [ 47] [2400/4000] time: 27592.2793, dice0 = 0.04245, cross0 = 0.0372, kl0 = 0.0030, exclusion0 = 0.0439, dice1 = 0.02431, cross1 = 0.0220, kl1 = 0.0033, exclusion1 = 0.0285
1.2112516
Epoch: [ 47] [2450/4000] time: 27599.7522, net0_loss = 0.09665, net0_acc = 0.9849, net0_test_acc = 0.8961, net1_loss = 0.19328, net1_acc = 0.9712, net1_test_acc = 0.9559
Epoch: [ 47] [2450/4000] time: 27599.7522, dice0 = 0.03799, cross0 = 0.0370, kl0 = 0.0035, exclusion0 = 0.0398, dice1 = 0.06728, cross1 = 0.0904, kl1 = 0.0098, exclusion1 = 0.0614
1.2413849
Epoch: [ 47] [2500/4000] time: 27607.0387, net0_loss = 0.21806, net0_acc = 0.9631, net0_test_acc = 0.9545, net1_loss = 0.14474, net1_acc = 0.9771, net1_test_acc = 0.9297
Epoch: [ 47] [2500/4000] time: 27607.0388, dice0 = 0.08068, cross0 = 0.0975, kl0 = 0.0102, exclusion0 = 0.0696, dice1 = 0.05525, cross1 = 0.0552, kl1 = 0.0103, exclusion1 = 0.0583
1.1553081
Epoch: [ 47] [2550/4000] time: 27614.5643, net0_loss = 0.15112, net0_acc = 0.9779, net0_test_acc = 0.8196, net1_loss = 0.23101, net1_acc = 0.9625, net1_test_acc = 0.9328
Epoch: [ 47] [2550/4000] time: 27614.5644, dice0 = 0.05255, cross0 = 0.0595, kl0 = 0.0160, exclusion0 = 0.0623, dice1 = 0.08077, cross1 = 0.1163, kl1 = 0.0078, exclusion1 = 0.0600
1.1739118
Epoch: [ 47] [2600/4000] time: 27622.0061, net0_loss = 0.15763, net0_acc = 0.9727, net0_test_acc = 0.9688, net1_loss = 0.22537, net1_acc = 0.9617, net1_test_acc = 0.9543
Epoch: [ 47] [2600/4000] time: 27622.0062, dice0 = 0.06116, cross0 = 0.0718, kl0 = 0.0042, exclusion0 = 0.0451, dice1 = 0.08446, cross1 = 0.0930, kl1 = 0.0137, exclusion1 = 0.0820
1.1226275
Epoch: [ 47] [2650/4000] time: 27629.4306, net0_loss = 0.10438, net0_acc = 0.9852, net0_test_acc = 0.9650, net1_loss = 0.15540, net1_acc = 0.9743, net1_test_acc = 0.9906
Epoch: [ 47] [2650/4000] time: 27629.4307, dice0 = 0.04040, cross0 = 0.0379, kl0 = 0.0063, exclusion0 = 0.0458, dice1 = 0.06089, cross1 = 0.0655, kl1 = 0.0047, exclusion1 = 0.0533
1.1612651
Epoch: [ 47] [2700/4000] time: 27636.8467, net0_loss = 0.08121, net0_acc = 0.9891, net0_test_acc = 0.9627, net1_loss = 0.06670, net1_acc = 0.9919, net1_test_acc = 0.9174
Epoch: [ 47] [2700/4000] time: 27636.8467, dice0 = 0.02819, cross0 = 0.0294, kl0 = 0.0088, exclusion0 = 0.0383, dice1 = 0.02613, cross1 = 0.0222, kl1 = 0.0039, exclusion1 = 0.0328
1.1936281
Epoch: [ 47] [2750/4000] time: 27644.2969, net0_loss = 0.43705, net0_acc = 0.9266, net0_test_acc = 0.8601, net1_loss = 0.36124, net1_acc = 0.9385, net1_test_acc = 0.9157
Epoch: [ 47] [2750/4000] time: 27644.2970, dice0 = 0.15533, cross0 = 0.1834, kl0 = 0.0406, exclusion0 = 0.1560, dice1 = 0.12591, cross1 = 0.1849, kl1 = 0.0128, exclusion1 = 0.0881
1.1553876
Epoch: [ 47] [2800/4000] time: 27651.6779, net0_loss = 0.21906, net0_acc = 0.9679, net0_test_acc = 0.8140, net1_loss = 0.04711, net1_acc = 0.9923, net1_test_acc = 0.9647
Epoch: [ 47] [2800/4000] time: 27651.6780, dice0 = 0.08265, cross0 = 0.0753, kl0 = 0.0173, exclusion0 = 0.1049, dice1 = 0.01913, cross1 = 0.0185, kl1 = 0.0020, exclusion1 = 0.0171
1.2100914
Epoch: [ 47] [2850/4000] time: 27659.0793, net0_loss = 0.07854, net0_acc = 0.9880, net0_test_acc = 0.9801, net1_loss = 0.22861, net1_acc = 0.9592, net1_test_acc = 0.9102
Epoch: [ 47] [2850/4000] time: 27659.0794, dice0 = 0.03173, cross0 = 0.0311, kl0 = 0.0020, exclusion0 = 0.0294, dice1 = 0.08524, cross1 = 0.1081, kl1 = 0.0077, exclusion1 = 0.0628
1.184709
Epoch: [ 47] [2900/4000] time: 27666.4884, net0_loss = 0.19881, net0_acc = 0.9678, net0_test_acc = 0.9571, net1_loss = 0.18509, net1_acc = 0.9718, net1_test_acc = 0.9687
Epoch: [ 47] [2900/4000] time: 27666.4885, dice0 = 0.07026, cross0 = 0.0903, kl0 = 0.0120, exclusion0 = 0.0646, dice1 = 0.07181, cross1 = 0.0792, kl1 = 0.0078, exclusion1 = 0.0604
1.1070634
Epoch: [ 47] [2950/4000] time: 27673.9076, net0_loss = 0.24137, net0_acc = 0.9623, net0_test_acc = 0.9038, net1_loss = 0.32365, net1_acc = 0.9465, net1_test_acc = 0.9171
Epoch: [ 47] [2950/4000] time: 27673.9077, dice0 = 0.08005, cross0 = 0.1284, kl0 = 0.0106, exclusion0 = 0.0552, dice1 = 0.11108, cross1 = 0.1753, kl1 = 0.0059, exclusion1 = 0.0687
1.1868131
Epoch: [ 47] [3000/4000] time: 27681.2690, net0_loss = 0.18359, net0_acc = 0.9738, net0_test_acc = 0.9537, net1_loss = 0.14641, net1_acc = 0.9780, net1_test_acc = 0.8977
Epoch: [ 47] [3000/4000] time: 27681.2690, dice0 = 0.06404, cross0 = 0.0725, kl0 = 0.0192, exclusion0 = 0.0748, dice1 = 0.05551, cross1 = 0.0499, kl1 = 0.0117, exclusion1 = 0.0702
1.1837051
Epoch: [ 47] [3050/4000] time: 27688.7025, net0_loss = 0.33150, net0_acc = 0.9457, net0_test_acc = 0.9601, net1_loss = 0.21488, net1_acc = 0.9686, net1_test_acc = 0.9545
Epoch: [ 47] [3050/4000] time: 27688.7025, dice0 = 0.11170, cross0 = 0.1581, kl0 = 0.0204, exclusion0 = 0.1029, dice1 = 0.07554, cross1 = 0.0802, kl1 = 0.0247, exclusion1 = 0.0935
1.1689639
Epoch: [ 47] [3100/4000] time: 27696.1419, net0_loss = 0.15724, net0_acc = 0.9729, net0_test_acc = 0.9039, net1_loss = 0.21840, net1_acc = 0.9634, net1_test_acc = 0.9522
Epoch: [ 47] [3100/4000] time: 27696.1419, dice0 = 0.06151, cross0 = 0.0644, kl0 = 0.0071, exclusion0 = 0.0556, dice1 = 0.08245, cross1 = 0.0964, kl1 = 0.0071, exclusion1 = 0.0719
1.1644031
Epoch: [ 47] [3150/4000] time: 27703.5993, net0_loss = 0.13919, net0_acc = 0.9816, net0_test_acc = 0.9399, net1_loss = 0.11431, net1_acc = 0.9816, net1_test_acc = 0.7868
Epoch: [ 47] [3150/4000] time: 27703.5993, dice0 = 0.04713, cross0 = 0.0548, kl0 = 0.0155, exclusion0 = 0.0591, dice1 = 0.04293, cross1 = 0.0473, kl1 = 0.0062, exclusion1 = 0.0419
1.1708578
Epoch: [ 47] [3200/4000] time: 27711.0192, net0_loss = 0.17419, net0_acc = 0.9738, net0_test_acc = 0.8717, net1_loss = 0.18478, net1_acc = 0.9689, net1_test_acc = 0.9175
Epoch: [ 47] [3200/4000] time: 27711.0192, dice0 = 0.06629, cross0 = 0.0648, kl0 = 0.0094, exclusion0 = 0.0767, dice1 = 0.06856, cross1 = 0.0839, kl1 = 0.0087, exclusion1 = 0.0560
1.1662235
Epoch: [ 47] [3250/4000] time: 27718.3390, net0_loss = 0.23785, net0_acc = 0.9650, net0_test_acc = 0.9142, net1_loss = 0.08663, net1_acc = 0.9866, net1_test_acc = 0.7831
Epoch: [ 47] [3250/4000] time: 27718.3391, dice0 = 0.08674, cross0 = 0.0964, kl0 = 0.0176, exclusion0 = 0.0917, dice1 = 0.03506, cross1 = 0.0314, kl1 = 0.0028, exclusion1 = 0.0376
1.2376956
Epoch: [ 47] [3300/4000] time: 27725.8458, net0_loss = 0.27888, net0_acc = 0.9534, net0_test_acc = 0.9292, net1_loss = 0.15034, net1_acc = 0.9771, net1_test_acc = 0.9302
Epoch: [ 47] [3300/4000] time: 27725.8459, dice0 = 0.10366, cross0 = 0.1213, kl0 = 0.0141, exclusion0 = 0.0937, dice1 = 0.05539, cross1 = 0.0584, kl1 = 0.0132, exclusion1 = 0.0598
1.3249705
Epoch: [ 47] [3350/4000] time: 27733.2450, net0_loss = 0.19880, net0_acc = 0.9679, net0_test_acc = 0.9215, net1_loss = 0.20293, net1_acc = 0.9664, net1_test_acc = 0.9435
Epoch: [ 47] [3350/4000] time: 27733.2451, dice0 = 0.06638, cross0 = 0.1094, kl0 = 0.0048, exclusion0 = 0.0413, dice1 = 0.07951, cross1 = 0.0816, kl1 = 0.0081, exclusion1 = 0.0756
1.1935145
Epoch: [ 47] [3400/4000] time: 27740.7107, net0_loss = 0.17490, net0_acc = 0.9701, net0_test_acc = 0.9714, net1_loss = 0.24025, net1_acc = 0.9667, net1_test_acc = 0.9315
Epoch: [ 47] [3400/4000] time: 27740.7108, dice0 = 0.06610, cross0 = 0.0818, kl0 = 0.0047, exclusion0 = 0.0492, dice1 = 0.07147, cross1 = 0.1421, kl1 = 0.0078, exclusion1 = 0.0455
1.2230473
Epoch: [ 47] [3450/4000] time: 27748.1694, net0_loss = 0.21254, net0_acc = 0.9682, net0_test_acc = 0.9450, net1_loss = 0.28719, net1_acc = 0.9535, net1_test_acc = 0.8771
Epoch: [ 47] [3450/4000] time: 27748.1695, dice0 = 0.07310, cross0 = 0.1097, kl0 = 0.0050, exclusion0 = 0.0545, dice1 = 0.09797, cross1 = 0.1470, kl1 = 0.0126, exclusion1 = 0.0718
1.276155
Epoch: [ 47] [3500/4000] time: 27755.5967, net0_loss = 0.17399, net0_acc = 0.9720, net0_test_acc = 0.9527, net1_loss = 0.19313, net1_acc = 0.9659, net1_test_acc = 0.9829
Epoch: [ 47] [3500/4000] time: 27755.5968, dice0 = 0.06422, cross0 = 0.0738, kl0 = 0.0099, exclusion0 = 0.0621, dice1 = 0.07392, cross1 = 0.0916, kl1 = 0.0051, exclusion1 = 0.0501
1.2108332
Epoch: [ 47] [3550/4000] time: 27762.9707, net0_loss = 0.07974, net0_acc = 0.9880, net0_test_acc = 0.8780, net1_loss = 0.06501, net1_acc = 0.9920, net1_test_acc = 0.8548
Epoch: [ 47] [3550/4000] time: 27762.9708, dice0 = 0.03061, cross0 = 0.0294, kl0 = 0.0045, exclusion0 = 0.0349, dice1 = 0.02529, cross1 = 0.0214, kl1 = 0.0050, exclusion1 = 0.0316
1.2885197
Epoch: [ 47] [3600/4000] time: 27770.3936, net0_loss = 0.20857, net0_acc = 0.9659, net0_test_acc = 0.9280, net1_loss = 0.09443, net1_acc = 0.9869, net1_test_acc = 0.8977
Epoch: [ 47] [3600/4000] time: 27770.3937, dice0 = 0.07236, cross0 = 0.0925, kl0 = 0.0183, exclusion0 = 0.0691, dice1 = 0.03714, cross1 = 0.0332, kl1 = 0.0063, exclusion1 = 0.0419
1.2402242
Epoch: [ 47] [3650/4000] time: 27777.7453, net0_loss = 0.06866, net0_acc = 0.9902, net0_test_acc = 0.9526, net1_loss = 0.06915, net1_acc = 0.9909, net1_test_acc = 0.9364
Epoch: [ 47] [3650/4000] time: 27777.7454, dice0 = 0.02762, cross0 = 0.0227, kl0 = 0.0048, exclusion0 = 0.0318, dice1 = 0.02753, cross1 = 0.0238, kl1 = 0.0043, exclusion1 = 0.0313
1.2397991
Epoch: [ 47] [3700/4000] time: 27785.1123, net0_loss = 0.08141, net0_acc = 0.9867, net0_test_acc = 0.9384, net1_loss = 0.30981, net1_acc = 0.9520, net1_test_acc = 0.9907
Epoch: [ 47] [3700/4000] time: 27785.1124, dice0 = 0.02923, cross0 = 0.0396, kl0 = 0.0031, exclusion0 = 0.0220, dice1 = 0.11209, cross1 = 0.1381, kl1 = 0.0144, exclusion1 = 0.1049
1.232999
Epoch: [ 47] [3750/4000] time: 27792.5749, net0_loss = 0.18822, net0_acc = 0.9680, net0_test_acc = 0.9632, net1_loss = 0.24247, net1_acc = 0.9601, net1_test_acc = 0.7921
Epoch: [ 47] [3750/4000] time: 27792.5750, dice0 = 0.07113, cross0 = 0.0880, kl0 = 0.0062, exclusion0 = 0.0521, dice1 = 0.08581, cross1 = 0.1067, kl1 = 0.0201, exclusion1 = 0.0798
1.2206905
Epoch: [ 47] [3800/4000] time: 27799.9853, net0_loss = 0.19696, net0_acc = 0.9657, net0_test_acc = 0.8780, net1_loss = 0.06346, net1_acc = 0.9896, net1_test_acc = 0.9838
Epoch: [ 47] [3800/4000] time: 27799.9854, dice0 = 0.07142, cross0 = 0.1007, kl0 = 0.0054, exclusion0 = 0.0441, dice1 = 0.02501, cross1 = 0.0249, kl1 = 0.0025, exclusion1 = 0.0245
1.1750653
Epoch: [ 47] [3850/4000] time: 27807.3793, net0_loss = 0.08276, net0_acc = 0.9859, net0_test_acc = 0.9621, net1_loss = 0.17367, net1_acc = 0.9730, net1_test_acc = 0.9202
Epoch: [ 47] [3850/4000] time: 27807.3793, dice0 = 0.03188, cross0 = 0.0395, kl0 = 0.0014, exclusion0 = 0.0212, dice1 = 0.06801, cross1 = 0.0667, kl1 = 0.0071, exclusion1 = 0.0708
1.129413
Epoch: [ 47] [3900/4000] time: 27814.8065, net0_loss = 0.18245, net0_acc = 0.9733, net0_test_acc = 0.8490, net1_loss = 0.11757, net1_acc = 0.9830, net1_test_acc = 0.9030
Epoch: [ 47] [3900/4000] time: 27814.8066, dice0 = 0.06255, cross0 = 0.0724, kl0 = 0.0169, exclusion0 = 0.0780, dice1 = 0.04653, cross1 = 0.0442, kl1 = 0.0051, exclusion1 = 0.0486
1.1873949
Epoch: [ 47] [3950/4000] time: 27822.2290, net0_loss = 0.21071, net0_acc = 0.9634, net0_test_acc = 0.8999, net1_loss = 0.17648, net1_acc = 0.9714, net1_test_acc = 0.8149
Epoch: [ 47] [3950/4000] time: 27822.2291, dice0 = 0.08323, cross0 = 0.0896, kl0 = 0.0073, exclusion0 = 0.0684, dice1 = 0.06635, cross1 = 0.0684, kl1 = 0.0107, exclusion1 = 0.0728
1.1555933
Epoch: [ 48] [ 0/4000] time: 27829.6156, net0_loss = 0.10449, net0_acc = 0.9837, net0_test_acc = 0.9087, net1_loss = 0.08062, net1_acc = 0.9880, net1_test_acc = 0.8833
Epoch: [ 48] [ 0/4000] time: 27829.6156, dice0 = 0.04145, cross0 = 0.0381, kl0 = 0.0058, exclusion0 = 0.0441, dice1 = 0.03103, cross1 = 0.0313, kl1 = 0.0042, exclusion1 = 0.0324
1.2061934
Epoch: [ 48] [ 50/4000] time: 27837.0362, net0_loss = 0.21124, net0_acc = 0.9662, net0_test_acc = 0.9292, net1_loss = 0.14595, net1_acc = 0.9770, net1_test_acc = 0.9205
Epoch: [ 48] [ 50/4000] time: 27837.0363, dice0 = 0.07111, cross0 = 0.1165, kl0 = 0.0061, exclusion0 = 0.0411, dice1 = 0.05669, cross1 = 0.0560, kl1 = 0.0079, exclusion1 = 0.0586
1.1310455
Epoch: [ 48] [100/4000] time: 27844.4888, net0_loss = 0.20667, net0_acc = 0.9720, net0_test_acc = 0.9007, net1_loss = 0.16060, net1_acc = 0.9730, net1_test_acc = 0.9243
Epoch: [ 48] [100/4000] time: 27844.4888, dice0 = 0.06363, cross0 = 0.1183, kl0 = 0.0044, exclusion0 = 0.0450, dice1 = 0.05767, cross1 = 0.0817, kl1 = 0.0041, exclusion1 = 0.0383
1.1478963
Epoch: [ 48] [150/4000] time: 27851.9370, net0_loss = 0.09461, net0_acc = 0.9849, net0_test_acc = 0.9392, net1_loss = 0.11770, net1_acc = 0.9785, net1_test_acc = 0.9460
Epoch: [ 48] [150/4000] time: 27851.9370, dice0 = 0.03794, cross0 = 0.0351, kl0 = 0.0042, exclusion0 = 0.0389, dice1 = 0.04467, cross1 = 0.0591, kl1 = 0.0018, exclusion1 = 0.0261
1.1430422
Epoch: [ 48] [200/4000] time: 27859.3617, net0_loss = 0.19551, net0_acc = 0.9653, net0_test_acc = 0.9840, net1_loss = 0.12176, net1_acc = 0.9813, net1_test_acc = 0.9879
Epoch: [ 48] [200/4000] time: 27859.3618, dice0 = 0.07072, cross0 = 0.1046, kl0 = 0.0030, exclusion0 = 0.0373, dice1 = 0.04306, cross1 = 0.0538, kl1 = 0.0091, exclusion1 = 0.0407
1.1321768
Epoch: [ 48] [250/4000] time: 27866.7886, net0_loss = 0.13687, net0_acc = 0.9786, net0_test_acc = 0.9624, net1_loss = 0.10056, net1_acc = 0.9833, net1_test_acc = 0.9564
Epoch: [ 48] [250/4000] time: 27866.7887, dice0 = 0.05443, cross0 = 0.0512, kl0 = 0.0063, exclusion0 = 0.0562, dice1 = 0.04085, cross1 = 0.0395, kl1 = 0.0021, exclusion1 = 0.0383
1.1808633
Epoch: [ 48] [300/4000] time: 27874.1009, net0_loss = 0.07031, net0_acc = 0.9893, net0_test_acc = 0.9763, net1_loss = 0.10103, net1_acc = 0.9837, net1_test_acc = 0.9192
Epoch: [ 48] [300/4000] time: 27874.1010, dice0 = 0.02754, cross0 = 0.0281, kl0 = 0.0032, exclusion0 = 0.0262, dice1 = 0.04010, cross1 = 0.0375, kl1 = 0.0058, exclusion1 = 0.0411
1.2754784
Epoch: [ 48] [350/4000] time: 27881.6416, net0_loss = 0.15202, net0_acc = 0.9772, net0_test_acc = 0.8985, net1_loss = 0.15878, net1_acc = 0.9739, net1_test_acc = 0.9871
Epoch: [ 48] [350/4000] time: 27881.6416, dice0 = 0.05950, cross0 = 0.0565, kl0 = 0.0084, exclusion0 = 0.0636, dice1 = 0.05984, cross1 = 0.0701, kl1 = 0.0071, exclusion1 = 0.0506
1.2123636
Epoch: [ 48] [400/4000] time: 27889.0337, net0_loss = 0.13061, net0_acc = 0.9773, net0_test_acc = 0.9368, net1_loss = 0.24973, net1_acc = 0.9625, net1_test_acc = 0.9903
Epoch: [ 48] [400/4000] time: 27889.0338, dice0 = 0.04702, cross0 = 0.0627, kl0 = 0.0066, exclusion0 = 0.0351, dice1 = 0.09167, cross1 = 0.0900, kl1 = 0.0214, exclusion1 = 0.1148
1.2252603
Epoch: [ 48] [450/4000] time: 27896.4348, net0_loss = 0.13107, net0_acc = 0.9816, net0_test_acc = 0.8944, net1_loss = 0.13687, net1_acc = 0.9758, net1_test_acc = 0.9129
Epoch: [ 48] [450/4000] time: 27896.4349, dice0 = 0.05059, cross0 = 0.0447, kl0 = 0.0080, exclusion0 = 0.0635, dice1 = 0.05289, cross1 = 0.0664, kl1 = 0.0020, exclusion1 = 0.0331
1.1937776
Epoch: [ 48] [500/4000] time: 27903.7433, net0_loss = 0.09084, net0_acc = 0.9880, net0_test_acc = 0.9642, net1_loss = 0.24171, net1_acc = 0.9610, net1_test_acc = 0.9613
Epoch: [ 48] [500/4000] time: 27903.7434, dice0 = 0.03631, cross0 = 0.0293, kl0 = 0.0056, exclusion0 = 0.0449, dice1 = 0.08290, cross1 = 0.1272, kl1 = 0.0061, exclusion1 = 0.0571
1.1197722
Epoch: [ 48] [550/4000] time: 27911.2897, net0_loss = 0.28459, net0_acc = 0.9497, net0_test_acc = 0.7506, net1_loss = 0.09672, net1_acc = 0.9863, net1_test_acc = 0.9010
Epoch: [ 48] [550/4000] time: 27911.2899, dice0 = 0.10743, cross0 = 0.1326, kl0 = 0.0093, exclusion0 = 0.0799, dice1 = 0.03762, cross1 = 0.0335, kl1 = 0.0051, exclusion1 = 0.0461
1.2323524
Epoch: [ 48] [600/4000] time: 27918.7021, net0_loss = 0.08830, net0_acc = 0.9870, net0_test_acc = 0.8364, net1_loss = 0.35250, net1_acc = 0.9456, net1_test_acc = 0.8224
Epoch: [ 48] [600/4000] time: 27918.7021, dice0 = 0.03165, cross0 = 0.0350, kl0 = 0.0058, exclusion0 = 0.0374, dice1 = 0.12759, cross1 = 0.1327, kl1 = 0.0353, exclusion1 = 0.1490
1.1376868
Epoch: [ 48] [650/4000] time: 27926.0658, net0_loss = 0.23057, net0_acc = 0.9628, net0_test_acc = 0.9846, net1_loss = 0.05933, net1_acc = 0.9916, net1_test_acc = 0.9705
Epoch: [ 48] [650/4000] time: 27926.0658, dice0 = 0.08181, cross0 = 0.1028, kl0 = 0.0168, exclusion0 = 0.0753, dice1 = 0.02460, cross1 = 0.0206, kl1 = 0.0016, exclusion1 = 0.0266
1.1106992
Epoch: [ 48] [700/4000] time: 27933.5038, net0_loss = 0.10507, net0_acc = 0.9857, net0_test_acc = 0.9381, net1_loss = 0.25959, net1_acc = 0.9539, net1_test_acc = 0.9347
Epoch: [ 48] [700/4000] time: 27933.5038, dice0 = 0.03439, cross0 = 0.0503, kl0 = 0.0069, exclusion0 = 0.0339, dice1 = 0.09607, cross1 = 0.1241, kl1 = 0.0088, exclusion1 = 0.0702
1.1171496
Epoch: [ 48] [750/4000] time: 27940.8751, net0_loss = 0.11661, net0_acc = 0.9800, net0_test_acc = 0.9473, net1_loss = 0.10513, net1_acc = 0.9832, net1_test_acc = 0.9437
Epoch: [ 48] [750/4000] time: 27940.8752, dice0 = 0.04470, cross0 = 0.0519, kl0 = 0.0035, exclusion0 = 0.0366, dice1 = 0.04097, cross1 = 0.0390, kl1 = 0.0075, exclusion1 = 0.0429
1.170445
Epoch: [ 48] [800/4000] time: 27948.3304, net0_loss = 0.16446, net0_acc = 0.9717, net0_test_acc = 0.9014, net1_loss = 0.12414, net1_acc = 0.9807, net1_test_acc = 0.9733
Epoch: [ 48] [800/4000] time: 27948.3305, dice0 = 0.06213, cross0 = 0.0770, kl0 = 0.0052, exclusion0 = 0.0454, dice1 = 0.04148, cross1 = 0.0560, kl1 = 0.0123, exclusion1 = 0.0411
1.1809931
Epoch: [ 48] [850/4000] time: 27955.6977, net0_loss = 0.24920, net0_acc = 0.9583, net0_test_acc = 0.9465, net1_loss = 0.16012, net1_acc = 0.9744, net1_test_acc = 0.9319
Epoch: [ 48] [850/4000] time: 27955.6978, dice0 = 0.08877, cross0 = 0.1233, kl0 = 0.0083, exclusion0 = 0.0660, dice1 = 0.06239, cross1 = 0.0621, kl1 = 0.0085, exclusion1 = 0.0628
1.1427844
Epoch: [ 48] [900/4000] time: 27963.1041, net0_loss = 0.20790, net0_acc = 0.9687, net0_test_acc = 0.9215, net1_loss = 0.39666, net1_acc = 0.9339, net1_test_acc = 0.9142
Epoch: [ 48] [900/4000] time: 27963.1041, dice0 = 0.07806, cross0 = 0.0813, kl0 = 0.0159, exclusion0 = 0.0812, dice1 = 0.12627, cross1 = 0.2421, kl1 = 0.0069, exclusion1 = 0.0497
1.1977495
Epoch: [ 48] [950/4000] time: 27970.5049, net0_loss = 0.18085, net0_acc = 0.9691, net0_test_acc = 0.9727, net1_loss = 0.06083, net1_acc = 0.9919, net1_test_acc = 0.8881
Epoch: [ 48] [950/4000] time: 27970.5050, dice0 = 0.07210, cross0 = 0.0743, kl0 = 0.0070, exclusion0 = 0.0620, dice1 = 0.02548, cross1 = 0.0196, kl1 = 0.0020, exclusion1 = 0.0295
1.1475321
Epoch: [ 48] [1000/4000] time: 27977.9033, net0_loss = 0.27799, net0_acc = 0.9548, net0_test_acc = 0.7348, net1_loss = 0.10376, net1_acc = 0.9825, net1_test_acc = 0.9492
Epoch: [ 48] [1000/4000] time: 27977.9034, dice0 = 0.09462, cross0 = 0.1273, kl0 = 0.0248, exclusion0 = 0.0873, dice1 = 0.04011, cross1 = 0.0442, kl1 = 0.0040, exclusion1 = 0.0349
1.2132349
Epoch: [ 48] [1050/4000] time: 27985.3112, net0_loss = 0.08317, net0_acc = 0.9882, net0_test_acc = 0.8809, net1_loss = 0.12914, net1_acc = 0.9782, net1_test_acc = 0.8153
Epoch: [ 48] [1050/4000] time: 27985.3112, dice0 = 0.03084, cross0 = 0.0363, kl0 = 0.0030, exclusion0 = 0.0290, dice1 = 0.05178, cross1 = 0.0549, kl1 = 0.0021, exclusion1 = 0.0429
1.1838471
Epoch: [ 48] [1100/4000] time: 27992.7230, net0_loss = 0.47995, net0_acc = 0.9266, net0_test_acc = 0.8738, net1_loss = 0.42039, net1_acc = 0.9333, net1_test_acc = 0.9754
Epoch: [ 48] [1100/4000] time: 27992.7230, dice0 = 0.14162, cross0 = 0.3064, kl0 = 0.0037, exclusion0 = 0.0602, dice1 = 0.13263, cross1 = 0.2495, kl1 = 0.0092, exclusion1 = 0.0672
1.1667792
Epoch: [ 48] [1150/4000] time: 28000.1454, net0_loss = 0.04905, net0_acc = 0.9935, net0_test_acc = 0.9139, net1_loss = 0.27599, net1_acc = 0.9541, net1_test_acc = 0.9789
Epoch: [ 48] [1150/4000] time: 28000.1455, dice0 = 0.01945, cross0 = 0.0180, kl0 = 0.0017, exclusion0 = 0.0216, dice1 = 0.09980, cross1 = 0.1152, kl1 = 0.0207, exclusion1 = 0.1012
1.1611768
Epoch: [ 48] [1200/4000] time: 28007.5320, net0_loss = 0.21419, net0_acc = 0.9643, net0_test_acc = 0.9032, net1_loss = 0.12584, net1_acc = 0.9793, net1_test_acc = 0.9455
Epoch: [ 48] [1200/4000] time: 28007.5321, dice0 = 0.07947, cross0 = 0.0998, kl0 = 0.0063, exclusion0 = 0.0636, dice1 = 0.05003, cross1 = 0.0517, kl1 = 0.0029, exclusion1 = 0.0453
1.0864856
Epoch: [ 48] [1250/4000] time: 28014.9564, net0_loss = 0.13561, net0_acc = 0.9789, net0_test_acc = 0.9567, net1_loss = 0.10635, net1_acc = 0.9845, net1_test_acc = 0.8884
Epoch: [ 48] [1250/4000] time: 28014.9565, dice0 = 0.05460, cross0 = 0.0516, kl0 = 0.0038, exclusion0 = 0.0549, dice1 = 0.04236, cross1 = 0.0388, kl1 = 0.0041, exclusion1 = 0.0463
1.1607347
Epoch: [ 48] [1300/4000] time: 28022.3507, net0_loss = 0.14363, net0_acc = 0.9765, net0_test_acc = 0.7719, net1_loss = 0.20609, net1_acc = 0.9703, net1_test_acc = 0.8231
Epoch: [ 48] [1300/4000] time: 28022.3508, dice0 = 0.05646, cross0 = 0.0582, kl0 = 0.0063, exclusion0 = 0.0517, dice1 = 0.08005, cross1 = 0.0775, kl1 = 0.0071, exclusion1 = 0.0900
1.2495829
Epoch: [ 48] [1350/4000] time: 28029.7107, net0_loss = 0.28361, net0_acc = 0.9619, net0_test_acc = 0.8107, net1_loss = 0.09780, net1_acc = 0.9845, net1_test_acc = 0.8300
Epoch: [ 48] [1350/4000] time: 28029.7107, dice0 = 0.08179, cross0 = 0.1015, kl0 = 0.0528, exclusion0 = 0.1477, dice1 = 0.03803, cross1 = 0.0394, kl1 = 0.0036, exclusion1 = 0.0372
1.1662269
Epoch: [ 48] [1400/4000] time: 28037.1351, net0_loss = 0.16708, net0_acc = 0.9733, net0_test_acc = 0.9759, net1_loss = 0.13128, net1_acc = 0.9783, net1_test_acc = 0.9492
Epoch: [ 48] [1400/4000] time: 28037.1352, dice0 = 0.06069, cross0 = 0.0691, kl0 = 0.0127, exclusion0 = 0.0620, dice1 = 0.05192, cross1 = 0.0536, kl1 = 0.0039, exclusion1 = 0.0476
1.1595321
Epoch: [ 48] [1450/4000] time: 28044.5461, net0_loss = 0.15037, net0_acc = 0.9752, net0_test_acc = 0.9911, net1_loss = 0.23589, net1_acc = 0.9578, net1_test_acc = 0.9500
Epoch: [ 48] [1450/4000] time: 28044.5461, dice0 = 0.05759, cross0 = 0.0644, kl0 = 0.0070, exclusion0 = 0.0497, dice1 = 0.08667, cross1 = 0.1123, kl1 = 0.0087, exclusion1 = 0.0651
1.1401029
Epoch: [ 48] [1500/4000] time: 28051.9584, net0_loss = 0.06480, net0_acc = 0.9894, net0_test_acc = 0.9520, net1_loss = 0.08235, net1_acc = 0.9894, net1_test_acc = 0.8514
Epoch: [ 48] [1500/4000] time: 28051.9585, dice0 = 0.02401, cross0 = 0.0298, kl0 = 0.0027, exclusion0 = 0.0193, dice1 = 0.03240, cross1 = 0.0277, kl1 = 0.0062, exclusion1 = 0.0383
1.1427743
Epoch: [ 48] [1550/4000] time: 28059.4020, net0_loss = 0.13251, net0_acc = 0.9779, net0_test_acc = 0.9788, net1_loss = 0.06862, net1_acc = 0.9904, net1_test_acc = 0.8898
Epoch: [ 48] [1550/4000] time: 28059.4021, dice0 = 0.05032, cross0 = 0.0573, kl0 = 0.0063, exclusion0 = 0.0435, dice1 = 0.02869, cross1 = 0.0233, kl1 = 0.0017, exclusion1 = 0.0317
1.1545749
Epoch: [ 48] [1600/4000] time: 28066.8004, net0_loss = 0.19919, net0_acc = 0.9674, net0_test_acc = 0.9339, net1_loss = 0.13902, net1_acc = 0.9766, net1_test_acc = 0.9679
Epoch: [ 48] [1600/4000] time: 28066.8005, dice0 = 0.07897, cross0 = 0.0807, kl0 = 0.0067, exclusion0 = 0.0724, dice1 = 0.05467, cross1 = 0.0552, kl1 = 0.0062, exclusion1 = 0.0520
1.2232857
Epoch: [ 48] [1650/4000] time: 28074.2123, net0_loss = 0.32340, net0_acc = 0.9507, net0_test_acc = 0.9397, net1_loss = 0.31945, net1_acc = 0.9485, net1_test_acc = 0.9816
Epoch: [ 48] [1650/4000] time: 28074.2124, dice0 = 0.10671, cross0 = 0.1506, kl0 = 0.0278, exclusion0 = 0.1043, dice1 = 0.10714, cross1 = 0.1497, kl1 = 0.0239, exclusion1 = 0.1013
1.1750355
Epoch: [ 48] [1700/4000] time: 28081.4917, net0_loss = 0.28927, net0_acc = 0.9541, net0_test_acc = 0.8696, net1_loss = 0.16490, net1_acc = 0.9760, net1_test_acc = 0.9494
Epoch: [ 48] [1700/4000] time: 28081.4917, dice0 = 0.10856, cross0 = 0.1087, kl0 = 0.0228, exclusion0 = 0.1213, dice1 = 0.06318, cross1 = 0.0560, kl1 = 0.0143, exclusion1 = 0.0772
1.112531
Epoch: [ 48] [1750/4000] time: 28088.9580, net0_loss = 0.06646, net0_acc = 0.9910, net0_test_acc = 0.8925, net1_loss = 0.19020, net1_acc = 0.9717, net1_test_acc = 0.9617
Epoch: [ 48] [1750/4000] time: 28088.9581, dice0 = 0.02706, cross0 = 0.0212, kl0 = 0.0034, exclusion0 = 0.0329, dice1 = 0.07186, cross1 = 0.0689, kl1 = 0.0132, exclusion1 = 0.0856
1.1404666
Epoch: [ 48] [1800/4000] time: 28096.4611, net0_loss = 0.07647, net0_acc = 0.9890, net0_test_acc = 0.9696, net1_loss = 0.21171, net1_acc = 0.9652, net1_test_acc = 0.9233
Epoch: [ 48] [1800/4000] time: 28096.4612, dice0 = 0.03056, cross0 = 0.0277, kl0 = 0.0028, exclusion0 = 0.0336, dice1 = 0.07637, cross1 = 0.1046, kl1 = 0.0081, exclusion1 = 0.0533
1.1622626
Epoch: [ 48] [1850/4000] time: 28103.8278, net0_loss = 0.18151, net0_acc = 0.9750, net0_test_acc = 0.9141, net1_loss = 0.18974, net1_acc = 0.9689, net1_test_acc = 0.9728
Epoch: [ 48] [1850/4000] time: 28103.8279, dice0 = 0.06354, cross0 = 0.0653, kl0 = 0.0214, exclusion0 = 0.0839, dice1 = 0.06851, cross1 = 0.0786, kl1 = 0.0137, exclusion1 = 0.0715
1.183599
Epoch: [ 48] [1900/4000] time: 28111.1141, net0_loss = 0.10651, net0_acc = 0.9820, net0_test_acc = 0.9825, net1_loss = 0.18473, net1_acc = 0.9664, net1_test_acc = 0.9530
Epoch: [ 48] [1900/4000] time: 28111.1141, dice0 = 0.04079, cross0 = 0.0462, kl0 = 0.0035, exclusion0 = 0.0356, dice1 = 0.07086, cross1 = 0.0897, kl1 = 0.0031, exclusion1 = 0.0451
1.1578981
Epoch: [ 48] [1950/4000] time: 28118.6654, net0_loss = 0.03861, net0_acc = 0.9954, net0_test_acc = 0.7544, net1_loss = 0.22471, net1_acc = 0.9592, net1_test_acc = 0.9127
Epoch: [ 48] [1950/4000] time: 28118.6655, dice0 = 0.01531, cross0 = 0.0114, kl0 = 0.0020, exclusion0 = 0.0218, dice1 = 0.08430, cross1 = 0.1042, kl1 = 0.0088, exclusion1 = 0.0636
1.1410105
Epoch: [ 48] [2000/4000] time: 28126.0534, net0_loss = 0.10190, net0_acc = 0.9814, net0_test_acc = 0.9514, net1_loss = 0.05569, net1_acc = 0.9924, net1_test_acc = 0.9435
Epoch: [ 48] [2000/4000] time: 28126.0534, dice0 = 0.03935, cross0 = 0.0475, kl0 = 0.0031, exclusion0 = 0.0271, dice1 = 0.02258, cross1 = 0.0195, kl1 = 0.0020, exclusion1 = 0.0252
1.0963856
Epoch: [ 48] [2050/4000] time: 28133.4277, net0_loss = 0.11881, net0_acc = 0.9826, net0_test_acc = 0.9402, net1_loss = 0.06800, net1_acc = 0.9885, net1_test_acc = 0.9609
Epoch: [ 48] [2050/4000] time: 28133.4278, dice0 = 0.04487, cross0 = 0.0473, kl0 = 0.0056, exclusion0 = 0.0477, dice1 = 0.02753, cross1 = 0.0273, kl1 = 0.0017, exclusion1 = 0.0246
1.1532211
Epoch: [ 48] [2100/4000] time: 28140.9303, net0_loss = 0.13296, net0_acc = 0.9791, net0_test_acc = 0.9376, net1_loss = 0.11655, net1_acc = 0.9822, net1_test_acc = 0.9292
Epoch: [ 48] [2100/4000] time: 28140.9303, dice0 = 0.04255, cross0 = 0.0730, kl0 = 0.0063, exclusion0 = 0.0286, dice1 = 0.04384, cross1 = 0.0427, kl1 = 0.0086, exclusion1 = 0.0515
1.2552354
Epoch: [ 48] [2150/4000] time: 28148.3391, net0_loss = 0.20934, net0_acc = 0.9694, net0_test_acc = 0.8118, net1_loss = 0.20263, net1_acc = 0.9660, net1_test_acc = 0.9447
Epoch: [ 48] [2150/4000] time: 28148.3391, dice0 = 0.06787, cross0 = 0.1040, kl0 = 0.0116, exclusion0 = 0.0633, dice1 = 0.07626, cross1 = 0.0806, kl1 = 0.0138, exclusion1 = 0.0778
1.1193941
Epoch: [ 48] [2200/4000] time: 28155.7395, net0_loss = 0.04495, net0_acc = 0.9948, net0_test_acc = 0.9106, net1_loss = 0.14715, net1_acc = 0.9776, net1_test_acc = 0.8861
Epoch: [ 48] [2200/4000] time: 28155.7396, dice0 = 0.01751, cross0 = 0.0137, kl0 = 0.0033, exclusion0 = 0.0241, dice1 = 0.05513, cross1 = 0.0560, kl1 = 0.0103, exclusion1 = 0.0617
1.2048858
Epoch: [ 48] [2250/4000] time: 28162.9850, net0_loss = 0.44105, net0_acc = 0.9297, net0_test_acc = 0.9586, net1_loss = 0.22186, net1_acc = 0.9619, net1_test_acc = 0.9350
Epoch: [ 48] [2250/4000] time: 28162.9851, dice0 = 0.13706, cross0 = 0.2488, kl0 = 0.0212, exclusion0 = 0.0893, dice1 = 0.08315, cross1 = 0.1000, kl1 = 0.0083, exclusion1 = 0.0691
1.1496823
Epoch: [ 48] [2300/4000] time: 28170.5166, net0_loss = 0.17229, net0_acc = 0.9728, net0_test_acc = 0.8341, net1_loss = 0.12071, net1_acc = 0.9791, net1_test_acc = 0.9362
Epoch: [ 48] [2300/4000] time: 28170.5167, dice0 = 0.06760, cross0 = 0.0641, kl0 = 0.0089, exclusion0 = 0.0723, dice1 = 0.04763, cross1 = 0.0500, kl1 = 0.0040, exclusion1 = 0.0421
1.1253546
Epoch: [ 48] [2350/4000] time: 28177.9468, net0_loss = 0.08218, net0_acc = 0.9865, net0_test_acc = 0.9675, net1_loss = 0.15250, net1_acc = 0.9756, net1_test_acc = 0.9600
Epoch: [ 48] [2350/4000] time: 28177.9469, dice0 = 0.03372, cross0 = 0.0323, kl0 = 0.0019, exclusion0 = 0.0305, dice1 = 0.06063, cross1 = 0.0574, kl1 = 0.0058, exclusion1 = 0.0632
1.1664697
Epoch: [ 48] [2400/4000] time: 28185.3217, net0_loss = 0.24943, net0_acc = 0.9581, net0_test_acc = 0.9506, net1_loss = 0.19137, net1_acc = 0.9678, net1_test_acc = 0.9905
Epoch: [ 48] [2400/4000] time: 28185.3217, dice0 = 0.08941, cross0 = 0.1148, kl0 = 0.0141, exclusion0 = 0.0763, dice1 = 0.06951, cross1 = 0.0902, kl1 = 0.0076, exclusion1 = 0.0557
1.1676786
Epoch: [ 48] [2450/4000] time: 28192.7530, net0_loss = 0.12919, net0_acc = 0.9803, net0_test_acc = 0.9613, net1_loss = 0.16146, net1_acc = 0.9737, net1_test_acc = 0.9145
Epoch: [ 48] [2450/4000] time: 28192.7531, dice0 = 0.04858, cross0 = 0.0561, kl0 = 0.0062, exclusion0 = 0.0427, dice1 = 0.06211, cross1 = 0.0646, kl1 = 0.0100, exclusion1 = 0.0596
1.0944754
Epoch: [ 48] [2500/4000] time: 28200.1306, net0_loss = 0.11596, net0_acc = 0.9828, net0_test_acc = 0.8702, net1_loss = 0.08931, net1_acc = 0.9862, net1_test_acc = 0.9089
Epoch: [ 48] [2500/4000] time: 28200.1306, dice0 = 0.04549, cross0 = 0.0405, kl0 = 0.0073, exclusion0 = 0.0527, dice1 = 0.03634, cross1 = 0.0337, kl1 = 0.0026, exclusion1 = 0.0360
1.1430252
Epoch: [ 48] [2550/4000] time: 28207.5569, net0_loss = 0.16463, net0_acc = 0.9705, net0_test_acc = 0.8081, net1_loss = 0.14842, net1_acc = 0.9794, net1_test_acc = 0.9714
Epoch: [ 48] [2550/4000] time: 28207.5570, dice0 = 0.06475, cross0 = 0.0718, kl0 = 0.0047, exclusion0 = 0.0514, dice1 = 0.05844, cross1 = 0.0490, kl1 = 0.0076, exclusion1 = 0.0744
1.1055613
Epoch: [ 48] [2600/4000] time: 28214.9659, net0_loss = 0.06303, net0_acc = 0.9929, net0_test_acc = 0.9850, net1_loss = 0.05884, net1_acc = 0.9917, net1_test_acc = 0.8742
Epoch: [ 48] [2600/4000] time: 28214.9660, dice0 = 0.02068, cross0 = 0.0260, kl0 = 0.0052, exclusion0 = 0.0276, dice1 = 0.02113, cross1 = 0.0281, kl1 = 0.0015, exclusion1 = 0.0177
1.190336
Epoch: [ 48] [2650/4000] time: 28222.3874, net0_loss = 0.08991, net0_acc = 0.9861, net0_test_acc = 0.9375, net1_loss = 0.07187, net1_acc = 0.9899, net1_test_acc = 0.9637
Epoch: [ 48] [2650/4000] time: 28222.3875, dice0 = 0.03584, cross0 = 0.0339, kl0 = 0.0042, exclusion0 = 0.0362, dice1 = 0.02652, cross1 = 0.0295, kl1 = 0.0040, exclusion1 = 0.0277
1.2261856
Epoch: [ 48] [2700/4000] time: 28229.8096, net0_loss = 0.14819, net0_acc = 0.9738, net0_test_acc = 0.8926, net1_loss = 0.13150, net1_acc = 0.9780, net1_test_acc = 0.9214
Epoch: [ 48] [2700/4000] time: 28229.8097, dice0 = 0.05683, cross0 = 0.0680, kl0 = 0.0056, exclusion0 = 0.0412, dice1 = 0.05174, cross1 = 0.0553, kl1 = 0.0041, exclusion1 = 0.0449
1.1032246
Epoch: [ 48] [2750/4000] time: 28237.2372, net0_loss = 0.16911, net0_acc = 0.9751, net0_test_acc = 0.9548, net1_loss = 0.09563, net1_acc = 0.9839, net1_test_acc = 0.8986
Epoch: [ 48] [2750/4000] time: 28237.2373, dice0 = 0.06006, cross0 = 0.0630, kl0 = 0.0157, exclusion0 = 0.0763, dice1 = 0.03783, cross1 = 0.0368, kl1 = 0.0040, exclusion1 = 0.0381
1.2075435
Epoch: [ 48] [2800/4000] time: 28244.6123, net0_loss = 0.11711, net0_acc = 0.9810, net0_test_acc = 0.9707, net1_loss = 0.11459, net1_acc = 0.9817, net1_test_acc = 0.9535
Epoch: [ 48] [2800/4000] time: 28244.6124, dice0 = 0.04640, cross0 = 0.0478, kl0 = 0.0043, exclusion0 = 0.0415, dice1 = 0.04028, cross1 = 0.0552, kl1 = 0.0059, exclusion1 = 0.0323
1.2727196
Epoch: [ 48] [2850/4000] time: 28252.0251, net0_loss = 0.55123, net0_acc = 0.9109, net0_test_acc = 0.9538, net1_loss = 0.13029, net1_acc = 0.9773, net1_test_acc = 0.9500
Epoch: [ 48] [2850/4000] time: 28252.0252, dice0 = 0.17593, cross0 = 0.2935, kl0 = 0.0267, exclusion0 = 0.1369, dice1 = 0.05248, cross1 = 0.0562, kl1 = 0.0044, exclusion1 = 0.0388
1.182271
Epoch: [ 48] [2900/4000] time: 28259.4460, net0_loss = 0.22281, net0_acc = 0.9637, net0_test_acc = 0.9442, net1_loss = 0.15142, net1_acc = 0.9825, net1_test_acc = 0.7784
Epoch: [ 48] [2900/4000] time: 28259.4461, dice0 = 0.08222, cross0 = 0.0977, kl0 = 0.0115, exclusion0 = 0.0742, dice1 = 0.04262, cross1 = 0.0903, kl1 = 0.0047, exclusion1 = 0.0323
1.2935706
Epoch: [ 48] [2950/4000] time: 28266.8690, net0_loss = 0.34249, net0_acc = 0.9406, net0_test_acc = 0.8659, net1_loss = 0.21107, net1_acc = 0.9663, net1_test_acc = 0.9012
Epoch: [ 48] [2950/4000] time: 28266.8690, dice0 = 0.12420, cross0 = 0.1671, kl0 = 0.0098, exclusion0 = 0.0927, dice1 = 0.07834, cross1 = 0.0870, kl1 = 0.0115, exclusion1 = 0.0800
1.1915421
Epoch: [ 48] [3000/4000] time: 28274.2378, net0_loss = 0.11583, net0_acc = 0.9813, net0_test_acc = 0.9129, net1_loss = 0.13524, net1_acc = 0.9752, net1_test_acc = 0.8133
Epoch: [ 48] [3000/4000] time: 28274.2379, dice0 = 0.04497, cross0 = 0.0470, kl0 = 0.0054, exclusion0 = 0.0423, dice1 = 0.05312, cross1 = 0.0585, kl1 = 0.0051, exclusion1 = 0.0422
1.223084
Epoch: [ 48] [3050/4000] time: 28281.6364, net0_loss = 0.12963, net0_acc = 0.9799, net0_test_acc = 0.9170, net1_loss = 0.22905, net1_acc = 0.9647, net1_test_acc = 0.9375
Epoch: [ 48] [3050/4000] time: 28281.6364, dice0 = 0.05100, cross0 = 0.0520, kl0 = 0.0055, exclusion0 = 0.0479, dice1 = 0.07927, cross1 = 0.1044, kl1 = 0.0143, exclusion1 = 0.0765
1.2446892
Epoch: [ 48] [3100/4000] time: 28289.0494, net0_loss = 0.12946, net0_acc = 0.9788, net0_test_acc = 0.9276, net1_loss = 0.10472, net1_acc = 0.9810, net1_test_acc = 0.9380
Epoch: [ 48] [3100/4000] time: 28289.0494, dice0 = 0.05023, cross0 = 0.0536, kl0 = 0.0047, exclusion0 = 0.0465, dice1 = 0.04130, cross1 = 0.0479, kl1 = 0.0016, exclusion1 = 0.0295
1.2172024
Epoch: [ 48] [3150/4000] time: 28296.4039, net0_loss = 0.12085, net0_acc = 0.9814, net0_test_acc = 0.9718, net1_loss = 0.12560, net1_acc = 0.9823, net1_test_acc = 0.9282
Epoch: [ 48] [3150/4000] time: 28296.4040, dice0 = 0.04441, cross0 = 0.0524, kl0 = 0.0065, exclusion0 = 0.0414, dice1 = 0.04823, cross1 = 0.0435, kl1 = 0.0105, exclusion1 = 0.0573
1.1712692
Epoch: [ 48] [3200/4000] time: 28303.8879, net0_loss = 0.12736, net0_acc = 0.9805, net0_test_acc = 0.9703, net1_loss = 0.20518, net1_acc = 0.9665, net1_test_acc = 0.8663
Epoch: [ 48] [3200/4000] time: 28303.8879, dice0 = 0.05190, cross0 = 0.0437, kl0 = 0.0057, exclusion0 = 0.0578, dice1 = 0.07888, cross1 = 0.0815, kl1 = 0.0100, exclusion1 = 0.0797
1.1681112
Epoch: [ 48] [3250/4000] time: 28311.3187, net0_loss = 0.30952, net0_acc = 0.9484, net0_test_acc = 0.9558, net1_loss = 0.13614, net1_acc = 0.9754, net1_test_acc = 0.9815
Epoch: [ 48] [3250/4000] time: 28311.3188, dice0 = 0.11550, cross0 = 0.1311, kl0 = 0.0163, exclusion0 = 0.1095, dice1 = 0.05379, cross1 = 0.0583, kl1 = 0.0038, exclusion1 = 0.0443
1.1181188
Epoch: [ 48] [3300/4000] time: 28318.7108, net0_loss = 0.10818, net0_acc = 0.9837, net0_test_acc = 0.8710, net1_loss = 0.22230, net1_acc = 0.9687, net1_test_acc = 0.8820
Epoch: [ 48] [3300/4000] time: 28318.7109, dice0 = 0.04201, cross0 = 0.0389, kl0 = 0.0066, exclusion0 = 0.0480, dice1 = 0.07671, cross1 = 0.0872, kl1 = 0.0226, exclusion1 = 0.0941
1.1489453
Epoch: [ 48] [3350/4000] time: 28326.1071, net0_loss = 0.21065, net0_acc = 0.9680, net0_test_acc = 0.9288, net1_loss = 0.55852, net1_acc = 0.9136, net1_test_acc = 0.8930
Epoch: [ 48] [3350/4000] time: 28326.1072, dice0 = 0.07636, cross0 = 0.0776, kl0 = 0.0199, exclusion0 = 0.0934, dice1 = 0.16173, cross1 = 0.3742, kl1 = 0.0042, exclusion1 = 0.0410
1.119939
Epoch: [ 48] [3400/4000] time: 28333.5195, net0_loss = 0.09035, net0_acc = 0.9866, net0_test_acc = 0.9577, net1_loss = 0.20495, net1_acc = 0.9692, net1_test_acc = 0.9477
Epoch: [ 48] [3400/4000] time: 28333.5195, dice0 = 0.03298, cross0 = 0.0383, kl0 = 0.0041, exclusion0 = 0.0340, dice1 = 0.08099, cross1 = 0.0728, kl1 = 0.0109, exclusion1 = 0.0913
1.1358604
Epoch: [ 48] [3450/4000] time: 28340.9133, net0_loss = 0.11979, net0_acc = 0.9812, net0_test_acc = 0.9285, net1_loss = 0.17525, net1_acc = 0.9689, net1_test_acc = 0.9902
Epoch: [ 48] [3450/4000] time: 28340.9134, dice0 = 0.04525, cross0 = 0.0444, kl0 = 0.0092, exclusion0 = 0.0512, dice1 = 0.06716, cross1 = 0.0859, kl1 = 0.0033, exclusion1 = 0.0410
1.1395562
Epoch: [ 48] [3500/4000] time: 28348.3368, net0_loss = 0.16169, net0_acc = 0.9751, net0_test_acc = 0.9475, net1_loss = 0.13755, net1_acc = 0.9768, net1_test_acc = 0.7939
Epoch: [ 48] [3500/4000] time: 28348.3369, dice0 = 0.06276, cross0 = 0.0587, kl0 = 0.0084, exclusion0 = 0.0722, dice1 = 0.05411, cross1 = 0.0614, kl1 = 0.0028, exclusion1 = 0.0412
1.0661645
Epoch: [ 48] [3550/4000] time: 28355.7664, net0_loss = 0.10459, net0_acc = 0.9832, net0_test_acc = 0.8820, net1_loss = 0.11045, net1_acc = 0.9813, net1_test_acc = 0.9857
Epoch: [ 48] [3550/4000] time: 28355.7665, dice0 = 0.04147, cross0 = 0.0387, kl0 = 0.0054, exclusion0 = 0.0435, dice1 = 0.04125, cross1 = 0.0544, kl1 = 0.0029, exclusion1 = 0.0267
1.1362258
Epoch: [ 48] [3600/4000] time: 28363.1099, net0_loss = 0.08084, net0_acc = 0.9879, net0_test_acc = 0.9700, net1_loss = 0.06574, net1_acc = 0.9903, net1_test_acc = 0.9054
Epoch: [ 48] [3600/4000] time: 28363.1100, dice0 = 0.03202, cross0 = 0.0299, kl0 = 0.0032, exclusion0 = 0.0346, dice1 = 0.02584, cross1 = 0.0258, kl1 = 0.0021, exclusion1 = 0.0260
1.1441555
Epoch: [ 48] [3650/4000] time: 28370.5431, net0_loss = 0.23510, net0_acc = 0.9600, net0_test_acc = 0.8672, net1_loss = 0.37268, net1_acc = 0.9304, net1_test_acc = 0.9085
Epoch: [ 48] [3650/4000] time: 28370.5431, dice0 = 0.08212, cross0 = 0.1273, kl0 = 0.0043, exclusion0 = 0.0470, dice1 = 0.13063, cross1 = 0.1742, kl1 = 0.0267, exclusion1 = 0.1091
1.1806893
Epoch: [ 48] [3700/4000] time: 28377.9541, net0_loss = 0.12464, net0_acc = 0.9839, net0_test_acc = 0.9180, net1_loss = 0.17707, net1_acc = 0.9716, net1_test_acc = 0.7757
Epoch: [ 48] [3700/4000] time: 28377.9542, dice0 = 0.04259, cross0 = 0.0451, kl0 = 0.0144, exclusion0 = 0.0596, dice1 = 0.06261, cross1 = 0.0896, kl1 = 0.0063, exclusion1 = 0.0434
1.194685
Epoch: [ 48] [3750/4000] time: 28385.3740, net0_loss = 0.13888, net0_acc = 0.9758, net0_test_acc = 0.8874, net1_loss = 0.23645, net1_acc = 0.9632, net1_test_acc = 0.9189
Epoch: [ 48] [3750/4000] time: 28385.3741, dice0 = 0.05557, cross0 = 0.0572, kl0 = 0.0041, exclusion0 = 0.0482, dice1 = 0.08642, cross1 = 0.0926, kl1 = 0.0222, exclusion1 = 0.0927
1.2090182
Epoch: [ 48] [3800/4000] time: 28392.7887, net0_loss = 0.13122, net0_acc = 0.9785, net0_test_acc = 0.9312, net1_loss = 0.36203, net1_acc = 0.9437, net1_test_acc = 0.9214
Epoch: [ 48] [3800/4000] time: 28392.7889, dice0 = 0.05043, cross0 = 0.0544, kl0 = 0.0058, exclusion0 = 0.0470, dice1 = 0.12304, cross1 = 0.1569, kl1 = 0.0295, exclusion1 = 0.1346
1.1600101
Epoch: [ 48] [3850/4000] time: 28400.1788, net0_loss = 0.25448, net0_acc = 0.9533, net0_test_acc = 0.8760, net1_loss = 0.25002, net1_acc = 0.9596, net1_test_acc = 0.9090
Epoch: [ 48] [3850/4000] time: 28400.1788, dice0 = 0.09423, cross0 = 0.1224, kl0 = 0.0089, exclusion0 = 0.0669, dice1 = 0.08960, cross1 = 0.1165, kl1 = 0.0134, exclusion1 = 0.0745
1.1516553
Epoch: [ 48] [3900/4000] time: 28407.5101, net0_loss = 0.16815, net0_acc = 0.9701, net0_test_acc = 0.8913, net1_loss = 0.02973, net1_acc = 0.9969, net1_test_acc = 0.9436
Epoch: [ 48] [3900/4000] time: 28407.5101, dice0 = 0.06625, cross0 = 0.0692, kl0 = 0.0081, exclusion0 = 0.0573, dice1 = 0.01223, cross1 = 0.0093, kl1 = 0.0011, exclusion1 = 0.0153
1.1289406
Epoch: [ 48] [3950/4000] time: 28415.0188, net0_loss = 0.04389, net0_acc = 0.9942, net0_test_acc = 0.9821, net1_loss = 0.15069, net1_acc = 0.9732, net1_test_acc = 0.9877
Epoch: [ 48] [3950/4000] time: 28415.0189, dice0 = 0.01742, cross0 = 0.0148, kl0 = 0.0021, exclusion0 = 0.0213, dice1 = 0.05830, cross1 = 0.0707, kl1 = 0.0026, exclusion1 = 0.0407
1.1676304
Epoch: [ 49] [ 0/4000] time: 28422.4328, net0_loss = 0.08088, net0_acc = 0.9890, net0_test_acc = 0.9652, net1_loss = 0.15142, net1_acc = 0.9763, net1_test_acc = 0.9570
Epoch: [ 49] [ 0/4000] time: 28422.4329, dice0 = 0.03030, cross0 = 0.0263, kl0 = 0.0084, exclusion0 = 0.0402, dice1 = 0.06165, cross1 = 0.0538, kl1 = 0.0051, exclusion1 = 0.0669
1.1810801
Epoch: [ 49] [ 50/4000] time: 28429.8481, net0_loss = 0.06485, net0_acc = 0.9907, net0_test_acc = 0.9722, net1_loss = 0.15714, net1_acc = 0.9759, net1_test_acc = 0.9293
Epoch: [ 49] [ 50/4000] time: 28429.8482, dice0 = 0.02493, cross0 = 0.0244, kl0 = 0.0028, exclusion0 = 0.0282, dice1 = 0.06006, cross1 = 0.0550, kl1 = 0.0121, exclusion1 = 0.0721
1.1673938
Epoch: [ 49] [100/4000] time: 28437.2671, net0_loss = 0.12010, net0_acc = 0.9839, net0_test_acc = 0.8838, net1_loss = 0.06484, net1_acc = 0.9919, net1_test_acc = 0.9875
Epoch: [ 49] [100/4000] time: 28437.2672, dice0 = 0.04478, cross0 = 0.0411, kl0 = 0.0087, exclusion0 = 0.0597, dice1 = 0.02556, cross1 = 0.0215, kl1 = 0.0057, exclusion1 = 0.0299
1.2164536
Epoch: [ 49] [150/4000] time: 28444.6635, net0_loss = 0.30650, net0_acc = 0.9458, net0_test_acc = 0.9283, net1_loss = 0.19994, net1_acc = 0.9656, net1_test_acc = 0.9896
Epoch: [ 49] [150/4000] time: 28444.6636, dice0 = 0.11584, cross0 = 0.1282, kl0 = 0.0179, exclusion0 = 0.1070, dice1 = 0.07890, cross1 = 0.0782, kl1 = 0.0092, exclusion1 = 0.0765
1.3004632
Epoch: [ 49] [200/4000] time: 28452.0732, net0_loss = 0.11586, net0_acc = 0.9828, net0_test_acc = 0.9031, net1_loss = 0.04182, net1_acc = 0.9948, net1_test_acc = 0.9107
Epoch: [ 49] [200/4000] time: 28452.0733, dice0 = 0.04305, cross0 = 0.0439, kl0 = 0.0084, exclusion0 = 0.0495, dice1 = 0.01708, cross1 = 0.0133, kl1 = 0.0018, exclusion1 = 0.0211
1.1750419
Epoch: [ 49] [250/4000] time: 28459.4850, net0_loss = 0.09076, net0_acc = 0.9845, net0_test_acc = 0.9678, net1_loss = 0.06346, net1_acc = 0.9894, net1_test_acc = 0.9610
Epoch: [ 49] [250/4000] time: 28459.4851, dice0 = 0.03558, cross0 = 0.0402, kl0 = 0.0019, exclusion0 = 0.0281, dice1 = 0.02480, cross1 = 0.0277, kl1 = 0.0020, exclusion1 = 0.0200
1.2471037
Epoch: [ 49] [300/4000] time: 28466.8676, net0_loss = 0.14943, net0_acc = 0.9747, net0_test_acc = 0.7468, net1_loss = 0.17794, net1_acc = 0.9704, net1_test_acc = 0.9003
Epoch: [ 49] [300/4000] time: 28466.8676, dice0 = 0.05883, cross0 = 0.0655, kl0 = 0.0033, exclusion0 = 0.0469, dice1 = 0.06678, cross1 = 0.0818, kl1 = 0.0065, exclusion1 = 0.0523
1.1225889
Epoch: [ 49] [350/4000] time: 28474.1590, net0_loss = 0.05972, net0_acc = 0.9913, net0_test_acc = 0.8379, net1_loss = 0.10070, net1_acc = 0.9854, net1_test_acc = 0.8270
Epoch: [ 49] [350/4000] time: 28474.1592, dice0 = 0.02389, cross0 = 0.0211, kl0 = 0.0030, exclusion0 = 0.0265, dice1 = 0.03751, cross1 = 0.0374, kl1 = 0.0097, exclusion1 = 0.0419
1.1975694
Epoch: [ 49] [400/4000] time: 28481.6604, net0_loss = 0.19972, net0_acc = 0.9674, net0_test_acc = 0.9860, net1_loss = 0.06609, net1_acc = 0.9899, net1_test_acc = 0.9679
Epoch: [ 49] [400/4000] time: 28481.6605, dice0 = 0.07604, cross0 = 0.0813, kl0 = 0.0115, exclusion0 = 0.0733, dice1 = 0.02608, cross1 = 0.0263, kl1 = 0.0022, exclusion1 = 0.0252
1.358375
Epoch: [ 49] [450/4000] time: 28489.1342, net0_loss = 0.17289, net0_acc = 0.9727, net0_test_acc = 0.9355, net1_loss = 0.06032, net1_acc = 0.9916, net1_test_acc = 0.9419
Epoch: [ 49] [450/4000] time: 28489.1343, dice0 = 0.06420, cross0 = 0.0791, kl0 = 0.0061, exclusion0 = 0.0530, dice1 = 0.02381, cross1 = 0.0241, kl1 = 0.0021, exclusion1 = 0.0228
1.3462026
Epoch: [ 49] [500/4000] time: 28496.5945, net0_loss = 0.08448, net0_acc = 0.9863, net0_test_acc = 0.9393, net1_loss = 0.27539, net1_acc = 0.9526, net1_test_acc = 0.9823
Epoch: [ 49] [500/4000] time: 28496.5946, dice0 = 0.03156, cross0 = 0.0395, kl0 = 0.0026, exclusion0 = 0.0243, dice1 = 0.10009, cross1 = 0.1335, kl1 = 0.0101, exclusion1 = 0.0735
1.2025257
Epoch: [ 49] [550/4000] time: 28503.9461, net0_loss = 0.13859, net0_acc = 0.9766, net0_test_acc = 0.9081, net1_loss = 0.26970, net1_acc = 0.9548, net1_test_acc = 0.9765
Epoch: [ 49] [550/4000] time: 28503.9461, dice0 = 0.05223, cross0 = 0.0664, kl0 = 0.0025, exclusion0 = 0.0373, dice1 = 0.09886, cross1 = 0.1267, kl1 = 0.0087, exclusion1 = 0.0796
1.2678
Epoch: [ 49] [600/4000] time: 28511.3650, net0_loss = 0.14925, net0_acc = 0.9741, net0_test_acc = 0.9525, net1_loss = 0.27576, net1_acc = 0.9619, net1_test_acc = 0.9329
Epoch: [ 49] [600/4000] time: 28511.3651, dice0 = 0.05733, cross0 = 0.0687, kl0 = 0.0046, exclusion0 = 0.0419, dice1 = 0.09449, cross1 = 0.0877, kl1 = 0.0431, exclusion1 = 0.1440
1.1247318
Epoch: [ 49] [650/4000] time: 28518.8139, net0_loss = 0.05237, net0_acc = 0.9919, net0_test_acc = 0.9471, net1_loss = 0.26501, net1_acc = 0.9574, net1_test_acc = 0.9411
Epoch: [ 49] [650/4000] time: 28518.8140, dice0 = 0.02075, cross0 = 0.0210, kl0 = 0.0017, exclusion0 = 0.0196, dice1 = 0.09115, cross1 = 0.1197, kl1 = 0.0213, exclusion1 = 0.0870
1.2580389
Epoch: [ 49] [700/4000] time: 28526.2002, net0_loss = 0.19490, net0_acc = 0.9681, net0_test_acc = 0.9730, net1_loss = 0.10688, net1_acc = 0.9838, net1_test_acc = 0.9350
Epoch: [ 49] [700/4000] time: 28526.2003, dice0 = 0.07241, cross0 = 0.0877, kl0 = 0.0056, exclusion0 = 0.0641, dice1 = 0.04035, cross1 = 0.0374, kl1 = 0.0118, exclusion1 = 0.0466
1.212716
Epoch: [ 49] [750/4000] time: 28533.6060, net0_loss = 0.09872, net0_acc = 0.9859, net0_test_acc = 0.7460, net1_loss = 0.11142, net1_acc = 0.9834, net1_test_acc = 0.9494
Epoch: [ 49] [750/4000] time: 28533.6061, dice0 = 0.03811, cross0 = 0.0331, kl0 = 0.0064, exclusion0 = 0.0485, dice1 = 0.04444, cross1 = 0.0407, kl1 = 0.0046, exclusion1 = 0.0480
1.2048753
Epoch: [ 49] [800/4000] time: 28541.0541, net0_loss = 0.15478, net0_acc = 0.9785, net0_test_acc = 0.9032, net1_loss = 0.19734, net1_acc = 0.9686, net1_test_acc = 0.8087
Epoch: [ 49] [800/4000] time: 28541.0542, dice0 = 0.05606, cross0 = 0.0541, kl0 = 0.0132, exclusion0 = 0.0761, dice1 = 0.07556, cross1 = 0.0764, kl1 = 0.0112, exclusion1 = 0.0795
1.1454237
Epoch: [ 49] [850/4000] time: 28548.4963, net0_loss = 0.28061, net0_acc = 0.9510, net0_test_acc = 0.8844, net1_loss = 0.08268, net1_acc = 0.9880, net1_test_acc = 0.9638
Epoch: [ 49] [850/4000] time: 28548.4964, dice0 = 0.10227, cross0 = 0.1346, kl0 = 0.0116, exclusion0 = 0.0759, dice1 = 0.03311, cross1 = 0.0298, kl1 = 0.0033, exclusion1 = 0.0362
1.2290678
Epoch: [ 49] [900/4000] time: 28555.9065, net0_loss = 0.08167, net0_acc = 0.9891, net0_test_acc = 0.9418, net1_loss = 0.10196, net1_acc = 0.9855, net1_test_acc = 0.9793
Epoch: [ 49] [900/4000] time: 28555.9066, dice0 = 0.03263, cross0 = 0.0267, kl0 = 0.0045, exclusion0 = 0.0402, dice1 = 0.04154, cross1 = 0.0345, kl1 = 0.0054, exclusion1 = 0.0464
1.256877
Epoch: [ 49] [950/4000] time: 28563.3006, net0_loss = 0.08682, net0_acc = 0.9853, net0_test_acc = 0.9122, net1_loss = 0.19201, net1_acc = 0.9679, net1_test_acc = 0.9632
Epoch: [ 49] [950/4000] time: 28563.3007, dice0 = 0.03489, cross0 = 0.0357, kl0 = 0.0031, exclusion0 = 0.0293, dice1 = 0.07299, cross1 = 0.0842, kl1 = 0.0082, exclusion1 = 0.0614
1.1692115
Epoch: [ 49] [1000/4000] time: 28570.6099, net0_loss = 0.16406, net0_acc = 0.9734, net0_test_acc = 0.9548, net1_loss = 0.20204, net1_acc = 0.9672, net1_test_acc = 0.8975
Epoch: [ 49] [1000/4000] time: 28570.6100, dice0 = 0.06226, cross0 = 0.0704, kl0 = 0.0071, exclusion0 = 0.0557, dice1 = 0.07480, cross1 = 0.0920, kl1 = 0.0091, exclusion1 = 0.0614
1.1547725
Epoch: [ 49] [1050/4000] time: 28578.1368, net0_loss = 0.11804, net0_acc = 0.9826, net0_test_acc = 0.7660, net1_loss = 0.09745, net1_acc = 0.9846, net1_test_acc = 0.8163
Epoch: [ 49] [1050/4000] time: 28578.1369, dice0 = 0.04747, cross0 = 0.0426, kl0 = 0.0038, exclusion0 = 0.0521, dice1 = 0.03788, cross1 = 0.0400, kl1 = 0.0030, exclusion1 = 0.0361
1.2157837
Epoch: [ 49] [1100/4000] time: 28585.5925, net0_loss = 0.11722, net0_acc = 0.9789, net0_test_acc = 0.8077, net1_loss = 0.19746, net1_acc = 0.9685, net1_test_acc = 0.8392
Epoch: [ 49] [1100/4000] time: 28585.5925, dice0 = 0.04641, cross0 = 0.0525, kl0 = 0.0023, exclusion0 = 0.0343, dice1 = 0.06657, cross1 = 0.1125, kl1 = 0.0024, exclusion1 = 0.0344
1.1332861
Epoch: [ 49] [1150/4000] time: 28593.0322, net0_loss = 0.08471, net0_acc = 0.9878, net0_test_acc = 0.9803, net1_loss = 0.08783, net1_acc = 0.9858, net1_test_acc = 0.9511
Epoch: [ 49] [1150/4000] time: 28593.0323, dice0 = 0.03314, cross0 = 0.0324, kl0 = 0.0037, exclusion0 = 0.0346, dice1 = 0.03340, cross1 = 0.0337, kl1 = 0.0057, exclusion1 = 0.0358
1.1294765
Epoch: [ 49] [1200/4000] time: 28600.4558, net0_loss = 0.19960, net0_acc = 0.9646, net0_test_acc = 0.9904, net1_loss = 0.17342, net1_acc = 0.9755, net1_test_acc = 0.9477
Epoch: [ 49] [1200/4000] time: 28600.4558, dice0 = 0.07502, cross0 = 0.0913, kl0 = 0.0080, exclusion0 = 0.0585, dice1 = 0.05849, cross1 = 0.0647, kl1 = 0.0223, exclusion1 = 0.0781
1.1516409
Epoch: [ 49] [1250/4000] time: 28607.8554, net0_loss = 0.13094, net0_acc = 0.9784, net0_test_acc = 0.9513, net1_loss = 0.16214, net1_acc = 0.9734, net1_test_acc = 0.8134
Epoch: [ 49] [1250/4000] time: 28607.8555, dice0 = 0.04842, cross0 = 0.0635, kl0 = 0.0045, exclusion0 = 0.0335, dice1 = 0.06195, cross1 = 0.0695, kl1 = 0.0066, exclusion1 = 0.0548
1.1470388
Epoch: [ 49] [1300/4000] time: 28615.2570, net0_loss = 0.16733, net0_acc = 0.9707, net0_test_acc = 0.9799, net1_loss = 0.15416, net1_acc = 0.9711, net1_test_acc = 0.9074
Epoch: [ 49] [1300/4000] time: 28615.2571, dice0 = 0.06500, cross0 = 0.0697, kl0 = 0.0070, exclusion0 = 0.0582, dice1 = 0.05889, cross1 = 0.0790, kl1 = 0.0016, exclusion1 = 0.0310
1.2222359
Epoch: [ 49] [1350/4000] time: 28622.6670, net0_loss = 0.13487, net0_acc = 0.9777, net0_test_acc = 0.9757, net1_loss = 0.14935, net1_acc = 0.9767, net1_test_acc = 0.9673
Epoch: [ 49] [1350/4000] time: 28622.6671, dice0 = 0.05109, cross0 = 0.0548, kl0 = 0.0075, exclusion0 = 0.0504, dice1 = 0.05969, cross1 = 0.0573, kl1 = 0.0060, exclusion1 = 0.0587
1.2232491
Epoch: [ 49] [1400/4000] time: 28630.0689, net0_loss = 0.09078, net0_acc = 0.9862, net0_test_acc = 0.9394, net1_loss = 0.24674, net1_acc = 0.9577, net1_test_acc = 0.9776
Epoch: [ 49] [1400/4000] time: 28630.0690, dice0 = 0.03633, cross0 = 0.0329, kl0 = 0.0047, exclusion0 = 0.0383, dice1 = 0.09006, cross1 = 0.1183, kl1 = 0.0092, exclusion1 = 0.0674
1.17975
Epoch: [ 49] [1450/4000] time: 28637.4215, net0_loss = 0.26980, net0_acc = 0.9495, net0_test_acc = 0.8535, net1_loss = 0.11610, net1_acc = 0.9810, net1_test_acc = 0.9525
Epoch: [ 49] [1450/4000] time: 28637.4215, dice0 = 0.10250, cross0 = 0.1148, kl0 = 0.0128, exclusion0 = 0.0923, dice1 = 0.04633, cross1 = 0.0458, kl1 = 0.0051, exclusion1 = 0.0429
1.1231182
Epoch: [ 49] [1500/4000] time: 28644.8978, net0_loss = 0.13321, net0_acc = 0.9799, net0_test_acc = 0.8944, net1_loss = 0.18384, net1_acc = 0.9722, net1_test_acc = 0.9612
Epoch: [ 49] [1500/4000] time: 28644.8978, dice0 = 0.05366, cross0 = 0.0470, kl0 = 0.0050, exclusion0 = 0.0601, dice1 = 0.07290, cross1 = 0.0640, kl1 = 0.0105, exclusion1 = 0.0833
1.114105
Epoch: [ 49] [1550/4000] time: 28652.2822, net0_loss = 0.12121, net0_acc = 0.9814, net0_test_acc = 0.9685, net1_loss = 0.38150, net1_acc = 0.9506, net1_test_acc = 0.9472
Epoch: [ 49] [1550/4000] time: 28652.2823, dice0 = 0.04436, cross0 = 0.0524, kl0 = 0.0073, exclusion0 = 0.0417, dice1 = 0.10729, cross1 = 0.2345, kl1 = 0.0125, exclusion1 = 0.0670
1.1106808
Epoch: [ 49] [1600/4000] time: 28659.7022, net0_loss = 0.21133, net0_acc = 0.9642, net0_test_acc = 0.9145, net1_loss = 0.13617, net1_acc = 0.9771, net1_test_acc = 0.9727
Epoch: [ 49] [1600/4000] time: 28659.7022, dice0 = 0.07748, cross0 = 0.0994, kl0 = 0.0094, exclusion0 = 0.0595, dice1 = 0.05354, cross1 = 0.0562, kl1 = 0.0046, exclusion1 = 0.0483
1.099288
Epoch: [ 49] [1650/4000] time: 28667.1053, net0_loss = 0.24715, net0_acc = 0.9547, net0_test_acc = 0.9807, net1_loss = 0.07743, net1_acc = 0.9872, net1_test_acc = 0.9530
Epoch: [ 49] [1650/4000] time: 28667.1054, dice0 = 0.09407, cross0 = 0.1103, kl0 = 0.0116, exclusion0 = 0.0740, dice1 = 0.03069, cross1 = 0.0297, kl1 = 0.0034, exclusion1 = 0.0306
1.1689866
Epoch: [ 49] [1700/4000] time: 28674.5054, net0_loss = 0.05121, net0_acc = 0.9932, net0_test_acc = 0.7383, net1_loss = 0.03944, net1_acc = 0.9952, net1_test_acc = 0.9167
Epoch: [ 49] [1700/4000] time: 28674.5055, dice0 = 0.02003, cross0 = 0.0172, kl0 = 0.0026, exclusion0 = 0.0254, dice1 = 0.01570, cross1 = 0.0133, kl1 = 0.0020, exclusion1 = 0.0189
1.1494277
Epoch: [ 49] [1750/4000] time: 28681.8818, net0_loss = 0.09272, net0_acc = 0.9839, net0_test_acc = 0.9541, net1_loss = 0.11136, net1_acc = 0.9822, net1_test_acc = 0.9485
Epoch: [ 49] [1750/4000] time: 28681.8819, dice0 = 0.03630, cross0 = 0.0389, kl0 = 0.0040, exclusion0 = 0.0311, dice1 = 0.04297, cross1 = 0.0438, kl1 = 0.0056, exclusion1 = 0.0435
1.1197734
Epoch: [ 49] [1800/4000] time: 28689.3100, net0_loss = 0.29152, net0_acc = 0.9507, net0_test_acc = 0.9379, net1_loss = 0.24948, net1_acc = 0.9586, net1_test_acc = 0.9573
Epoch: [ 49] [1800/4000] time: 28689.3101, dice0 = 0.09665, cross0 = 0.1429, kl0 = 0.0217, exclusion0 = 0.0823, dice1 = 0.08777, cross1 = 0.1233, kl1 = 0.0130, exclusion1 = 0.0638
1.178433
Epoch: [ 49] [1850/4000] time: 28696.7608, net0_loss = 0.17858, net0_acc = 0.9712, net0_test_acc = 0.9395, net1_loss = 0.04375, net1_acc = 0.9943, net1_test_acc = 0.9314
Epoch: [ 49] [1850/4000] time: 28696.7608, dice0 = 0.06655, cross0 = 0.0703, kl0 = 0.0128, exclusion0 = 0.0706, dice1 = 0.01802, cross1 = 0.0160, kl1 = 0.0011, exclusion1 = 0.0183
1.0661048
Epoch: [ 49] [1900/4000] time: 28704.2523, net0_loss = 0.18286, net0_acc = 0.9734, net0_test_acc = 0.8256, net1_loss = 0.19908, net1_acc = 0.9677, net1_test_acc = 0.9417
Epoch: [ 49] [1900/4000] time: 28704.2523, dice0 = 0.05786, cross0 = 0.1061, kl0 = 0.0047, exclusion0 = 0.0330, dice1 = 0.07845, cross1 = 0.0811, kl1 = 0.0068, exclusion1 = 0.0723
1.0989268
Epoch: [ 49] [1950/4000] time: 28711.6760, net0_loss = 0.14240, net0_acc = 0.9748, net0_test_acc = 0.8957, net1_loss = 0.11027, net1_acc = 0.9809, net1_test_acc = 0.9399
Epoch: [ 49] [1950/4000] time: 28711.6760, dice0 = 0.05537, cross0 = 0.0622, kl0 = 0.0031, exclusion0 = 0.0466, dice1 = 0.04216, cross1 = 0.0495, kl1 = 0.0043, exclusion1 = 0.0329
1.1541638
Epoch: [ 49] [2000/4000] time: 28719.0653, net0_loss = 0.20671, net0_acc = 0.9635, net0_test_acc = 0.9679, net1_loss = 0.16420, net1_acc = 0.9717, net1_test_acc = 0.9246
Epoch: [ 49] [2000/4000] time: 28719.0654, dice0 = 0.07894, cross0 = 0.0898, kl0 = 0.0098, exclusion0 = 0.0661, dice1 = 0.06330, cross1 = 0.0749, kl1 = 0.0054, exclusion1 = 0.0467
1.1000959
Epoch: [ 49] [2050/4000] time: 28726.4701, net0_loss = 0.07653, net0_acc = 0.9885, net0_test_acc = 0.8287, net1_loss = 0.15214, net1_acc = 0.9781, net1_test_acc = 0.9386
Epoch: [ 49] [2050/4000] time: 28726.4701, dice0 = 0.02972, cross0 = 0.0278, kl0 = 0.0040, exclusion0 = 0.0339, dice1 = 0.06021, cross1 = 0.0551, kl1 = 0.0061, exclusion1 = 0.0675
1.1760186
Epoch: [ 49] [2100/4000] time: 28733.9184, net0_loss = 0.22858, net0_acc = 0.9622, net0_test_acc = 0.9719, net1_loss = 0.31787, net1_acc = 0.9479, net1_test_acc = 0.9584
Epoch: [ 49] [2100/4000] time: 28733.9184, dice0 = 0.07653, cross0 = 0.1167, kl0 = 0.0131, exclusion0 = 0.0577, dice1 = 0.11564, cross1 = 0.1462, kl1 = 0.0101, exclusion1 = 0.1020
1.1067113
Epoch: [ 49] [2150/4000] time: 28741.2807, net0_loss = 0.10109, net0_acc = 0.9819, net0_test_acc = 0.9484, net1_loss = 0.07206, net1_acc = 0.9888, net1_test_acc = 0.9905
Epoch: [ 49] [2150/4000] time: 28741.2809, dice0 = 0.03863, cross0 = 0.0475, kl0 = 0.0027, exclusion0 = 0.0273, dice1 = 0.02954, cross1 = 0.0261, kl1 = 0.0018, exclusion1 = 0.0309
1.0674293
Epoch: [ 49] [2200/4000] time: 28748.7299, net0_loss = 0.15230, net0_acc = 0.9747, net0_test_acc = 0.9617, net1_loss = 0.04019, net1_acc = 0.9954, net1_test_acc = 0.9148
Epoch: [ 49] [2200/4000] time: 28748.7300, dice0 = 0.05832, cross0 = 0.0641, kl0 = 0.0061, exclusion0 = 0.0535, dice1 = 0.01666, cross1 = 0.0123, kl1 = 0.0011, exclusion1 = 0.0214
1.1116928
Epoch: [ 49] [2250/4000] time: 28756.1105, net0_loss = 0.07364, net0_acc = 0.9893, net0_test_acc = 0.8630, net1_loss = 0.03974, net1_acc = 0.9951, net1_test_acc = 0.9032
Epoch: [ 49] [2250/4000] time: 28756.1105, dice0 = 0.02997, cross0 = 0.0267, kl0 = 0.0026, exclusion0 = 0.0314, dice1 = 0.01524, cross1 = 0.0149, kl1 = 0.0022, exclusion1 = 0.0170
1.1733439
Epoch: [ 49] [2300/4000] time: 28763.5194, net0_loss = 0.14693, net0_acc = 0.9741, net0_test_acc = 0.8251, net1_loss = 0.12368, net1_acc = 0.9805, net1_test_acc = 0.9633
Epoch: [ 49] [2300/4000] time: 28763.5195, dice0 = 0.05709, cross0 = 0.0667, kl0 = 0.0047, exclusion0 = 0.0415, dice1 = 0.04810, cross1 = 0.0507, kl1 = 0.0050, exclusion1 = 0.0447
1.1338035
Epoch: [ 49] [2350/4000] time: 28770.9425, net0_loss = 0.23664, net0_acc = 0.9620, net0_test_acc = 0.9804, net1_loss = 0.13496, net1_acc = 0.9792, net1_test_acc = 0.8972
Epoch: [ 49] [2350/4000] time: 28770.9425, dice0 = 0.08363, cross0 = 0.1162, kl0 = 0.0092, exclusion0 = 0.0644, dice1 = 0.04944, cross1 = 0.0515, kl1 = 0.0136, exclusion1 = 0.0544
1.2126094
Epoch: [ 49] [2400/4000] time: 28778.3720, net0_loss = 0.17053, net0_acc = 0.9753, net0_test_acc = 0.9584, net1_loss = 0.06187, net1_acc = 0.9922, net1_test_acc = 0.9610
Epoch: [ 49] [2400/4000] time: 28778.3721, dice0 = 0.06086, cross0 = 0.0683, kl0 = 0.0133, exclusion0 = 0.0695, dice1 = 0.02543, cross1 = 0.0193, kl1 = 0.0029, exclusion1 = 0.0313
1.2861488
Epoch: [ 49] [2450/4000] time: 28785.7852, net0_loss = 0.07577, net0_acc = 0.9898, net0_test_acc = 0.8877, net1_loss = 0.31485, net1_acc = 0.9468, net1_test_acc = 0.9167
Epoch: [ 49] [2450/4000] time: 28785.7854, dice0 = 0.03001, cross0 = 0.0261, kl0 = 0.0030, exclusion0 = 0.0363, dice1 = 0.11863, cross1 = 0.1398, kl1 = 0.0112, exclusion1 = 0.1018
1.199276
Epoch: [ 49] [2500/4000] time: 28793.2246, net0_loss = 0.06930, net0_acc = 0.9895, net0_test_acc = 0.9552, net1_loss = 0.16428, net1_acc = 0.9701, net1_test_acc = 0.8940
Epoch: [ 49] [2500/4000] time: 28793.2247, dice0 = 0.02749, cross0 = 0.0270, kl0 = 0.0020, exclusion0 = 0.0276, dice1 = 0.06319, cross1 = 0.0797, kl1 = 0.0022, exclusion1 = 0.0406
1.15168
Epoch: [ 49] [2550/4000] time: 28800.6486, net0_loss = 0.16166, net0_acc = 0.9688, net0_test_acc = 0.9688, net1_loss = 0.15962, net1_acc = 0.9733, net1_test_acc = 0.9488
Epoch: [ 49] [2550/4000] time: 28800.6486, dice0 = 0.06273, cross0 = 0.0786, kl0 = 0.0029, exclusion0 = 0.0378, dice1 = 0.06124, cross1 = 0.0708, kl1 = 0.0051, exclusion1 = 0.0499
1.1724818
Epoch: [ 49] [2600/4000] time: 28808.0355, net0_loss = 0.20362, net0_acc = 0.9699, net0_test_acc = 0.9544, net1_loss = 0.11251, net1_acc = 0.9833, net1_test_acc = 0.9410
Epoch: [ 49] [2600/4000] time: 28808.0355, dice0 = 0.07981, cross0 = 0.0715, kl0 = 0.0119, exclusion0 = 0.0926, dice1 = 0.04434, cross1 = 0.0385, kl1 = 0.0057, exclusion1 = 0.0537
1.096319
Epoch: [ 49] [2650/4000] time: 28815.3630, net0_loss = 0.12723, net0_acc = 0.9801, net0_test_acc = 0.9467, net1_loss = 0.07885, net1_acc = 0.9880, net1_test_acc = 0.7792
Epoch: [ 49] [2650/4000] time: 28815.3630, dice0 = 0.04581, cross0 = 0.0572, kl0 = 0.0064, exclusion0 = 0.0420, dice1 = 0.03237, cross1 = 0.0298, kl1 = 0.0016, exclusion1 = 0.0318
1.1446292
Epoch: [ 49] [2700/4000] time: 28822.8462, net0_loss = 0.11338, net0_acc = 0.9823, net0_test_acc = 0.8557, net1_loss = 0.18741, net1_acc = 0.9721, net1_test_acc = 0.9073
Epoch: [ 49] [2700/4000] time: 28822.8464, dice0 = 0.04360, cross0 = 0.0389, kl0 = 0.0091, exclusion0 = 0.0526, dice1 = 0.06684, cross1 = 0.0751, kl1 = 0.0176, exclusion1 = 0.0735
1.2025367
Epoch: [ 49] [2750/4000] time: 28830.3590, net0_loss = 0.18067, net0_acc = 0.9718, net0_test_acc = 0.9332, net1_loss = 0.18851, net1_acc = 0.9657, net1_test_acc = 0.8283
Epoch: [ 49] [2750/4000] time: 28830.3591, dice0 = 0.06568, cross0 = 0.0789, kl0 = 0.0101, exclusion0 = 0.0622, dice1 = 0.07123, cross1 = 0.0915, kl1 = 0.0051, exclusion1 = 0.0463
1.1971537
Epoch: [ 49] [2800/4000] time: 28837.7766, net0_loss = 0.06697, net0_acc = 0.9895, net0_test_acc = 0.9392, net1_loss = 0.12485, net1_acc = 0.9777, net1_test_acc = 0.9294
Epoch: [ 49] [2800/4000] time: 28837.7766, dice0 = 0.02741, cross0 = 0.0243, kl0 = 0.0023, exclusion0 = 0.0282, dice1 = 0.04872, cross1 = 0.0558, kl1 = 0.0030, exclusion1 = 0.0378
1.1476476
Epoch: [ 49] [2850/4000] time: 28845.2027, net0_loss = 0.06750, net0_acc = 0.9911, net0_test_acc = 0.9138, net1_loss = 0.12731, net1_acc = 0.9782, net1_test_acc = 0.9365
Epoch: [ 49] [2850/4000] time: 28845.2028, dice0 = 0.02412, cross0 = 0.0285, kl0 = 0.0035, exclusion0 = 0.0263, dice1 = 0.04567, cross1 = 0.0669, kl1 = 0.0036, exclusion1 = 0.0259
1.1361074
Epoch: [ 49] [2900/4000] time: 28852.6082, net0_loss = 0.21341, net0_acc = 0.9684, net0_test_acc = 0.9724, net1_loss = 0.14516, net1_acc = 0.9785, net1_test_acc = 0.9358
Epoch: [ 49] [2900/4000] time: 28852.6083, dice0 = 0.08444, cross0 = 0.0772, kl0 = 0.0096, exclusion0 = 0.0939, dice1 = 0.05317, cross1 = 0.0539, kl1 = 0.0133, exclusion1 = 0.0628
1.1886529
Epoch: [ 49] [2950/4000] time: 28860.0009, net0_loss = 0.28451, net0_acc = 0.9568, net0_test_acc = 0.9261, net1_loss = 0.12189, net1_acc = 0.9810, net1_test_acc = 0.8578
Epoch: [ 49] [2950/4000] time: 28860.0009, dice0 = 0.09873, cross0 = 0.1430, kl0 = 0.0104, exclusion0 = 0.0751, dice1 = 0.04759, cross1 = 0.0464, kl1 = 0.0061, exclusion1 = 0.0498
1.2388891
Epoch: [ 49] [3000/4000] time: 28867.4036, net0_loss = 0.33260, net0_acc = 0.9474, net0_test_acc = 0.9494, net1_loss = 0.06024, net1_acc = 0.9910, net1_test_acc = 0.9810
Epoch: [ 49] [3000/4000] time: 28867.4037, dice0 = 0.10973, cross0 = 0.1568, kl0 = 0.0282, exclusion0 = 0.1040, dice1 = 0.02366, cross1 = 0.0232, kl1 = 0.0030, exclusion1 = 0.0238
1.2529774
Epoch: [ 49] [3050/4000] time: 28874.8641, net0_loss = 0.13994, net0_acc = 0.9790, net0_test_acc = 0.8748, net1_loss = 0.27146, net1_acc = 0.9536, net1_test_acc = 0.8337
Epoch: [ 49] [3050/4000] time: 28874.8641, dice0 = 0.04985, cross0 = 0.0615, kl0 = 0.0093, exclusion0 = 0.0478, dice1 = 0.10220, cross1 = 0.1194, kl1 = 0.0118, exclusion1 = 0.0879
1.1776534
Epoch: [ 49] [3100/4000] time: 28882.2935, net0_loss = 0.04353, net0_acc = 0.9942, net0_test_acc = 0.9288, net1_loss = 0.08401, net1_acc = 0.9864, net1_test_acc = 0.8979
Epoch: [ 49] [3100/4000] time: 28882.2935, dice0 = 0.01657, cross0 = 0.0177, kl0 = 0.0014, exclusion0 = 0.0170, dice1 = 0.03164, cross1 = 0.0368, kl1 = 0.0034, exclusion1 = 0.0278
1.1526908
Epoch: [ 49] [3150/4000] time: 28889.6969, net0_loss = 0.18217, net0_acc = 0.9723, net0_test_acc = 0.9572, net1_loss = 0.12455, net1_acc = 0.9793, net1_test_acc = 0.9429
Epoch: [ 49] [3150/4000] time: 28889.6970, dice0 = 0.06790, cross0 = 0.0667, kl0 = 0.0162, exclusion0 = 0.0790, dice1 = 0.04671, cross1 = 0.0574, kl1 = 0.0053, exclusion1 = 0.0355
1.1575032
Epoch: [ 49] [3200/4000] time: 28897.0898, net0_loss = 0.10452, net0_acc = 0.9816, net0_test_acc = 0.9269, net1_loss = 0.14519, net1_acc = 0.9767, net1_test_acc = 0.9899
Epoch: [ 49] [3200/4000] time: 28897.0898, dice0 = 0.04332, cross0 = 0.0396, kl0 = 0.0028, exclusion0 = 0.0404, dice1 = 0.05760, cross1 = 0.0530, kl1 = 0.0071, exclusion1 = 0.0620
1.2200991
Epoch: [ 49] [3250/4000] time: 28904.5142, net0_loss = 0.11687, net0_acc = 0.9816, net0_test_acc = 0.9459, net1_loss = 0.17908, net1_acc = 0.9748, net1_test_acc = 0.8010
Epoch: [ 49] [3250/4000] time: 28904.5143, dice0 = 0.04544, cross0 = 0.0468, kl0 = 0.0051, exclusion0 = 0.0441, dice1 = 0.05763, cross1 = 0.0968, kl1 = 0.0070, exclusion1 = 0.0422
1.2632935
Epoch: [ 49] [3300/4000] time: 28911.8890, net0_loss = 0.11529, net0_acc = 0.9863, net0_test_acc = 0.8831, net1_loss = 0.09022, net1_acc = 0.9859, net1_test_acc = 0.9865
Epoch: [ 49] [3300/4000] time: 28911.8890, dice0 = 0.03114, cross0 = 0.0617, kl0 = 0.0091, exclusion0 = 0.0358, dice1 = 0.03711, cross1 = 0.0345, kl1 = 0.0017, exclusion1 = 0.0356
1.1975801
Epoch: [ 49] [3350/4000] time: 28919.3082, net0_loss = 0.22393, net0_acc = 0.9614, net0_test_acc = 0.9572, net1_loss = 0.08075, net1_acc = 0.9865, net1_test_acc = 0.8999
Epoch: [ 49] [3350/4000] time: 28919.3083, dice0 = 0.08749, cross0 = 0.0953, kl0 = 0.0069, exclusion0 = 0.0753, dice1 = 0.03345, cross1 = 0.0321, kl1 = 0.0014, exclusion1 = 0.0290
1.1751004
Epoch: [ 49] [3400/4000] time: 28926.7636, net0_loss = 0.16292, net0_acc = 0.9721, net0_test_acc = 0.8331, net1_loss = 0.12807, net1_acc = 0.9783, net1_test_acc = 0.9049
Epoch: [ 49] [3400/4000] time: 28926.7637, dice0 = 0.06293, cross0 = 0.0710, kl0 = 0.0055, exclusion0 = 0.0525, dice1 = 0.05106, cross1 = 0.0529, kl1 = 0.0034, exclusion1 = 0.0449
1.1685588
Epoch: [ 49] [3450/4000] time: 28934.1530, net0_loss = 0.14053, net0_acc = 0.9785, net0_test_acc = 0.9214, net1_loss = 0.19151, net1_acc = 0.9682, net1_test_acc = 0.8373
Epoch: [ 49] [3450/4000] time: 28934.1530, dice0 = 0.05168, cross0 = 0.0515, kl0 = 0.0113, exclusion0 = 0.0634, dice1 = 0.06517, cross1 = 0.1019, kl1 = 0.0072, exclusion1 = 0.0418
1.1855665
Epoch: [ 49] [3500/4000] time: 28941.5820, net0_loss = 0.12342, net0_acc = 0.9787, net0_test_acc = 0.8845, net1_loss = 0.09230, net1_acc = 0.9860, net1_test_acc = 0.8884
Epoch: [ 49] [3500/4000] time: 28941.5821, dice0 = 0.04658, cross0 = 0.0518, kl0 = 0.0076, exclusion0 = 0.0426, dice1 = 0.03529, cross1 = 0.0377, kl1 = 0.0042, exclusion1 = 0.0343
1.1525564
Epoch: [ 49] [3550/4000] time: 28948.9975, net0_loss = 0.15386, net0_acc = 0.9739, net0_test_acc = 0.9321, net1_loss = 0.12074, net1_acc = 0.9807, net1_test_acc = 0.9197
Epoch: [ 49] [3550/4000] time: 28948.9975, dice0 = 0.05500, cross0 = 0.0761, kl0 = 0.0073, exclusion0 = 0.0382, dice1 = 0.04764, cross1 = 0.0501, kl1 = 0.0028, exclusion1 = 0.0433
1.213392
Epoch: [ 49] [3600/4000] time: 28956.4239, net0_loss = 0.09861, net0_acc = 0.9863, net0_test_acc = 0.9215, net1_loss = 0.12526, net1_acc = 0.9786, net1_test_acc = 0.9285
Epoch: [ 49] [3600/4000] time: 28956.4239, dice0 = 0.03733, cross0 = 0.0347, kl0 = 0.0075, exclusion0 = 0.0457, dice1 = 0.04605, cross1 = 0.0567, kl1 = 0.0072, exclusion1 = 0.0377
1.1674485
Epoch: [ 49] [3650/4000] time: 28963.8526, net0_loss = 0.34671, net0_acc = 0.9452, net0_test_acc = 0.9366, net1_loss = 0.11848, net1_acc = 0.9787, net1_test_acc = 0.9426
Epoch: [ 49] [3650/4000] time: 28963.8527, dice0 = 0.11028, cross0 = 0.2029, kl0 = 0.0083, exclusion0 = 0.0588, dice1 = 0.04663, cross1 = 0.0532, kl1 = 0.0025, exclusion1 = 0.0348
1.2576656
Epoch: [ 49] [3700/4000] time: 28971.2378, net0_loss = 0.07753, net0_acc = 0.9865, net0_test_acc = 0.9820, net1_loss = 0.16815, net1_acc = 0.9697, net1_test_acc = 0.9874
Epoch: [ 49] [3700/4000] time: 28971.2378, dice0 = 0.02971, cross0 = 0.0356, kl0 = 0.0024, exclusion0 = 0.0219, dice1 = 0.06591, cross1 = 0.0758, kl1 = 0.0039, exclusion1 = 0.0491
1.2058239
Epoch: [ 49] [3750/4000] time: 28978.6595, net0_loss = 0.09602, net0_acc = 0.9840, net0_test_acc = 0.9659, net1_loss = 0.10143, net1_acc = 0.9849, net1_test_acc = 0.9595
Epoch: [ 49] [3750/4000] time: 28978.6596, dice0 = 0.03759, cross0 = 0.0441, kl0 = 0.0017, exclusion0 = 0.0270, dice1 = 0.03872, cross1 = 0.0389, kl1 = 0.0065, exclusion1 = 0.0410
1.1457928
Epoch: [ 49] [3800/4000] time: 28986.0542, net0_loss = 0.12351, net0_acc = 0.9786, net0_test_acc = 0.9725, net1_loss = 0.05416, net1_acc = 0.9917, net1_test_acc = 0.9278
Epoch: [ 49] [3800/4000] time: 28986.0543, dice0 = 0.04698, cross0 = 0.0578, kl0 = 0.0031, exclusion0 = 0.0344, dice1 = 0.02134, cross1 = 0.0205, kl1 = 0.0034, exclusion1 = 0.0212
1.1451709
Epoch: [ 49] [3850/4000] time: 28993.4382, net0_loss = 0.14286, net0_acc = 0.9743, net0_test_acc = 0.8673, net1_loss = 0.27686, net1_acc = 0.9575, net1_test_acc = 0.9886
Epoch: [ 49] [3850/4000] time: 28993.4382, dice0 = 0.05329, cross0 = 0.0715, kl0 = 0.0033, exclusion0 = 0.0329, dice1 = 0.09663, cross1 = 0.1070, kl1 = 0.0316, exclusion1 = 0.1149
1.1431049
Epoch: [ 49] [3900/4000] time: 29000.8135, net0_loss = 0.15730, net0_acc = 0.9708, net0_test_acc = 0.9131, net1_loss = 0.19017, net1_acc = 0.9698, net1_test_acc = 0.9883
Epoch: [ 49] [3900/4000] time: 29000.8135, dice0 = 0.06359, cross0 = 0.0686, kl0 = 0.0021, exclusion0 = 0.0482, dice1 = 0.07225, cross1 = 0.0761, kl1 = 0.0088, exclusion1 = 0.0748
1.1603754
Epoch: [ 49] [3950/4000] time: 29008.3008, net0_loss = 0.09195, net0_acc = 0.9867, net0_test_acc = 0.8988, net1_loss = 0.14187, net1_acc = 0.9787, net1_test_acc = 0.9133
Epoch: [ 49] [3950/4000] time: 29008.3009, dice0 = 0.03524, cross0 = 0.0348, kl0 = 0.0056, exclusion0 = 0.0381, dice1 = 0.05217, cross1 = 0.0506, kl1 = 0.0142, exclusion1 = 0.0639
1.1886886
Epoch: [ 50] [ 0/4000] time: 29015.6496, net0_loss = 0.23969, net0_acc = 0.9582, net0_test_acc = 0.9588, net1_loss = 0.07308, net1_acc = 0.9886, net1_test_acc = 0.9605
Epoch: [ 50] [ 0/4000] time: 29015.6496, dice0 = 0.08410, cross0 = 0.1217, kl0 = 0.0095, exclusion0 = 0.0581, dice1 = 0.02892, cross1 = 0.0311, kl1 = 0.0021, exclusion1 = 0.0240
1.1622777
Epoch: [ 50] [ 50/4000] time: 29023.0715, net0_loss = 0.15645, net0_acc = 0.9769, net0_test_acc = 0.7449, net1_loss = 0.09021, net1_acc = 0.9880, net1_test_acc = 0.9017
Epoch: [ 50] [ 50/4000] time: 29023.0716, dice0 = 0.05851, cross0 = 0.0597, kl0 = 0.0091, exclusion0 = 0.0674, dice1 = 0.03557, cross1 = 0.0277, kl1 = 0.0064, exclusion1 = 0.0474
1.138146
Epoch: [ 50] [100/4000] time: 29030.4265, net0_loss = 0.09558, net0_acc = 0.9839, net0_test_acc = 0.8419, net1_loss = 0.25198, net1_acc = 0.9614, net1_test_acc = 0.8146
Epoch: [ 50] [100/4000] time: 29030.4265, dice0 = 0.03619, cross0 = 0.0425, kl0 = 0.0042, exclusion0 = 0.0297, dice1 = 0.09078, cross1 = 0.1096, kl1 = 0.0123, exclusion1 = 0.0910
1.178842
Epoch: [ 50] [150/4000] time: 29037.9800, net0_loss = 0.22731, net0_acc = 0.9625, net0_test_acc = 0.9836, net1_loss = 0.25263, net1_acc = 0.9604, net1_test_acc = 0.9724
Epoch: [ 50] [150/4000] time: 29037.9801, dice0 = 0.08584, cross0 = 0.0999, kl0 = 0.0071, exclusion0 = 0.0759, dice1 = 0.09532, cross1 = 0.1069, kl1 = 0.0096, exclusion1 = 0.0913
1.0896088
Epoch: [ 50] [200/4000] time: 29045.3935, net0_loss = 0.23701, net0_acc = 0.9631, net0_test_acc = 0.9349, net1_loss = 0.26338, net1_acc = 0.9542, net1_test_acc = 0.9348
Epoch: [ 50] [200/4000] time: 29045.3935, dice0 = 0.08514, cross0 = 0.1002, kl0 = 0.0158, exclusion0 = 0.0875, dice1 = 0.10018, cross1 = 0.1157, kl1 = 0.0104, exclusion1 = 0.0846
1.1240449
Epoch: [ 50] [250/4000] time: 29052.7915, net0_loss = 0.12191, net0_acc = 0.9838, net0_test_acc = 0.9495, net1_loss = 0.04666, net1_acc = 0.9931, net1_test_acc = 0.9804
Epoch: [ 50] [250/4000] time: 29052.7916, dice0 = 0.04205, cross0 = 0.0420, kl0 = 0.0141, exclusion0 = 0.0616, dice1 = 0.01922, cross1 = 0.0171, kl1 = 0.0015, exclusion1 = 0.0192
1.1497617
Epoch: [ 50] [300/4000] time: 29060.1641, net0_loss = 0.27846, net0_acc = 0.9526, net0_test_acc = 0.8887, net1_loss = 0.19210, net1_acc = 0.9685, net1_test_acc = 0.9780
Epoch: [ 50] [300/4000] time: 29060.1641, dice0 = 0.10112, cross0 = 0.1369, kl0 = 0.0093, exclusion0 = 0.0716, dice1 = 0.07233, cross1 = 0.0799, kl1 = 0.0093, exclusion1 = 0.0705
1.0876932
Epoch: [ 50] [350/4000] time: 29067.5854, net0_loss = 0.20273, net0_acc = 0.9646, net0_test_acc = 0.9483, net1_loss = 0.06995, net1_acc = 0.9911, net1_test_acc = 0.9354
Epoch: [ 50] [350/4000] time: 29067.5855, dice0 = 0.07661, cross0 = 0.0924, kl0 = 0.0063, exclusion0 = 0.0611, dice1 = 0.02925, cross1 = 0.0225, kl1 = 0.0020, exclusion1 = 0.0345
1.2039771
Epoch: [ 50] [400/4000] time: 29075.0103, net0_loss = 0.27645, net0_acc = 0.9588, net0_test_acc = 0.9282, net1_loss = 0.10171, net1_acc = 0.9831, net1_test_acc = 0.9161
Epoch: [ 50] [400/4000] time: 29075.0104, dice0 = 0.08878, cross0 = 0.1487, kl0 = 0.0090, exclusion0 = 0.0689, dice1 = 0.03929, cross1 = 0.0402, kl1 = 0.0058, exclusion1 = 0.0387
1.2193167
Epoch: [ 50] [450/4000] time: 29082.4122, net0_loss = 0.33121, net0_acc = 0.9517, net0_test_acc = 0.9725, net1_loss = 0.12770, net1_acc = 0.9785, net1_test_acc = 0.9040
Epoch: [ 50] [450/4000] time: 29082.4123, dice0 = 0.09952, cross0 = 0.1745, kl0 = 0.0264, exclusion0 = 0.0880, dice1 = 0.05142, cross1 = 0.0536, kl1 = 0.0024, exclusion1 = 0.0429
1.2331344
Epoch: [ 50] [500/4000] time: 29089.8336, net0_loss = 0.20068, net0_acc = 0.9680, net0_test_acc = 0.7911, net1_loss = 0.17800, net1_acc = 0.9751, net1_test_acc = 0.9516
Epoch: [ 50] [500/4000] time: 29089.8336, dice0 = 0.07257, cross0 = 0.0920, kl0 = 0.0103, exclusion0 = 0.0619, dice1 = 0.05629, cross1 = 0.0663, kl1 = 0.0276, exclusion1 = 0.0831
1.2771599
Epoch: [ 50] [550/4000] time: 29097.2522, net0_loss = 0.06407, net0_acc = 0.9914, net0_test_acc = 0.8881, net1_loss = 0.11014, net1_acc = 0.9835, net1_test_acc = 0.8211
Epoch: [ 50] [550/4000] time: 29097.2523, dice0 = 0.02514, cross0 = 0.0207, kl0 = 0.0037, exclusion0 = 0.0326, dice1 = 0.03891, cross1 = 0.0355, kl1 = 0.0142, exclusion1 = 0.0572
1.1813357
Epoch: [ 50] [600/4000] time: 29104.6679, net0_loss = 0.23090, net0_acc = 0.9608, net0_test_acc = 0.8931, net1_loss = 0.08491, net1_acc = 0.9870, net1_test_acc = 0.9739
Epoch: [ 50] [600/4000] time: 29104.6679, dice0 = 0.08379, cross0 = 0.1007, kl0 = 0.0164, exclusion0 = 0.0763, dice1 = 0.03307, cross1 = 0.0309, kl1 = 0.0040, exclusion1 = 0.0379
1.1428841
Epoch: [ 50] [650/4000] time: 29112.0243, net0_loss = 0.09615, net0_acc = 0.9846, net0_test_acc = 0.9145, net1_loss = 0.18218, net1_acc = 0.9686, net1_test_acc = 0.9776
Epoch: [ 50] [650/4000] time: 29112.0244, dice0 = 0.03701, cross0 = 0.0361, kl0 = 0.0057, exclusion0 = 0.0403, dice1 = 0.06792, cross1 = 0.0805, kl1 = 0.0089, exclusion1 = 0.0586
1.2056458
Epoch: [ 50] [700/4000] time: 29119.4837, net0_loss = 0.23882, net0_acc = 0.9606, net0_test_acc = 0.9189, net1_loss = 0.12134, net1_acc = 0.9793, net1_test_acc = 0.9623
Epoch: [ 50] [700/4000] time: 29119.4838, dice0 = 0.08053, cross0 = 0.1290, kl0 = 0.0085, exclusion0 = 0.0501, dice1 = 0.04715, cross1 = 0.0552, kl1 = 0.0024, exclusion1 = 0.0356
1.0933899
Epoch: [ 50] [750/4000] time: 29126.8991, net0_loss = 0.12914, net0_acc = 0.9785, net0_test_acc = 0.9563, net1_loss = 0.14377, net1_acc = 0.9766, net1_test_acc = 0.9456
Epoch: [ 50] [750/4000] time: 29126.8992, dice0 = 0.05027, cross0 = 0.0547, kl0 = 0.0041, exclusion0 = 0.0443, dice1 = 0.05691, cross1 = 0.0542, kl1 = 0.0060, exclusion1 = 0.0594
1.101836
Epoch: [ 50] [800/4000] time: 29134.3118, net0_loss = 0.14744, net0_acc = 0.9785, net0_test_acc = 0.7774, net1_loss = 0.22253, net1_acc = 0.9645, net1_test_acc = 0.8363
Epoch: [ 50] [800/4000] time: 29134.3119, dice0 = 0.05975, cross0 = 0.0530, kl0 = 0.0049, exclusion0 = 0.0644, dice1 = 0.08276, cross1 = 0.0880, kl1 = 0.0152, exclusion1 = 0.0885
1.2558197
Epoch: [ 50] [850/4000] time: 29141.6495, net0_loss = 0.10098, net0_acc = 0.9854, net0_test_acc = 0.8204, net1_loss = 0.32754, net1_acc = 0.9477, net1_test_acc = 0.8191
Epoch: [ 50] [850/4000] time: 29141.6496, dice0 = 0.04025, cross0 = 0.0352, kl0 = 0.0039, exclusion0 = 0.0472, dice1 = 0.11285, cross1 = 0.1622, kl1 = 0.0182, exclusion1 = 0.0868
1.1165556
Epoch: [ 50] [900/4000] time: 29148.9352, net0_loss = 0.11587, net0_acc = 0.9832, net0_test_acc = 0.9786, net1_loss = 0.09312, net1_acc = 0.9863, net1_test_acc = 0.9520
Epoch: [ 50] [900/4000] time: 29148.9353, dice0 = 0.04527, cross0 = 0.0452, kl0 = 0.0047, exclusion0 = 0.0462, dice1 = 0.03655, cross1 = 0.0326, kl1 = 0.0051, exclusion1 = 0.0429
1.1866969
Epoch: [ 50] [950/4000] time: 29156.5136, net0_loss = 0.17409, net0_acc = 0.9715, net0_test_acc = 0.9896, net1_loss = 0.08741, net1_acc = 0.9858, net1_test_acc = 0.9526
Epoch: [ 50] [950/4000] time: 29156.5137, dice0 = 0.06648, cross0 = 0.0727, kl0 = 0.0078, exclusion0 = 0.0621, dice1 = 0.03408, cross1 = 0.0361, kl1 = 0.0042, exclusion1 = 0.0303
1.2538736
Epoch: [ 50] [1000/4000] time: 29163.9551, net0_loss = 0.04649, net0_acc = 0.9935, net0_test_acc = 0.9469, net1_loss = 0.19672, net1_acc = 0.9667, net1_test_acc = 0.8216