forked from zaynxalic/Unet-DRIVE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults20221022-213857.txt
1800 lines (1600 loc) · 32.3 KB
/
results20221022-213857.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: 0]
train_loss: 1.3541
lr: 0.010000
dice coefficient: 0.111
global correct: 71.1
average row correct: ['78.2', '22.4']
IoU: ['70.2', '9.0']
mean IoU: 39.6
[epoch: 1]
train_loss: 1.0442
lr: 0.009955
dice coefficient: 0.014
global correct: 85.7
average row correct: ['98.0', '1.0']
IoU: ['85.7', '0.9']
mean IoU: 43.3
[epoch: 2]
train_loss: 0.9315
lr: 0.009910
dice coefficient: 0.000
global correct: 87.2
average row correct: ['99.9', '0.0']
IoU: ['87.2', '0.0']
mean IoU: 43.6
[epoch: 3]
train_loss: 0.7929
lr: 0.009864
dice coefficient: 0.021
global correct: 87.4
average row correct: ['100.0', '1.1']
IoU: ['87.4', '1.1']
mean IoU: 44.3
[epoch: 4]
train_loss: 0.7329
lr: 0.009819
dice coefficient: 0.210
global correct: 88.8
average row correct: ['99.9', '12.5']
IoU: ['88.6', '12.4']
mean IoU: 50.5
[epoch: 5]
train_loss: 0.6343
lr: 0.009774
dice coefficient: 0.440
global correct: 90.5
average row correct: ['99.3', '30.8']
IoU: ['90.2', '29.3']
mean IoU: 59.7
[epoch: 6]
train_loss: 0.6105
lr: 0.009728
dice coefficient: 0.575
global correct: 91.8
average row correct: ['98.6', '45.5']
IoU: ['91.3', '41.5']
mean IoU: 66.4
[epoch: 7]
train_loss: 0.5982
lr: 0.009683
dice coefficient: 0.651
global correct: 91.3
average row correct: ['95.1', '64.8']
IoU: ['90.5', '48.5']
mean IoU: 69.5
[epoch: 8]
train_loss: 0.6641
lr: 0.009637
dice coefficient: 0.651
global correct: 90.7
average row correct: ['94.0', '67.7']
IoU: ['89.8', '48.0']
mean IoU: 68.9
[epoch: 9]
train_loss: 0.5530
lr: 0.009592
dice coefficient: 0.550
global correct: 80.7
average row correct: ['81.0', '78.3']
IoU: ['78.5', '34.0']
mean IoU: 56.3
[epoch: 10]
train_loss: 0.5676
lr: 0.009547
dice coefficient: 0.659
global correct: 89.2
average row correct: ['91.0', '77.0']
IoU: ['88.1', '47.6']
mean IoU: 67.8
[epoch: 11]
train_loss: 0.5494
lr: 0.009501
dice coefficient: 0.654
global correct: 90.0
average row correct: ['92.8', '70.5']
IoU: ['89.0', '47.3']
mean IoU: 68.1
[epoch: 12]
train_loss: 0.5293
lr: 0.009456
dice coefficient: 0.713
global correct: 91.9
average row correct: ['94.6', '73.2']
IoU: ['91.1', '53.5']
mean IoU: 72.3
[epoch: 13]
train_loss: 0.5291
lr: 0.009410
dice coefficient: 0.689
global correct: 91.2
average row correct: ['93.6', '75.1']
IoU: ['90.3', '52.2']
mean IoU: 71.3
[epoch: 14]
train_loss: 0.5163
lr: 0.009365
dice coefficient: 0.691
global correct: 92.6
average row correct: ['96.3', '67.0']
IoU: ['91.9', '53.4']
mean IoU: 72.6
[epoch: 15]
train_loss: 0.5168
lr: 0.009319
dice coefficient: 0.722
global correct: 93.3
average row correct: ['96.6', '70.3']
IoU: ['92.6', '57.1']
mean IoU: 74.9
[epoch: 16]
train_loss: 0.5153
lr: 0.009273
dice coefficient: 0.740
global correct: 94.0
average row correct: ['97.7', '68.3']
IoU: ['93.4', '59.1']
mean IoU: 76.3
[epoch: 17]
train_loss: 0.4923
lr: 0.009228
dice coefficient: 0.734
global correct: 93.6
average row correct: ['96.9', '70.7']
IoU: ['92.9', '58.4']
mean IoU: 75.7
[epoch: 18]
train_loss: 0.4692
lr: 0.009182
dice coefficient: 0.740
global correct: 93.7
average row correct: ['97.0', '71.2']
IoU: ['93.1', '59.2']
mean IoU: 76.1
[epoch: 19]
train_loss: 0.4701
lr: 0.009136
dice coefficient: 0.754
global correct: 94.0
average row correct: ['97.1', '72.9']
IoU: ['93.4', '60.8']
mean IoU: 77.1
[epoch: 20]
train_loss: 0.4710
lr: 0.009091
dice coefficient: 0.761
global correct: 94.0
average row correct: ['96.8', '75.0']
IoU: ['93.4', '61.5']
mean IoU: 77.5
[epoch: 21]
train_loss: 0.4624
lr: 0.009045
dice coefficient: 0.756
global correct: 94.1
average row correct: ['97.3', '72.3']
IoU: ['93.6', '61.1']
mean IoU: 77.3
[epoch: 22]
train_loss: 0.4480
lr: 0.008999
dice coefficient: 0.759
global correct: 94.3
average row correct: ['97.5', '71.9']
IoU: ['93.7', '61.5']
mean IoU: 77.6
[epoch: 23]
train_loss: 0.4342
lr: 0.008954
dice coefficient: 0.748
global correct: 94.3
average row correct: ['98.1', '68.2']
IoU: ['93.7', '60.2']
mean IoU: 77.0
[epoch: 24]
train_loss: 0.4465
lr: 0.008908
dice coefficient: 0.771
global correct: 94.5
average row correct: ['97.6', '73.4']
IoU: ['93.9', '63.0']
mean IoU: 78.5
[epoch: 25]
train_loss: 0.4295
lr: 0.008862
dice coefficient: 0.770
global correct: 94.5
average row correct: ['97.6', '73.1']
IoU: ['94.0', '62.9']
mean IoU: 78.4
[epoch: 26]
train_loss: 0.4246
lr: 0.008816
dice coefficient: 0.768
global correct: 94.6
average row correct: ['98.0', '71.2']
IoU: ['94.1', '62.6']
mean IoU: 78.3
[epoch: 27]
train_loss: 0.4180
lr: 0.008770
dice coefficient: 0.771
global correct: 94.6
average row correct: ['97.9', '72.1']
IoU: ['94.1', '63.0']
mean IoU: 78.5
[epoch: 28]
train_loss: 0.4408
lr: 0.008724
dice coefficient: 0.775
global correct: 94.5
average row correct: ['97.3', '75.3']
IoU: ['93.9', '63.5']
mean IoU: 78.7
[epoch: 29]
train_loss: 0.4323
lr: 0.008678
dice coefficient: 0.763
global correct: 94.5
average row correct: ['97.9', '70.9']
IoU: ['93.9', '62.0']
mean IoU: 78.0
[epoch: 30]
train_loss: 0.4144
lr: 0.008632
dice coefficient: 0.772
global correct: 94.3
average row correct: ['96.8', '76.9']
IoU: ['93.7', '63.1']
mean IoU: 78.4
[epoch: 31]
train_loss: 0.4130
lr: 0.008586
dice coefficient: 0.776
global correct: 94.6
average row correct: ['97.6', '74.0']
IoU: ['94.0', '63.6']
mean IoU: 78.8
[epoch: 32]
train_loss: 0.4109
lr: 0.008540
dice coefficient: 0.776
global correct: 94.6
average row correct: ['97.5', '74.8']
IoU: ['94.0', '63.6']
mean IoU: 78.8
[epoch: 33]
train_loss: 0.4190
lr: 0.008494
dice coefficient: 0.779
global correct: 94.7
average row correct: ['97.6', '74.3']
IoU: ['94.1', '64.0']
mean IoU: 79.1
[epoch: 34]
train_loss: 0.4163
lr: 0.008448
dice coefficient: 0.773
global correct: 94.6
average row correct: ['97.8', '72.6']
IoU: ['94.1', '63.2']
mean IoU: 78.6
[epoch: 35]
train_loss: 0.4064
lr: 0.008402
dice coefficient: 0.775
global correct: 94.7
average row correct: ['98.0', '72.1']
IoU: ['94.2', '63.5']
mean IoU: 78.8
[epoch: 36]
train_loss: 0.3986
lr: 0.008356
dice coefficient: 0.785
global correct: 94.7
average row correct: ['97.2', '77.1']
IoU: ['94.1', '64.8']
mean IoU: 79.4
[epoch: 37]
train_loss: 0.3959
lr: 0.008310
dice coefficient: 0.784
global correct: 94.8
average row correct: ['97.7', '74.9']
IoU: ['94.3', '64.7']
mean IoU: 79.5
[epoch: 38]
train_loss: 0.4058
lr: 0.008264
dice coefficient: 0.786
global correct: 94.7
average row correct: ['97.4', '76.4']
IoU: ['94.2', '64.9']
mean IoU: 79.5
[epoch: 39]
train_loss: 0.3934
lr: 0.008218
dice coefficient: 0.786
global correct: 94.8
average row correct: ['97.5', '76.2']
IoU: ['94.2', '64.9']
mean IoU: 79.5
[epoch: 40]
train_loss: 0.3926
lr: 0.008171
dice coefficient: 0.783
global correct: 94.7
average row correct: ['97.3', '76.4']
IoU: ['94.1', '64.6']
mean IoU: 79.3
[epoch: 41]
train_loss: 0.3880
lr: 0.008125
dice coefficient: 0.787
global correct: 94.8
average row correct: ['97.6', '75.6']
IoU: ['94.3', '65.1']
mean IoU: 79.7
[epoch: 42]
train_loss: 0.3964
lr: 0.008079
dice coefficient: 0.788
global correct: 94.8
average row correct: ['97.4', '77.1']
IoU: ['94.2', '65.3']
mean IoU: 79.7
[epoch: 43]
train_loss: 0.3980
lr: 0.008032
dice coefficient: 0.787
global correct: 94.7
average row correct: ['97.3', '77.0']
IoU: ['94.2', '65.1']
mean IoU: 79.6
[epoch: 44]
train_loss: 0.3846
lr: 0.007986
dice coefficient: 0.787
global correct: 94.7
average row correct: ['97.2', '77.4']
IoU: ['94.1', '65.1']
mean IoU: 79.6
[epoch: 45]
train_loss: 0.3832
lr: 0.007940
dice coefficient: 0.783
global correct: 94.7
average row correct: ['97.5', '75.6']
IoU: ['94.2', '64.6']
mean IoU: 79.4
[epoch: 46]
train_loss: 0.3839
lr: 0.007893
dice coefficient: 0.789
global correct: 94.9
average row correct: ['97.6', '76.1']
IoU: ['94.3', '65.4']
mean IoU: 79.8
[epoch: 47]
train_loss: 0.3739
lr: 0.007847
dice coefficient: 0.789
global correct: 94.8
average row correct: ['97.4', '76.8']
IoU: ['94.3', '65.4']
mean IoU: 79.8
[epoch: 48]
train_loss: 0.4064
lr: 0.007800
dice coefficient: 0.783
global correct: 94.7
average row correct: ['97.4', '76.0']
IoU: ['94.1', '64.4']
mean IoU: 79.3
[epoch: 49]
train_loss: 0.3878
lr: 0.007754
dice coefficient: 0.787
global correct: 94.7
average row correct: ['97.3', '77.1']
IoU: ['94.2', '65.1']
mean IoU: 79.6
[epoch: 50]
train_loss: 0.3856
lr: 0.007707
dice coefficient: 0.788
global correct: 94.8
average row correct: ['97.6', '76.2']
IoU: ['94.3', '65.3']
mean IoU: 79.8
[epoch: 51]
train_loss: 0.3883
lr: 0.007661
dice coefficient: 0.788
global correct: 94.5
average row correct: ['96.5', '80.7']
IoU: ['93.9', '65.2']
mean IoU: 79.5
[epoch: 52]
train_loss: 0.3965
lr: 0.007614
dice coefficient: 0.791
global correct: 94.8
average row correct: ['97.2', '78.1']
IoU: ['94.2', '65.5']
mean IoU: 79.9
[epoch: 53]
train_loss: 0.3851
lr: 0.007567
dice coefficient: 0.793
global correct: 94.9
average row correct: ['97.4', '77.5']
IoU: ['94.3', '65.9']
mean IoU: 80.1
[epoch: 54]
train_loss: 0.3859
lr: 0.007521
dice coefficient: 0.790
global correct: 94.9
average row correct: ['97.6', '76.2']
IoU: ['94.3', '65.5']
mean IoU: 79.9
[epoch: 55]
train_loss: 0.3801
lr: 0.007474
dice coefficient: 0.790
global correct: 94.8
average row correct: ['97.4', '77.2']
IoU: ['94.3', '65.5']
mean IoU: 79.9
[epoch: 56]
train_loss: 0.3928
lr: 0.007427
dice coefficient: 0.786
global correct: 94.9
average row correct: ['98.0', '73.7']
IoU: ['94.4', '64.9']
mean IoU: 79.7
[epoch: 57]
train_loss: 0.3930
lr: 0.007381
dice coefficient: 0.790
global correct: 94.6
average row correct: ['96.8', '79.6']
IoU: ['94.0', '65.4']
mean IoU: 79.7
[epoch: 58]
train_loss: 0.3738
lr: 0.007334
dice coefficient: 0.789
global correct: 94.9
average row correct: ['97.8', '75.0']
IoU: ['94.4', '65.4']
mean IoU: 79.9
[epoch: 59]
train_loss: 0.3706
lr: 0.007287
dice coefficient: 0.795
global correct: 94.8
average row correct: ['97.1', '79.5']
IoU: ['94.2', '66.1']
mean IoU: 80.2
[epoch: 60]
train_loss: 0.3783
lr: 0.007240
dice coefficient: 0.795
global correct: 95.0
average row correct: ['97.7', '76.7']
IoU: ['94.5', '66.2']
mean IoU: 80.3
[epoch: 61]
train_loss: 0.3656
lr: 0.007193
dice coefficient: 0.792
global correct: 95.1
average row correct: ['98.0', '74.6']
IoU: ['94.5', '65.7']
mean IoU: 80.1
[epoch: 62]
train_loss: 0.3773
lr: 0.007146
dice coefficient: 0.796
global correct: 95.0
average row correct: ['97.7', '76.6']
IoU: ['94.5', '66.3']
mean IoU: 80.4
[epoch: 63]
train_loss: 0.3703
lr: 0.007099
dice coefficient: 0.796
global correct: 95.1
average row correct: ['97.9', '75.8']
IoU: ['94.6', '66.2']
mean IoU: 80.4
[epoch: 64]
train_loss: 0.3630
lr: 0.007052
dice coefficient: 0.794
global correct: 94.8
average row correct: ['97.1', '79.4']
IoU: ['94.2', '66.0']
mean IoU: 80.1
[epoch: 65]
train_loss: 0.3680
lr: 0.007005
dice coefficient: 0.797
global correct: 95.1
average row correct: ['97.7', '76.8']
IoU: ['94.5', '66.4']
mean IoU: 80.5
[epoch: 66]
train_loss: 0.3557
lr: 0.006958
dice coefficient: 0.799
global correct: 95.1
average row correct: ['97.5', '77.9']
IoU: ['94.5', '66.7']
mean IoU: 80.6
[epoch: 67]
train_loss: 0.3759
lr: 0.006911
dice coefficient: 0.796
global correct: 94.8
average row correct: ['97.0', '80.0']
IoU: ['94.2', '66.3']
mean IoU: 80.2
[epoch: 68]
train_loss: 0.3638
lr: 0.006864
dice coefficient: 0.790
global correct: 95.0
average row correct: ['98.0', '74.3']
IoU: ['94.5', '65.4']
mean IoU: 79.9
[epoch: 69]
train_loss: 0.3540
lr: 0.006817
dice coefficient: 0.796
global correct: 94.6
average row correct: ['96.3', '83.0']
IoU: ['94.0', '66.2']
mean IoU: 80.1
[epoch: 70]
train_loss: 0.3602
lr: 0.006770
dice coefficient: 0.798
global correct: 94.9
average row correct: ['97.1', '79.7']
IoU: ['94.3', '66.6']
mean IoU: 80.4
[epoch: 71]
train_loss: 0.3597
lr: 0.006722
dice coefficient: 0.797
global correct: 95.0
average row correct: ['97.6', '77.2']
IoU: ['94.5', '66.5']
mean IoU: 80.5
[epoch: 72]
train_loss: 0.3618
lr: 0.006675
dice coefficient: 0.802
global correct: 95.1
average row correct: ['97.5', '78.8']
IoU: ['94.5', '67.1']
mean IoU: 80.8
[epoch: 73]
train_loss: 0.3582
lr: 0.006628
dice coefficient: 0.803
global correct: 95.1
average row correct: ['97.4', '79.3']
IoU: ['94.5', '67.2']
mean IoU: 80.9
[epoch: 74]
train_loss: 0.3624
lr: 0.006580
dice coefficient: 0.800
global correct: 95.1
average row correct: ['97.7', '77.3']
IoU: ['94.6', '66.8']
mean IoU: 80.7
[epoch: 75]
train_loss: 0.3648
lr: 0.006533
dice coefficient: 0.795
global correct: 95.1
average row correct: ['98.2', '74.5']
IoU: ['94.6', '66.1']
mean IoU: 80.4
[epoch: 76]
train_loss: 0.3553
lr: 0.006486
dice coefficient: 0.801
global correct: 95.0
average row correct: ['97.3', '79.6']
IoU: ['94.4', '67.0']
mean IoU: 80.7
[epoch: 77]
train_loss: 0.3632
lr: 0.006438
dice coefficient: 0.796
global correct: 94.6
average row correct: ['96.5', '82.2']
IoU: ['94.0', '66.1']
mean IoU: 80.1
[epoch: 78]
train_loss: 0.3511
lr: 0.006391
dice coefficient: 0.801
global correct: 95.2
average row correct: ['97.9', '76.5']
IoU: ['94.7', '67.0']
mean IoU: 80.8
[epoch: 79]
train_loss: 0.3602
lr: 0.006343
dice coefficient: 0.803
global correct: 95.2
average row correct: ['97.8', '77.4']
IoU: ['94.7', '67.2']
mean IoU: 80.9
[epoch: 80]
train_loss: 0.3585
lr: 0.006295
dice coefficient: 0.801
global correct: 94.9
average row correct: ['97.0', '80.8']
IoU: ['94.3', '67.0']
mean IoU: 80.7
[epoch: 81]
train_loss: 0.3543
lr: 0.006248
dice coefficient: 0.802
global correct: 95.1
average row correct: ['97.5', '78.6']
IoU: ['94.6', '67.1']
mean IoU: 80.8
[epoch: 82]
train_loss: 0.3689
lr: 0.006200
dice coefficient: 0.804
global correct: 95.1
average row correct: ['97.3', '79.8']
IoU: ['94.5', '67.4']
mean IoU: 80.9
[epoch: 83]
train_loss: 0.3588
lr: 0.006152
dice coefficient: 0.803
global correct: 94.9
average row correct: ['96.9', '81.6']
IoU: ['94.3', '67.2']
mean IoU: 80.8
[epoch: 84]
train_loss: 0.3640
lr: 0.006105
dice coefficient: 0.798
global correct: 94.9
average row correct: ['97.3', '78.9']
IoU: ['94.4', '66.4']
mean IoU: 80.4
[epoch: 85]
train_loss: 0.3635
lr: 0.006057
dice coefficient: 0.802
global correct: 95.2
average row correct: ['97.7', '77.7']
IoU: ['94.6', '67.1']
mean IoU: 80.9
[epoch: 86]
train_loss: 0.3441
lr: 0.006009
dice coefficient: 0.802
global correct: 95.2
average row correct: ['98.0', '76.1']
IoU: ['94.7', '67.0']
mean IoU: 80.9
[epoch: 87]
train_loss: 0.3553
lr: 0.005961
dice coefficient: 0.806
global correct: 95.1
average row correct: ['97.4', '79.8']
IoU: ['94.6', '67.6']
mean IoU: 81.1
[epoch: 88]
train_loss: 0.3558
lr: 0.005913
dice coefficient: 0.804
global correct: 95.0
average row correct: ['97.2', '80.4']
IoU: ['94.5', '67.4']
mean IoU: 80.9
[epoch: 89]
train_loss: 0.3638
lr: 0.005865
dice coefficient: 0.804
global correct: 95.1
average row correct: ['97.6', '78.5']
IoU: ['94.6', '67.3']
mean IoU: 81.0
[epoch: 90]
train_loss: 0.3546
lr: 0.005817
dice coefficient: 0.804
global correct: 95.1
average row correct: ['97.6', '78.5']
IoU: ['94.6', '67.3']
mean IoU: 80.9
[epoch: 91]
train_loss: 0.3587
lr: 0.005769
dice coefficient: 0.804
global correct: 95.0
average row correct: ['97.0', '81.0']
IoU: ['94.4', '67.3']
mean IoU: 80.9
[epoch: 92]
train_loss: 0.3546
lr: 0.005721
dice coefficient: 0.804
global correct: 95.0
average row correct: ['97.0', '81.2']
IoU: ['94.4', '67.3']
mean IoU: 80.9
[epoch: 93]
train_loss: 0.3505
lr: 0.005673
dice coefficient: 0.804
global correct: 95.2
average row correct: ['97.6', '78.4']
IoU: ['94.6', '67.3']
mean IoU: 81.0
[epoch: 94]
train_loss: 0.3545
lr: 0.005625
dice coefficient: 0.803
global correct: 95.0
average row correct: ['97.2', '80.2']
IoU: ['94.5', '67.2']
mean IoU: 80.9
[epoch: 95]
train_loss: 0.3497
lr: 0.005577
dice coefficient: 0.806
global correct: 95.2
average row correct: ['97.8', '78.0']
IoU: ['94.7', '67.6']
mean IoU: 81.1
[epoch: 96]
train_loss: 0.3476
lr: 0.005528
dice coefficient: 0.806
global correct: 95.1
average row correct: ['97.4', '79.9']
IoU: ['94.6', '67.7']
mean IoU: 81.1
[epoch: 97]
train_loss: 0.3479
lr: 0.005480
dice coefficient: 0.805
global correct: 95.0
average row correct: ['96.9', '81.8']
IoU: ['94.4', '67.5']
mean IoU: 81.0
[epoch: 98]
train_loss: 0.3563
lr: 0.005432
dice coefficient: 0.807
global correct: 95.1
average row correct: ['97.2', '80.6']
IoU: ['94.6', '67.8']
mean IoU: 81.2
[epoch: 99]
train_loss: 0.3444
lr: 0.005383
dice coefficient: 0.805
global correct: 95.2
average row correct: ['97.7', '78.2']
IoU: ['94.7', '67.5']
mean IoU: 81.1
[epoch: 100]
train_loss: 0.3419
lr: 0.005335
dice coefficient: 0.805
global correct: 95.1
average row correct: ['97.2', '80.4']
IoU: ['94.5', '67.5']
mean IoU: 81.0
[epoch: 101]
train_loss: 0.3504
lr: 0.005286
dice coefficient: 0.807
global correct: 95.0
average row correct: ['96.9', '82.1']
IoU: ['94.4', '67.7']
mean IoU: 81.1
[epoch: 102]
train_loss: 0.3511
lr: 0.005238
dice coefficient: 0.802
global correct: 95.0
average row correct: ['97.2', '79.7']
IoU: ['94.4', '67.0']
mean IoU: 80.7
[epoch: 103]
train_loss: 0.3431
lr: 0.005189
dice coefficient: 0.802
global correct: 95.2
average row correct: ['98.0', '76.5']
IoU: ['94.7', '67.1']
mean IoU: 80.9
[epoch: 104]
train_loss: 0.3453
lr: 0.005140
dice coefficient: 0.805
global correct: 95.2
average row correct: ['97.7', '78.0']
IoU: ['94.7', '67.5']
mean IoU: 81.1
[epoch: 105]
train_loss: 0.3475
lr: 0.005092
dice coefficient: 0.805
global correct: 95.0
average row correct: ['97.0', '81.2']
IoU: ['94.4', '67.5']
mean IoU: 81.0
[epoch: 106]
train_loss: 0.3434
lr: 0.005043
dice coefficient: 0.806
global correct: 95.1
average row correct: ['97.4', '79.7']
IoU: ['94.6', '67.6']
mean IoU: 81.1
[epoch: 107]
train_loss: 0.3426
lr: 0.004994
dice coefficient: 0.807
global correct: 95.2
average row correct: ['97.6', '78.8']
IoU: ['94.7', '67.8']
mean IoU: 81.2
[epoch: 108]
train_loss: 0.3372
lr: 0.004945
dice coefficient: 0.807
global correct: 95.0
average row correct: ['96.9', '82.1']
IoU: ['94.4', '67.8']
mean IoU: 81.1
[epoch: 109]
train_loss: 0.3474
lr: 0.004896
dice coefficient: 0.805
global correct: 95.2
average row correct: ['97.5', '79.1']
IoU: ['94.6', '67.5']
mean IoU: 81.1
[epoch: 110]
train_loss: 0.3393
lr: 0.004847
dice coefficient: 0.804
global correct: 95.1
average row correct: ['97.4', '79.4']
IoU: ['94.5', '67.3']
mean IoU: 80.9
[epoch: 111]