-
Notifications
You must be signed in to change notification settings - Fork 0
/
job_27456126.out
5162 lines (5162 loc) · 208 KB
/
job_27456126.out
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 [1/100], Total Loss: 115.3046
Epoch [2/100], Total Loss: 115.4415
Epoch [3/100], Total Loss: 111.5349
Epoch [4/100], Total Loss: 107.5426
Epoch [5/100], Total Loss: 105.6825
Epoch [6/100], Total Loss: 102.6746
Epoch [7/100], Total Loss: 100.2376
Epoch [8/100], Total Loss: 102.1732
Epoch [9/100], Total Loss: 96.9266
Epoch [10/100], Total Loss: 88.9751
======================2======================
Validation Accuracy: 60.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 0.00%
Predictions for masks_2: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 50.00%
Predictions for masks_1: [2, 0, 2, 0, 2, 0, 2, 0, 2, 0]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 60.00%
Test Accuracy for masks_3: 50.00%
Predictions for masks_3: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 0.00%
Predictions for masks_2: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [11/100], Total Loss: 83.3185
Epoch [12/100], Total Loss: 79.6327
Epoch [13/100], Total Loss: 70.3678
Epoch [14/100], Total Loss: 78.0502
Epoch [15/100], Total Loss: 71.5356
Epoch [16/100], Total Loss: 69.9429
Epoch [17/100], Total Loss: 70.2177
Epoch [18/100], Total Loss: 68.9201
Epoch [19/100], Total Loss: 64.5194
Epoch [20/100], Total Loss: 60.9351
======================2======================
Validation Accuracy: 50.00%
Validation Accuracy for masks_3: 50.00%
Predictions for masks_3: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 50.00%
Predictions for masks_4: [1, 0, 1, 0, 1, 0, 1, 0, 1, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 0.00%
Predictions for masks_2: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 60.00%
Test Accuracy for masks_3: 50.00%
Predictions for masks_3: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 50.00%
Predictions for masks_4: [1, 0, 1, 0, 1, 0, 1, 0, 1, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 0.00%
Predictions for masks_2: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [21/100], Total Loss: 62.5673
Epoch [22/100], Total Loss: 60.1915
Epoch [23/100], Total Loss: 56.3502
Epoch [24/100], Total Loss: 55.4881
Epoch [25/100], Total Loss: 54.9436
Epoch [26/100], Total Loss: 54.9107
Epoch [27/100], Total Loss: 49.2795
Epoch [28/100], Total Loss: 50.1637
Epoch [29/100], Total Loss: 59.1979
Epoch [30/100], Total Loss: 45.6791
======================2======================
Validation Accuracy: 70.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 50.00%
Predictions for masks_4: [1, 0, 1, 0, 1, 0, 1, 0, 1, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 50.00%
Predictions for masks_1: [2, 1, 2, 1, 2, 1, 2, 1, 2, 1]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 60.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 50.00%
Predictions for masks_4: [1, 0, 1, 0, 1, 0, 1, 0, 1, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 50.00%
Predictions for masks_2: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 50.00%
Predictions for masks_1: [2, 1, 2, 1, 2, 1, 2, 1, 2, 1]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 50.00%
Predictions for masks_6: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [31/100], Total Loss: 49.6492
Epoch [32/100], Total Loss: 42.3386
Epoch [33/100], Total Loss: 38.7042
Epoch [34/100], Total Loss: 42.2798
Epoch [35/100], Total Loss: 37.8175
Epoch [36/100], Total Loss: 35.0169
Epoch [37/100], Total Loss: 37.9873
Epoch [38/100], Total Loss: 34.0221
Epoch [39/100], Total Loss: 34.3673
Epoch [40/100], Total Loss: 32.1209
======================2======================
Validation Accuracy: 90.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 70.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 0.00%
Predictions for masks_2: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [41/100], Total Loss: 28.5812
Epoch [42/100], Total Loss: 27.0139
Epoch [43/100], Total Loss: 32.2163
Epoch [44/100], Total Loss: 29.1670
Epoch [45/100], Total Loss: 27.5485
Epoch [46/100], Total Loss: 28.7553
Epoch [47/100], Total Loss: 25.5639
Epoch [48/100], Total Loss: 21.9056
Epoch [49/100], Total Loss: 24.4438
Epoch [50/100], Total Loss: 22.9054
======================2======================
Validation Accuracy: 80.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 50.00%
Predictions for masks_2: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 90.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 50.00%
Predictions for masks_2: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [51/100], Total Loss: 24.3702
Epoch [52/100], Total Loss: 26.1044
Epoch [53/100], Total Loss: 26.4043
Epoch [54/100], Total Loss: 21.2552
Epoch [55/100], Total Loss: 24.2266
Epoch [56/100], Total Loss: 25.5139
Epoch [57/100], Total Loss: 21.9604
Epoch [58/100], Total Loss: 21.1593
Epoch [59/100], Total Loss: 21.6651
Epoch [60/100], Total Loss: 21.4493
======================2======================
Validation Accuracy: 90.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 90.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 50.00%
Predictions for masks_2: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [61/100], Total Loss: 25.2344
Epoch [62/100], Total Loss: 20.4741
Epoch [63/100], Total Loss: 21.2634
Epoch [64/100], Total Loss: 30.2147
Epoch [65/100], Total Loss: 25.4888
Epoch [66/100], Total Loss: 19.1549
Epoch [67/100], Total Loss: 19.3368
Epoch [68/100], Total Loss: 19.5553
Epoch [69/100], Total Loss: 16.8547
Epoch [70/100], Total Loss: 24.0805
======================2======================
Validation Accuracy: 90.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 90.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 50.00%
Predictions for masks_2: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [71/100], Total Loss: 19.9690
Epoch [72/100], Total Loss: 21.6535
Epoch [73/100], Total Loss: 16.9439
Epoch [74/100], Total Loss: 16.7902
Epoch [75/100], Total Loss: 20.8472
Epoch [76/100], Total Loss: 21.4103
Epoch [77/100], Total Loss: 18.6130
Epoch [78/100], Total Loss: 18.4660
Epoch [79/100], Total Loss: 17.0185
Epoch [80/100], Total Loss: 17.2819
======================2======================
Validation Accuracy: 90.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 90.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 50.00%
Predictions for masks_2: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [81/100], Total Loss: 19.8501
Epoch [82/100], Total Loss: 16.2212
Epoch [83/100], Total Loss: 15.4972
Epoch [84/100], Total Loss: 19.9939
Epoch [85/100], Total Loss: 24.2243
Epoch [86/100], Total Loss: 16.7771
Epoch [87/100], Total Loss: 18.1441
Epoch [88/100], Total Loss: 20.5261
Epoch [89/100], Total Loss: 12.1992
Epoch [90/100], Total Loss: 16.1349
======================2======================
Validation Accuracy: 90.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 90.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 50.00%
Predictions for masks_2: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [91/100], Total Loss: 18.0258
Epoch [92/100], Total Loss: 21.4089
Epoch [93/100], Total Loss: 18.9087
Epoch [94/100], Total Loss: 19.8845
Epoch [95/100], Total Loss: 17.0768
Epoch [96/100], Total Loss: 16.5938
Epoch [97/100], Total Loss: 17.8668
Epoch [98/100], Total Loss: 19.2526
Epoch [99/100], Total Loss: 20.3584
Epoch [100/100], Total Loss: 21.2884
======================2======================
Validation Accuracy: 90.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 90.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 50.00%
Predictions for masks_2: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [1/100], Total Loss: 125.8881
Epoch [2/100], Total Loss: 113.2107
Epoch [3/100], Total Loss: 104.7913
Epoch [4/100], Total Loss: 105.0185
Epoch [5/100], Total Loss: 100.8815
Epoch [6/100], Total Loss: 94.4956
Epoch [7/100], Total Loss: 95.5368
Epoch [8/100], Total Loss: 81.9802
Epoch [9/100], Total Loss: 78.5398
Epoch [10/100], Total Loss: 76.0100
======================4======================
Validation Accuracy: 50.00%
Validation Accuracy for masks_3: 50.00%
Predictions for masks_3: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 50.00%
Predictions for masks_4: [2, 0, 2, 0, 2, 0, 2, 0, 2, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 0.00%
Predictions for masks_2: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 50.00%
Test Accuracy for masks_3: 50.00%
Predictions for masks_3: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 50.00%
Predictions for masks_4: [2, 0, 2, 0, 2, 0, 2, 0, 2, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 0.00%
Predictions for masks_2: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [11/100], Total Loss: 65.1067
Epoch [12/100], Total Loss: 61.0054
Epoch [13/100], Total Loss: 53.3769
Epoch [14/100], Total Loss: 50.0178
Epoch [15/100], Total Loss: 44.7049
Epoch [16/100], Total Loss: 73.3290
Epoch [17/100], Total Loss: 52.5132
Epoch [18/100], Total Loss: 41.7183
Epoch [19/100], Total Loss: 42.4557
Epoch [20/100], Total Loss: 46.2006
======================4======================
Validation Accuracy: 60.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 50.00%
Predictions for masks_2: [1, 0, 1, 0, 1, 0, 1, 0, 1, 0]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 0.00%
Predictions for masks_1: [1, 0, 1, 0, 1, 0, 1, 0, 1, 0]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 60.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 50.00%
Predictions for masks_4: [1, 0, 1, 0, 1, 0, 1, 0, 1, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 50.00%
Predictions for masks_2: [0, 1, 0, 1, 0, 1, 0, 1, 0, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 50.00%
Predictions for masks_1: [2, 0, 2, 0, 2, 0, 2, 0, 2, 0]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [21/100], Total Loss: 41.8714
Epoch [22/100], Total Loss: 50.1690
Epoch [23/100], Total Loss: 37.0191
Epoch [24/100], Total Loss: 38.7830
Epoch [25/100], Total Loss: 35.8835
Epoch [26/100], Total Loss: 36.7642
Epoch [27/100], Total Loss: 35.9582
Epoch [28/100], Total Loss: 28.9836
Epoch [29/100], Total Loss: 28.3271
Epoch [30/100], Total Loss: 31.1657
======================4======================
Validation Accuracy: 60.00%
Validation Accuracy for masks_3: 50.00%
Predictions for masks_3: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 0.00%
Predictions for masks_2: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 60.00%
Test Accuracy for masks_3: 50.00%
Predictions for masks_3: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 50.00%
Predictions for masks_4: [2, 0, 2, 0, 2, 0, 2, 0, 2, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 0.00%
Predictions for masks_2: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [31/100], Total Loss: 21.2250
Epoch [32/100], Total Loss: 18.3087
Epoch [33/100], Total Loss: 32.1854
Epoch [34/100], Total Loss: 18.7562
Epoch [35/100], Total Loss: 24.5004
Epoch [36/100], Total Loss: 17.1246
Epoch [37/100], Total Loss: 23.1240
Epoch [38/100], Total Loss: 17.4892
Epoch [39/100], Total Loss: 22.4649
Epoch [40/100], Total Loss: 22.2580
======================4======================
Validation Accuracy: 70.00%
Validation Accuracy for masks_3: 50.00%
Predictions for masks_3: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 50.00%
Predictions for masks_2: [0, 1, 0, 1, 0, 1, 0, 1, 0, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 100.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [41/100], Total Loss: 16.0694
Epoch [42/100], Total Loss: 18.1949
Epoch [43/100], Total Loss: 21.0452
Epoch [44/100], Total Loss: 13.1798
Epoch [45/100], Total Loss: 15.6255
Epoch [46/100], Total Loss: 16.0609
Epoch [47/100], Total Loss: 14.9815
Epoch [48/100], Total Loss: 19.2240
Epoch [49/100], Total Loss: 14.9984
Epoch [50/100], Total Loss: 14.3808
======================4======================
Validation Accuracy: 80.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 50.00%
Predictions for masks_2: [2, 1, 2, 1, 2, 1, 2, 1, 2, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 90.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 50.00%
Predictions for masks_2: [0, 1, 0, 1, 0, 1, 0, 1, 0, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [51/100], Total Loss: 11.9769
Epoch [52/100], Total Loss: 11.8898
Epoch [53/100], Total Loss: 10.5176
Epoch [54/100], Total Loss: 12.4142
Epoch [55/100], Total Loss: 15.5921
Epoch [56/100], Total Loss: 11.6713
Epoch [57/100], Total Loss: 13.3969
Epoch [58/100], Total Loss: 12.2866
Epoch [59/100], Total Loss: 12.2898
Epoch [60/100], Total Loss: 31.0246
======================4======================
Validation Accuracy: 80.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 50.00%
Predictions for masks_1: [2, 0, 2, 0, 2, 0, 2, 0, 2, 0]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 70.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 50.00%
Predictions for masks_2: [0, 1, 0, 1, 0, 1, 0, 1, 0, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 0.00%
Predictions for masks_1: [1, 0, 1, 0, 1, 0, 1, 0, 1, 0]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [61/100], Total Loss: 10.5962
Epoch [62/100], Total Loss: 14.9481
Epoch [63/100], Total Loss: 7.7562
Epoch [64/100], Total Loss: 8.9656
Epoch [65/100], Total Loss: 11.5787
Epoch [66/100], Total Loss: 12.0292
Epoch [67/100], Total Loss: 15.6288
Epoch [68/100], Total Loss: 10.5477
Epoch [69/100], Total Loss: 10.5446
Epoch [70/100], Total Loss: 15.2953
======================4======================
Validation Accuracy: 90.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 100.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [71/100], Total Loss: 13.2273
Epoch [72/100], Total Loss: 13.1009
Epoch [73/100], Total Loss: 12.8404
Epoch [74/100], Total Loss: 11.8118
Epoch [75/100], Total Loss: 16.5605
Epoch [76/100], Total Loss: 7.5275
Epoch [77/100], Total Loss: 6.9632
Epoch [78/100], Total Loss: 14.4679
Epoch [79/100], Total Loss: 9.1145
Epoch [80/100], Total Loss: 9.5589
======================4======================
Validation Accuracy: 90.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 100.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [81/100], Total Loss: 12.3310
Epoch [82/100], Total Loss: 9.7166
Epoch [83/100], Total Loss: 8.4128
Epoch [84/100], Total Loss: 9.5248
Epoch [85/100], Total Loss: 9.4497
Epoch [86/100], Total Loss: 9.6225
Epoch [87/100], Total Loss: 8.9059
Epoch [88/100], Total Loss: 17.6598
Epoch [89/100], Total Loss: 15.1544
Epoch [90/100], Total Loss: 17.4004
======================4======================
Validation Accuracy: 80.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 50.00%
Predictions for masks_2: [0, 1, 0, 1, 0, 1, 0, 1, 0, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 90.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 50.00%
Predictions for masks_1: [2, 0, 2, 0, 2, 0, 2, 0, 2, 0]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [91/100], Total Loss: 9.1493
Epoch [92/100], Total Loss: 12.0215
Epoch [93/100], Total Loss: 12.0798
Epoch [94/100], Total Loss: 12.9475
Epoch [95/100], Total Loss: 9.1767
Epoch [96/100], Total Loss: 14.0466
Epoch [97/100], Total Loss: 10.6155
Epoch [98/100], Total Loss: 5.6461
Epoch [99/100], Total Loss: 16.8847
Epoch [100/100], Total Loss: 12.4182
======================4======================
Validation Accuracy: 80.00%
Validation Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 50.00%
Predictions for masks_2: [0, 1, 0, 1, 0, 1, 0, 1, 0, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 50.00%
Predictions for masks_6: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 90.00%
Test Accuracy for masks_3: 100.00%
Predictions for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 100.00%
Predictions for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 100.00%
Predictions for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 50.00%
Predictions for masks_1: [2, 0, 2, 0, 2, 0, 2, 0, 2, 0]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [1/100], Total Loss: 131.9110
Epoch [2/100], Total Loss: 112.9481
Epoch [3/100], Total Loss: 112.5011
Epoch [4/100], Total Loss: 104.3375
Epoch [5/100], Total Loss: 114.0054
Epoch [6/100], Total Loss: 114.8728
Epoch [7/100], Total Loss: 104.6512
Epoch [8/100], Total Loss: 103.4143
Epoch [9/100], Total Loss: 101.1928
Epoch [10/100], Total Loss: 94.5200
======================6======================
Validation Accuracy: 40.00%
Validation Accuracy for masks_3: 0.00%
Predictions for masks_3: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 0.00%
Predictions for masks_4: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 0.00%
Predictions for masks_2: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 40.00%
Test Accuracy for masks_3: 0.00%
Predictions for masks_3: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 0.00%
Predictions for masks_4: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 0.00%
Predictions for masks_2: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [11/100], Total Loss: 85.1930
Epoch [12/100], Total Loss: 79.5687
Epoch [13/100], Total Loss: 75.7432
Epoch [14/100], Total Loss: 67.9474
Epoch [15/100], Total Loss: 66.5710
Epoch [16/100], Total Loss: 65.1507
Epoch [17/100], Total Loss: 54.0834
Epoch [18/100], Total Loss: 50.8346
Epoch [19/100], Total Loss: 58.6881
Epoch [20/100], Total Loss: 49.0052
======================6======================
Validation Accuracy: 40.00%
Validation Accuracy for masks_3: 0.00%
Predictions for masks_3: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 0.00%
Predictions for masks_4: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 0.00%
Predictions for masks_2: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 50.00%
Test Accuracy for masks_3: 50.00%
Predictions for masks_3: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 0.00%
Predictions for masks_4: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 0.00%
Predictions for masks_2: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [21/100], Total Loss: 41.8863
Epoch [22/100], Total Loss: 50.4413
Epoch [23/100], Total Loss: 34.2025
Epoch [24/100], Total Loss: 42.1200
Epoch [25/100], Total Loss: 52.4173
Epoch [26/100], Total Loss: 31.6226
Epoch [27/100], Total Loss: 34.7445
Epoch [28/100], Total Loss: 33.1117
Epoch [29/100], Total Loss: 28.1901
Epoch [30/100], Total Loss: 29.8985
======================6======================
Validation Accuracy: 50.00%
Validation Accuracy for masks_3: 0.00%
Predictions for masks_3: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_4: 50.00%
Predictions for masks_4: [2, 0, 2, 0, 2, 0, 2, 0, 2, 0]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Validation Accuracy for masks_2: 0.00%
Predictions for masks_2: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Validation Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Validation Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy: 50.00%
Test Accuracy for masks_3: 50.00%
Predictions for masks_3: [0, 2, 0, 2, 0, 2, 0, 2, 0, 2]
Ground Truths for masks_3: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_4: 0.00%
Predictions for masks_4: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_4: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Test Accuracy for masks_2: 0.00%
Predictions for masks_2: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_2: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Test Accuracy for masks_1: 100.00%
Predictions for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_1: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Test Accuracy for masks_6: 100.00%
Predictions for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Ground Truths for masks_6: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
Epoch [31/100], Total Loss: 33.3369
Epoch [32/100], Total Loss: 34.9385
Epoch [33/100], Total Loss: 31.4342
Epoch [34/100], Total Loss: 27.7778
Epoch [35/100], Total Loss: 21.3245
Epoch [36/100], Total Loss: 30.1864
Epoch [37/100], Total Loss: 21.9840
Epoch [38/100], Total Loss: 24.5371
Epoch [39/100], Total Loss: 23.3519
Epoch [40/100], Total Loss: 18.8345
======================6======================