Data Enrichment - Tiling and Rotating#

 from google.colab import drive
 drive.mount('/content/drive')
Mounted at /content/drive
import os
import re
import numpy as np
import subprocess
import cv2
import math
import shutil
myPathLabel = '/content/drive/MyDrive/dataset/labels/validation'
myPathImages = '/content/drive/MyDrive/dataset/images/validation'

Tiling#

Wie im Abschnitt Model Evaluation erläutert, ist eine Möglichkeit zum Umgang mit großen Bilder das “Kacheln” (englisch tiling). Die besondere Herausforderung ist hierbei, dass sowohl die Bild-, wie auch die Labeldatein zerlegt werden müssen. Hierbei wird auf ein bereits vorhandenes Github-Repository von Neskorozhenyi [2021] zurückgegriffen.

#! git clone https://github.com/slanj/yolo-tiling.git
label_list = os.listdir(myPathLabel)
#image_list = os.listdir(myPathImages)
image_list = list()
for x in label_list:
  png = str.split(x, ".")[0] + ".png"
  image_list.append(png)
for file1 in image_list:
    src_path = '/content/drive/MyDrive/dataset/images/validation/' + file1
    dst_path = '/content/drive/MyDrive/dataset_tile/org/validation/' + file1
    shutil.copy(src_path, dst_path)
    #print('Copied')
for file1 in label_list:
    src_path = '/content/drive/MyDrive/dataset/labels/validation/' + file1
    dst_path = '/content/drive/MyDrive/dataset_tile/org/validation/' + file1
    shutil.copy(src_path, dst_path)
    #print('Copied')

Mit diesem Repository können nur Bilder mit Label (keine Backgroundbilder), deswegen werden diese herausgefiltert.

%cd yolo-tiling/
/content/yolo-tiling

Mit Aufruf der tile_yolo.py werden die Bilder und Labels im entsprechenden Ordner in Kacheln der Größe 640x640 Pixel zerlegt und in einem entsprechenden Zielordner ablegt. Dies wird für Trainings- und Validierungsdaten durchgeführt.

! python3 tile_yolo.py -source /content/drive/MyDrive/dataset_tile/org/validation -target /content/drive/MyDrive/dataset_tile/tiled/validation -ext .png -size 640
Streaming output truncated to the last 5000 lines.
[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1156_1_3.png
   class  ...         h
0      0  ...  0.292186
1      0  ...  0.256251
2      0  ...  0.272658
3      0  ...  0.321873

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1156_1_4.png
   class  ...         h
0      0  ...  0.091847
1      0  ...  0.292186

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1156_2_1.png
   class  ...         h
0      0  ...  0.252512

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1156_2_2.png
   class  ...         h
0      0  ...  0.286719
1      0  ...  0.302345
2      0  ...  0.252512

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1156_3_0.png
   class  ...         h
0      0  ...  0.451562
1      0  ...  0.167291

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1156_3_1.png
   class  ...         h
0      0  ...  0.038897
1      0  ...  0.441407
2      0  ...  0.451562

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1156_3_2.png
   class  ...         h
0      0  ...  0.038897

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1154.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1154_1_4.png
   class  ...         h
0      0  ...  0.160158
1      0  ...  0.162223
2      0  ...  0.160158
3      0  ...  0.192190

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1154_2_3.png
   class  ...         h
0      0  ...  0.040666
1      0  ...  0.340623

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1154_2_4.png
   class  ...         h
0      0  ...  0.340623
1      0  ...  0.137775

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1154_3_1.png
   class  ...         h
0      0  ...  0.134086

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1154_3_2.png
   class  ...         h
0      0  ...  0.134086
1      0  ...  0.184373
2      0  ...  0.183592
3      0  ...  0.162500
4      0  ...  0.169531
5      0  ...  0.166409
6      0  ...  0.172659

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1154_3_3.png
   class  ...         h
0      0  ...  0.172659
1      0  ...  0.151523

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1154_4_0.png
   class  ...         h
0      0  ...  0.157114
1      0  ...  0.203124

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1154_4_1.png
   class  ...         h
0      0  ...  0.157114
1      0  ...  0.203124
2      0  ...  0.212502
3      0  ...  0.185153
4      0  ...  0.208593
5      0  ...  0.200782
6      0  ...  0.183592
7      0  ...  0.058103

[8 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1154_4_2.png
   class  ...         h
0      0  ...  0.058103

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1397.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_0_2.png
   class  ...         h
0      0  ...  0.094675
1      0  ...  0.129991
2      0  ...  0.076858
3      0  ...  0.118997
4      0  ...  0.085157

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_0_3.png
   class  ...         h
0      0  ...  0.085157
1      0  ...  0.106709
2      0  ...  0.100898
3      0  ...  0.068900
4      0  ...  0.060936
5      0  ...  0.089536

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_0_4.png
   class  ...         h
0      0  ...  0.089536
1      0  ...  0.054066

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_0.png
   class  ...         h
0      0  ...  0.107029
1      0  ...  0.067966
2      0  ...  0.107029

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_1.png
    class  ...         h
0       0  ...  0.160361
1       0  ...  0.154975
2       0  ...  0.147691
3       0  ...  0.107029
4       0  ...  0.067966
5       0  ...  0.064061
6       0  ...  0.132033
7       0  ...  0.124218
8       0  ...  0.128908
9       0  ...  0.129688
10      0  ...  0.126563
11      0  ...  0.096875
12      0  ...  0.089060
13      0  ...  0.095315
14      0  ...  0.085935
15      0  ...  0.096875
16      0  ...  0.091405
17      0  ...  0.091405
18      0  ...  0.092190
19      0  ...  0.092970
20      0  ...  0.093750
21      0  ...  0.094530
22      0  ...  0.091405
23      0  ...  0.095315
24      0  ...  0.098440
25      0  ...  0.098440
26      0  ...  0.096875
27      0  ...  0.101565
28      0  ...  0.096875
29      0  ...  0.096095
30      0  ...  0.094530
31      0  ...  0.092970
32      0  ...  0.099220
33      0  ...  0.099220
34      0  ...  0.100000
35      0  ...  0.094530
36      0  ...  0.098440
37      0  ...  0.095315
38      0  ...  0.096875
39      0  ...  0.096095

[40 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_2.png
    class  ...         h
0       0  ...  0.147691
1       0  ...  0.092970
2       0  ...  0.097655
3       0  ...  0.091405
4       0  ...  0.100000
..    ...  ...       ...
56      0  ...  0.096095
57      0  ...  0.095315
58      0  ...  0.100000
59      0  ...  0.096875
60      0  ...  0.096875

[61 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_3.png
    class  ...         h
0       0  ...  0.092190
1       0  ...  0.091405
2       0  ...  0.100000
3       0  ...  0.095315
4       0  ...  0.099220
5       0  ...  0.093750
6       0  ...  0.093750
7       0  ...  0.095315
8       0  ...  0.094530
9       0  ...  0.092970
10      0  ...  0.093750
11      0  ...  0.096095
12      0  ...  0.091405
13      0  ...  0.096875
14      0  ...  0.094530
15      0  ...  0.101565
16      0  ...  0.096875
17      0  ...  0.094530
18      0  ...  0.093750
19      0  ...  0.093175
20      0  ...  0.109305
21      0  ...  0.115698
22      0  ...  0.100000
23      0  ...  0.096875
24      0  ...  0.097655
25      0  ...  0.101565
26      0  ...  0.101565
27      0  ...  0.095315
28      0  ...  0.096095
29      0  ...  0.098440
30      0  ...  0.100779
31      0  ...  0.100000
32      0  ...  0.099220
33      0  ...  0.097655
34      0  ...  0.100000
35      0  ...  0.096875
36      0  ...  0.099220
37      0  ...  0.100779
38      0  ...  0.098440
39      0  ...  0.103124
40      0  ...  0.096875
41      0  ...  0.096095
42      0  ...  0.099220
43      0  ...  0.096875
44      0  ...  0.096095
45      0  ...  0.137498
46      0  ...  0.119851
47      0  ...  0.124102
48      0  ...  0.158446
49      0  ...  0.159374
50      0  ...  0.147184
51      0  ...  0.115624
52      0  ...  0.123438
53      0  ...  0.126563

[54 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_4.png
   class  ...         h
0      0  ...  0.093175
1      0  ...  0.099220
2      0  ...  0.107029
3      0  ...  0.102344
4      0  ...  0.147184
5      0  ...  0.169369
6      0  ...  0.126563
7      0  ...  0.128123

[8 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_5.png
   class  ...         h
0      0  ...  0.196874
1      0  ...  0.062273

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_6.png
   class  ...         h
0      0  ...  0.196874
1      0  ...  0.062273
2      0  ...  0.167065
3      0  ...  0.257811
4      0  ...  0.273435
5      0  ...  0.149614

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_7.png
   class  ...         h
0      0  ...  0.257811
1      0  ...  0.260936
2      0  ...  0.230467
3      0  ...  0.257031
4      0  ...  0.251561
5      0  ...  0.248687
6      0  ...  0.107041
7      0  ...  0.149614

[8 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_8.png
   class  ...         h
0      0  ...  0.259376
1      0  ...  0.106511
2      0  ...  0.253126
3      0  ...  0.225783
4      0  ...  0.268750
5      0  ...  0.253906
6      0  ...  0.211387

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_9.png
    class  ...         h
0       0  ...  0.268750
1       0  ...  0.250001
2       0  ...  0.253906
3       0  ...  0.285940
4       0  ...  0.211387
5       0  ...  0.072880
6       0  ...  0.101829
7       0  ...  0.222167
8       0  ...  0.267185
9       0  ...  0.254686
10      0  ...  0.234377
11      0  ...  0.251561

[12 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_10.png
   class  ...         h
0      0  ...  0.222167
1      0  ...  0.254686
2      0  ...  0.251561
3      0  ...  0.264060
4      0  ...  0.256251
5      0  ...  0.257031
6      0  ...  0.202741
7      0  ...  0.079812

[8 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_11.png
   class  ...         h
0      0  ...  0.020649
1      0  ...  0.260936
2      0  ...  0.256251
3      0  ...  0.154750

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_1_12.png
   class  ...         h
0      0  ...  0.253906
1      0  ...  0.260156
2      0  ...  0.257811
3      0  ...  0.154750
4      0  ...  0.020646

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_0.png
   class  ...         h
0      0  ...  0.200779
1      0  ...  0.196094

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_1.png
    class  ...         h
0       0  ...  0.183595
1       0  ...  0.188280
2       0  ...  0.193749
3       0  ...  0.197654
4       0  ...  0.196094
5       0  ...  0.202344
6       0  ...  0.200779
7       0  ...  0.196094
8       0  ...  0.035731
9       0  ...  0.036432
10      0  ...  0.043716

[11 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_2.png
    class  ...         h
0       0  ...  0.188280
1       0  ...  0.195315
2       0  ...  0.195315
3       0  ...  0.184375
4       0  ...  0.186720
5       0  ...  0.188280
6       0  ...  0.196874
7       0  ...  0.183595
8       0  ...  0.074387
9       0  ...  0.090176
10      0  ...  0.043716
11      0  ...  0.053808
12      0  ...  0.072584
13      0  ...  0.067756
14      0  ...  0.056343
15      0  ...  0.092348
16      0  ...  0.097474

[17 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_3.png
    class  ...         h
0       0  ...  0.195315
1       0  ...  0.192970
2       0  ...  0.183595
3       0  ...  0.191404
4       0  ...  0.187500
5       0  ...  0.199999
6       0  ...  0.188280
7       0  ...  0.192970
8       0  ...  0.195315
9       0  ...  0.101357
10      0  ...  0.089131
11      0  ...  0.072584
12      0  ...  0.097474
13      0  ...  0.097869
14      0  ...  0.095427

[15 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_4.png
   class  ...         h
0      0  ...  0.101357
1      0  ...  0.199999
2      0  ...  0.192970
3      0  ...  0.196874
4      0  ...  0.190625

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_5.png
   class  ...         h
0      0  ...  0.131479
1      0  ...  0.194529
2      0  ...  0.198439
3      0  ...  0.198439
4      0  ...  0.194529
5      0  ...  0.025977

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_6.png
    class  ...         h
0       0  ...  0.131479
1       0  ...  0.033716
2       0  ...  0.199219
3       0  ...  0.194529
4       0  ...  0.198439
5       0  ...  0.198439
6       0  ...  0.194529
7       0  ...  0.198439
8       0  ...  0.192190
9       0  ...  0.196094
10      0  ...  0.107420
11      0  ...  0.260936
12      0  ...  0.194529
13      0  ...  0.124484
14      0  ...  0.025977
15      0  ...  0.194529
16      0  ...  0.082909
17      0  ...  0.223311
18      0  ...  0.268750
19      0  ...  0.255471

[20 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_7.png
    class  ...         h
0       0  ...  0.254686
1       0  ...  0.010686
2       0  ...  0.138273
3       0  ...  0.258596
4       0  ...  0.246091
5       0  ...  0.260936
6       0  ...  0.246877
7       0  ...  0.255471
8       0  ...  0.183897
9       0  ...  0.046489
10      0  ...  0.107420
11      0  ...  0.260936
12      0  ...  0.255471

[13 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_8.png
    class  ...         h
0       0  ...  0.042817
1       0  ...  0.174013
2       0  ...  0.259376
3       0  ...  0.228908
4       0  ...  0.260936
5       0  ...  0.259376
6       0  ...  0.258596
7       0  ...  0.146613
8       0  ...  0.044082
9       0  ...  0.256251
10      0  ...  0.255471
11      0  ...  0.262501
12      0  ...  0.156060

[13 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_9.png
    class  ...         h
0       0  ...  0.001493
1       0  ...  0.154097
2       0  ...  0.259376
3       0  ...  0.257811
4       0  ...  0.254686
5       0  ...  0.252341
6       0  ...  0.260156
7       0  ...  0.255471
8       0  ...  0.012495
9       0  ...  0.044082
10      0  ...  0.174774
11      0  ...  0.256251
12      0  ...  0.190625
13      0  ...  0.255471
14      0  ...  0.233592
15      0  ...  0.262501
16      0  ...  0.263281
17      0  ...  0.156060
18      0  ...  0.159889
19      0  ...  0.034867

[20 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_10.png
    class  ...         h
0       0  ...  0.154097
1       0  ...  0.257811
2       0  ...  0.252341
3       0  ...  0.255471
4       0  ...  0.034867
5       0  ...  0.259376
6       0  ...  0.044913
7       0  ...  0.178782
8       0  ...  0.256251
9       0  ...  0.257031
10      0  ...  0.255471
11      0  ...  0.253126
12      0  ...  0.250781
13      0  ...  0.140366
14      0  ...  0.009920

[15 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_11.png
   class  ...         h
0      0  ...  0.210866
1      0  ...  0.253126
2      0  ...  0.256251
3      0  ...  0.234820
4      0  ...  0.105408
5      0  ...  0.258596
6      0  ...  0.081885

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_2_12.png
   class  ...         h
0      0  ...  0.251561
1      0  ...  0.105408
2      0  ...  0.242637
3      0  ...  0.260156
4      0  ...  0.258596
5      0  ...  0.081885

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_3_1.png
    class  ...         h
0       0  ...  0.157811
1       0  ...  0.043149
2       0  ...  0.042786
3       0  ...  0.043745
4       0  ...  0.041682
5       0  ...  0.044725
6       0  ...  0.045882
7       0  ...  0.046873
8       0  ...  0.045895
9       0  ...  0.045909
10      0  ...  0.053474
11      0  ...  0.047837

[12 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_3_2.png
    class  ...         h
0       0  ...  0.124218
1       0  ...  0.042019
2       0  ...  0.199219
3       0  ...  0.102010
4       0  ...  0.199999
5       0  ...  0.104529
6       0  ...  0.199999
7       0  ...  0.055083
8       0  ...  0.051565
9       0  ...  0.052540
10      0  ...  0.053304
11      0  ...  0.050978
12      0  ...  0.055039
13      0  ...  0.055240
14      0  ...  0.056794
15      0  ...  0.055649
16      0  ...  0.055811
17      0  ...  0.055838
18      0  ...  0.049591
19      0  ...  0.098618
20      0  ...  0.053336

[21 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_3_3.png
    class  ...         h
0       0  ...  0.199999
1       0  ...  0.055838
2       0  ...  0.058581
3       0  ...  0.060339
4       0  ...  0.098618
5       0  ...  0.209373
6       0  ...  0.107602
7       0  ...  0.193749
8       0  ...  0.098325
9       0  ...  0.190625
10      0  ...  0.100000
11      0  ...  0.105469
12      0  ...  0.105469
13      0  ...  0.102344
14      0  ...  0.060588
15      0  ...  0.065987
16      0  ...  0.065895
17      0  ...  0.064492
18      0  ...  0.063669
19      0  ...  0.063054
20      0  ...  0.062442
21      0  ...  0.062123
22      0  ...  0.068421

[23 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_3_5.png
   class  ...         h
0      0  ...  0.169335
1      0  ...  0.198439
2      0  ...  0.189845
3      0  ...  0.197654
4      0  ...  0.195315
5      0  ...  0.189845

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_3_6.png
    class  ...         h
0       0  ...  0.067702
1       0  ...  0.169335
2       0  ...  0.196094
3       0  ...  0.198439
4       0  ...  0.202344
5       0  ...  0.189845
6       0  ...  0.197654
7       0  ...  0.195315
8       0  ...  0.196094
9       0  ...  0.189845
10      0  ...  0.023014
11      0  ...  0.169011
12      0  ...  0.260936
13      0  ...  0.260936
14      0  ...  0.261721
15      0  ...  0.261721
16      0  ...  0.256251
17      0  ...  0.247657
18      0  ...  0.169435
19      0  ...  0.043876

[20 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_3_7.png
   class  ...         h
0      0  ...  0.269530
1      0  ...  0.070792
2      0  ...  0.199605
3      0  ...  0.253906
4      0  ...  0.249996
5      0  ...  0.256251

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_3_8.png
    class  ...         h
0       0  ...  0.251561
1       0  ...  0.097078
2       0  ...  0.279690
3       0  ...  0.256251
4       0  ...  0.261721
5       0  ...  0.260156
6       0  ...  0.238435
7       0  ...  0.082235
8       0  ...  0.104098
9       0  ...  0.258596
10      0  ...  0.277345
11      0  ...  0.263281
12      0  ...  0.155881
13      0  ...  0.011062

[14 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_3_9.png
    class  ...         h
0       0  ...  0.254686
1       0  ...  0.251561
2       0  ...  0.222634
3       0  ...  0.097078
4       0  ...  0.058633
5       0  ...  0.254686
6       0  ...  0.280470
7       0  ...  0.253906
8       0  ...  0.246877
9       0  ...  0.246091
10      0  ...  0.194599
11      0  ...  0.098247
12      0  ...  0.279690
13      0  ...  0.261721
14      0  ...  0.256251
15      0  ...  0.244539
16      0  ...  0.104098

[17 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_3_10.png
    class  ...         h
0       0  ...  0.058633
1       0  ...  0.280470
2       0  ...  0.246877
3       0  ...  0.246091
4       0  ...  0.098247
5       0  ...  0.114323
6       0  ...  0.246329
7       0  ...  0.262501
8       0  ...  0.263281
9       0  ...  0.250781
10      0  ...  0.256251
11      0  ...  0.258596
12      0  ...  0.216257
13      0  ...  0.081644

[14 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_3_11.png
   class  ...         h
0      0  ...  0.038352
1      0  ...  0.260936
2      0  ...  0.175928
3      0  ...  0.253906
4      0  ...  0.264060
5      0  ...  0.253126
6      0  ...  0.001316
7      0  ...  0.255471
8      0  ...  0.257031

[9 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_3_12.png
   class  ...         h
0      0  ...  0.175928
1      0  ...  0.253906
2      0  ...  0.264060
3      0  ...  0.260936
4      0  ...  0.253126
5      0  ...  0.136907
6      0  ...  0.001316

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_0.png
   class  ...         h
0      0  ...  0.098440
1      0  ...  0.102344
2      0  ...  0.096095
3      0  ...  0.103904
4      0  ...  0.092190

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_1.png
    class  ...         h
0       0  ...  0.083596
1       0  ...  0.049818
2       0  ...  0.054091
3       0  ...  0.055472
4       0  ...  0.051286
5       0  ...  0.047462
6       0  ...  0.087500
7       0  ...  0.088280
8       0  ...  0.048651
9       0  ...  0.048440
10      0  ...  0.052542
11      0  ...  0.089060
12      0  ...  0.097655
13      0  ...  0.047844
14      0  ...  0.085155
15      0  ...  0.046528
16      0  ...  0.048256
17      0  ...  0.090625
18      0  ...  0.099220
19      0  ...  0.095315
20      0  ...  0.110154
21      0  ...  0.097655
22      0  ...  0.095315
23      0  ...  0.097655
24      0  ...  0.096095
25      0  ...  0.098440
26      0  ...  0.102344

[27 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_2.png
    class  ...         h
0       0  ...  0.044919
1       0  ...  0.046092
2       0  ...  0.045117
3       0  ...  0.086720
4       0  ...  0.083596
5       0  ...  0.086720
6       0  ...  0.107814
7       0  ...  0.106249
8       0  ...  0.109374
9       0  ...  0.044354
10      0  ...  0.043555
11      0  ...  0.038713
12      0  ...  0.039293
13      0  ...  0.090625
14      0  ...  0.036959
15      0  ...  0.037319
16      0  ...  0.041846
17      0  ...  0.037129
18      0  ...  0.107814
19      0  ...  0.109374
20      0  ...  0.106249
21      0  ...  0.115624
22      0  ...  0.110939
23      0  ...  0.110939
24      0  ...  0.040251
25      0  ...  0.089845
26      0  ...  0.044321
27      0  ...  0.107814
28      1  ...  0.094530
29      1  ...  0.092970
30      1  ...  0.100000
31      1  ...  0.100779
32      1  ...  0.103124
33      1  ...  0.099220
34      1  ...  0.124218
35      1  ...  0.100779
36      1  ...  0.103904
37      1  ...  0.103904
38      1  ...  0.100779
39      1  ...  0.097655

[40 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_3.png
    class  ...         h
0       0  ...  0.110939
1       0  ...  0.037129
2       0  ...  0.110939
3       0  ...  0.035171
4       0  ...  0.036539
5       0  ...  0.107814
6       0  ...  0.036290
7       0  ...  0.033230
8       0  ...  0.027072
9       0  ...  0.034725
10      0  ...  0.033208
11      0  ...  0.116409
12      0  ...  0.113279
13      0  ...  0.108594
14      0  ...  0.111719
15      0  ...  0.108594
16      0  ...  0.102344
17      0  ...  0.113279
18      0  ...  0.030698
19      0  ...  0.031310
20      0  ...  0.031630
21      0  ...  0.033140
22      0  ...  0.106249
23      0  ...  0.110154
24      0  ...  0.110939
25      0  ...  0.112499
26      0  ...  0.109374
27      0  ...  0.108594

[28 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_5.png
   class  ...         h
0      0  ...  0.196094

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_6.png
   class  ...         h
0      0  ...  0.257031
1      0  ...  0.196094
2      0  ...  0.257811
3      0  ...  0.272655
4      0  ...  0.207456
5      0  ...  0.100522

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_7.png
   class  ...         h
0      0  ...  0.002347
1      0  ...  0.256251
2      0  ...  0.261721
3      0  ...  0.257031

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_8.png
   class  ...         h
0      0  ...  0.163860
1      0  ...  0.252341
2      0  ...  0.238282
3      0  ...  0.123806
4      0  ...  0.288279
5      0  ...  0.276565
6      0  ...  0.267971
7      0  ...  0.271095
8      0  ...  0.242847

[9 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_9.png
    class  ...         h
0       0  ...  0.038304
1       0  ...  0.163860
2       0  ...  0.261721
3       0  ...  0.252341
4       0  ...  0.238282
5       0  ...  0.237502
6       0  ...  0.261721
7       0  ...  0.257811
8       0  ...  0.264060
9       0  ...  0.256251
10      0  ...  0.295008
11      0  ...  0.129650

[12 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_10.png
   class  ...         h
0      0  ...  0.257811
1      0  ...  0.256251
2      0  ...  0.129650
3      0  ...  0.257811
4      0  ...  0.042336
5      0  ...  0.172265
6      0  ...  0.254686
7      0  ...  0.263281
8      0  ...  0.257031
9      0  ...  0.255471

[10 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_11.png
   class  ...         h
0      0  ...  0.187023
1      0  ...  0.262747
2      0  ...  0.258596
3      0  ...  0.257031

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1397_4_12.png
   class  ...         h
0      0  ...  0.187023
1      0  ...  0.120126
2      0  ...  0.262747
3      0  ...  0.253906
4      0  ...  0.258596
5      0  ...  0.258596
6      0  ...  0.257031
7      0  ...  0.259376

[8 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P0841.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P0841_0_0.png
   class  ...         h
0      0  ...  0.204701
1      0  ...  0.145890
2      0  ...  0.200783

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0841_0_1.png
   class  ...         h
0      0  ...  0.146095
1      0  ...  0.090873

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0841_1_0.png
   class  ...         h
0      0  ...  0.240626
1      0  ...  0.183592
2      0  ...  0.007801
3      0  ...  0.165623
4      0  ...  0.069631
5      0  ...  0.051767

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0841_1_1.png
   class  ...         h
0      0  ...  0.108348
1      0  ...  0.031817

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0841_1_2.png
   class  ...         h
0      0  ...  0.166406
1      0  ...  0.185156
2      0  ...  0.210936

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0841_2_0.png
   class  ...         h
0      0  ...  0.116304

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0841_2_1.png
   class  ...         h
0      0  ...  0.152559
1      0  ...  0.217188

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0841_2_2.png
   class  ...         h
0      0  ...  0.163738
1      0  ...  0.210154
2      0  ...  0.190626

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0841_3_1.png
   class  ...         h
0      0  ...  0.186866
1      0  ...  0.153907
2      0  ...  0.192967

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0841_3_2.png
   class  ...         h
0      0  ...  0.217970
1      0  ...  0.008917

[2 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P2689.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_1_6.png
   class  ...         h
0      0  ...  0.166406
1      0  ...  0.088601

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_1_7.png
   class  ...         h
0      0  ...  0.048436
1      0  ...  0.112502
2      0  ...  0.016200
3      0  ...  0.040627
4      0  ...  0.101561
5      0  ...  0.061719
6      0  ...  0.037501
7      0  ...  0.058593

[8 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_1_8.png
   class  ...         h
0      0  ...  0.057814
1      0  ...  0.048436
2      0  ...  0.112502
3      0  ...  0.034375
4      0  ...  0.079685
5      0  ...  0.039064
6      0  ...  0.057814

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_2_1.png
   class  ...         h
0      0  ...  0.012220
1      0  ...  0.001439
2      0  ...  0.094530

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_2_2.png
   class  ...        h
0      0  ...  0.01222

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_2_4.png
   class  ...         h
0      0  ...  0.093752
1      0  ...  0.040369
2      0  ...  0.082032
3      0  ...  0.091405
4      0  ...  0.085158
5      0  ...  0.093752

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_2_5.png
   class  ...         h
0      0  ...  0.091405
1      0  ...  0.050783
2      0  ...  0.045310
3      0  ...  0.088284
4      0  ...  0.051562

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_2_6.png
   class  ...         h
0      0  ...  0.034837
1      0  ...  0.051562

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_2_7.png
   class  ...         h
0      0  ...  0.056251
1      0  ...  0.054113

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_3_0.png
   class  ...         h
0      0  ...  0.196092
1      0  ...  0.164064
2      0  ...  0.057079
3      0  ...  0.232813

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_3_1.png
   class  ...         h
0      0  ...  0.084653
1      0  ...  0.106250
2      0  ...  0.191408
3      0  ...  0.171874
4      0  ...  0.104687
5      0  ...  0.166406
6      0  ...  0.190748
7      0  ...  0.196092
8      0  ...  0.057079

[9 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_3_2.png
   class  ...         h
0      0  ...  0.084653
1      0  ...  0.203906
2      0  ...  0.104687

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_3_3.png
   class  ...         h
0      0  ...  0.110939
1      0  ...  0.107029
2      0  ...  0.106250
3      0  ...  0.084374

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_3_4.png
   class  ...         h
0      0  ...  0.055467
1      0  ...  0.109376
2      0  ...  0.082032
3      0  ...  0.089063
4      0  ...  0.038537

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_3_6.png
   class  ...         h
0      0  ...  0.099998

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_4_0.png
   class  ...         h
0      0  ...  0.052298

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2689_4_1.png
   class  ...         h
0      0  ...  0.052298

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1390.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_0_0.png
   class  ...         h
0      0  ...  0.201211

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_0_1.png
   class  ...         h
0      0  ...  0.195884
1      0  ...  0.193425
2      0  ...  0.193650
3      0  ...  0.201211

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_0_2.png
   class  ...        h
0      0  ...  0.19365

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_0_3.png
   class  ...         h
0      0  ...  0.209376
1      0  ...  0.222654
2      0  ...  0.217189
3      0  ...  0.217189
4      0  ...  0.219532
5      0  ...  0.151168
6      0  ...  0.153066
7      0  ...  0.110359
8      0  ...  0.143704
9      0  ...  0.131557

[10 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_0_4.png
    class  ...         h
0       0  ...  0.219532
1       0  ...  0.131557
2       0  ...  0.127210
3       0  ...  0.120641
4       0  ...  0.112201
5       0  ...  0.107968
6       0  ...  0.102046
7       0  ...  0.227345
8       0  ...  0.223438
9       0  ...  0.221875
10      0  ...  0.223438
11      0  ...  0.221096

[12 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_0_5.png
   class  ...         h
0      0  ...  0.102046
1      0  ...  0.096743
2      0  ...  0.227345
3      0  ...  0.160707
4      0  ...  0.148373
5      0  ...  0.199221

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_0_6.png
   class  ...         h
0      0  ...  0.148373
1      0  ...  0.145478
2      0  ...  0.135042
3      0  ...  0.124155
4      0  ...  0.200000
5      0  ...  0.192967
6      0  ...  0.182811
7      0  ...  0.189060
8      0  ...  0.199221

[9 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_0_7.png
   class  ...         h
0      0  ...  0.111429
1      0  ...  0.124155
2      0  ...  0.200000
3      0  ...  0.190624
4      0  ...  0.188281

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_0_8.png
   class  ...         h
0      0  ...  0.197657
1      0  ...  0.189060
2      0  ...  0.192967
3      0  ...  0.188281

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_1_0.png
   class  ...         h
0      0  ...  0.289905
1      0  ...  0.093318

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_1_1.png
    class  ...         h
0       0  ...  0.289905
1       0  ...  0.100993
2       0  ...  0.295312
3       0  ...  0.298439
4       0  ...  0.113608
5       0  ...  0.309374
6       0  ...  0.117289
7       0  ...  0.287165
8       0  ...  0.275802
9       0  ...  0.265523
10      0  ...  0.093318

[11 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_1_2.png
   class  ...         h
0      0  ...  0.223438
1      0  ...  0.309374
2      0  ...  0.117289
3      0  ...  0.265523
4      0  ...  0.058533

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_1_3.png
    class  ...         h
0       0  ...  0.226561
1       0  ...  0.221096
2       0  ...  0.222654
3       0  ...  0.220311
4       0  ...  0.223438
5       0  ...  0.220311
6       0  ...  0.226561
7       0  ...  0.228908
8       0  ...  0.222654
9       0  ...  0.221096
10      0  ...  0.023767
11      0  ...  0.049975
12      0  ...  0.048634
13      0  ...  0.036733
14      0  ...  0.058533
15      0  ...  0.066801
16      0  ...  0.069589
17      0  ...  0.074795
18      0  ...  0.076608
19      0  ...  0.084849

[20 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_1_4.png
    class  ...         h
0       0  ...  0.204686
1       0  ...  0.221875
2       0  ...  0.221875
3       0  ...  0.218748
4       0  ...  0.210940
5       0  ...  0.218748
6       0  ...  0.221096
7       0  ...  0.206249
8       0  ...  0.226561
9       0  ...  0.218748
10      0  ...  0.225781
11      0  ...  0.220311
12      0  ...  0.019498
13      0  ...  0.036733
14      0  ...  0.033553
15      0  ...  0.022819
16      0  ...  0.018305
17      0  ...  0.005438
18      0  ...  0.084849
19      0  ...  0.092323
20      0  ...  0.098892
21      0  ...  0.103425
22      0  ...  0.110781
23      0  ...  0.115924

[24 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_1_5.png
    class  ...         h
0       0  ...  0.221875
1       0  ...  0.220311
2       0  ...  0.218748
3       0  ...  0.005438
4       0  ...  0.001588
5       0  ...  0.115924
6       0  ...  0.122790
7       0  ...  0.190624
8       0  ...  0.032261
9       0  ...  0.037566
10      0  ...  0.185154
11      0  ...  0.092913
12      0  ...  0.098214

[13 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_1_6.png
    class  ...         h
0       0  ...  0.037566
1       0  ...  0.045147
2       0  ...  0.058710
3       0  ...  0.068812
4       0  ...  0.185154
5       0  ...  0.186717
6       0  ...  0.186717
7       0  ...  0.195314
8       0  ...  0.048125
9       0  ...  0.055841
10      0  ...  0.062096
11      0  ...  0.068304
12      0  ...  0.081095
13      0  ...  0.092913

[14 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_1_7.png
   class  ...         h
0      0  ...  0.034790
1      0  ...  0.048706
2      0  ...  0.200779
3      0  ...  0.191408
4      0  ...  0.189060
5      0  ...  0.192967
6      0  ...  0.076069
7      0  ...  0.068812
8      0  ...  0.191408
9      0  ...  0.048125

[10 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_1_8.png
    class  ...         h
0       0  ...  0.011300
1       0  ...  0.000276
2       0  ...  0.034790
3       0  ...  0.024600
4       0  ...  0.194530
5       0  ...  0.194530
6       0  ...  0.191408
7       0  ...  0.210940
8       0  ...  0.200779
9       0  ...  0.189060
10      0  ...  0.198437
11      0  ...  0.192967
12      0  ...  0.187502
13      0  ...  0.152148
14      0  ...  0.169802
15      0  ...  0.174069
16      0  ...  0.188540

[17 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_2_0.png
   class  ...         h
0      0  ...  0.025719

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_2_1.png
   class  ...         h
0      0  ...  0.025719
1      0  ...  0.021430
2      0  ...  0.028887
3      0  ...  0.036819

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_2_2.png
   class  ...         h
0      0  ...  0.036819
1      0  ...  0.156310

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_2_3.png
    class  ...         h
0       0  ...  0.214062
1       0  ...  0.221096
2       0  ...  0.221096
3       0  ...  0.215626
4       0  ...  0.225781
5       0  ...  0.227345
6       0  ...  0.224218
7       0  ...  0.221096
8       0  ...  0.222654
9       0  ...  0.224218
10      0  ...  0.221096
11      0  ...  0.217189
12      0  ...  0.224218
13      0  ...  0.225002
14      0  ...  0.208592
15      0  ...  0.160608
16      0  ...  0.172681
17      0  ...  0.174021
18      0  ...  0.176546
19      0  ...  0.156310

[20 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_2_4.png
    class  ...         h
0       0  ...  0.223438
1       0  ...  0.225781
2       0  ...  0.212939
3       0  ...  0.227345
4       0  ...  0.228124
5       0  ...  0.207812
6       0  ...  0.224218
7       0  ...  0.220311
8       0  ...  0.221096
9       0  ...  0.197119
10      0  ...  0.204511
11      0  ...  0.208592
12      0  ...  0.223438
13      0  ...  0.196129
14      0  ...  0.176546
15      0  ...  0.190666
16      0  ...  0.194367
17      0  ...  0.205914
18      0  ...  0.208625
19      0  ...  0.222654
20      0  ...  0.224218
21      0  ...  0.221875
22      0  ...  0.221096

[23 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_2_5.png
    class  ...         h
0       0  ...  0.221096
1       0  ...  0.217969
2       0  ...  0.197119
3       0  ...  0.208625
4       0  ...  0.214039
5       0  ...  0.222654
6       0  ...  0.201946
7       0  ...  0.247656
8       0  ...  0.136775
9       0  ...  0.122878
10      0  ...  0.228908

[11 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_2_6.png
    class  ...         h
0       0  ...  0.178865
1       0  ...  0.186734
2       0  ...  0.247656
3       0  ...  0.262502
4       0  ...  0.264061
5       0  ...  0.266409
6       0  ...  0.257812
7       0  ...  0.222654
8       0  ...  0.182343
9       0  ...  0.169941
10      0  ...  0.163687
11      0  ...  0.152788
12      0  ...  0.147030
13      0  ...  0.136775
14      0  ...  0.228908
15      0  ...  0.225002
16      0  ...  0.229688
17      0  ...  0.227345
18      0  ...  0.226561

[19 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_2_7.png
   class  ...         h
0      0  ...  0.194530
1      0  ...  0.147243
2      0  ...  0.189844
3      0  ...  0.189060
4      0  ...  0.140355
5      0  ...  0.257812
6      0  ...  0.227345
7      0  ...  0.222654
8      0  ...  0.182343

[9 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_2_8.png
    class  ...         h
0       0  ...  0.191408
1       0  ...  0.176197
2       0  ...  0.179414
3       0  ...  0.201564
4       0  ...  0.196873
5       0  ...  0.203127
6       0  ...  0.194530
7       0  ...  0.147243
8       0  ...  0.189060
9       0  ...  0.186717
10      0  ...  0.181252
11      0  ...  0.186717
12      0  ...  0.165245
13      0  ...  0.035350
14      0  ...  0.020823
15      0  ...  0.015777
16      0  ...  0.005212

[17 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_3_0.png
   class  ...         h
0      0  ...  0.193350
1      0  ...  0.159413

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_3_1.png
   class  ...         h
0      0  ...  0.099036
1      0  ...  0.159413
2      0  ...  0.340128
3      0  ...  0.157036

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_3_3.png
    class  ...         h
0       0  ...  0.223438
1       0  ...  0.221096
2       0  ...  0.221875
3       0  ...  0.210156
4       0  ...  0.216405
5       0  ...  0.139269
6       0  ...  0.225002
7       0  ...  0.220311
8       0  ...  0.192187
9       0  ...  0.229688
10      0  ...  0.224218
11      0  ...  0.173061
12      0  ...  0.228571

[13 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_3_4.png
    class  ...         h
0       0  ...  0.216405
1       0  ...  0.217189
2       0  ...  0.217189
3       0  ...  0.221875
4       0  ...  0.217189
5       0  ...  0.002688
6       0  ...  0.224218
7       0  ...  0.007814
8       0  ...  0.017723
9       0  ...  0.013458
10      0  ...  0.225002
11      0  ...  0.222654
12      0  ...  0.218748
13      0  ...  0.218748
14      0  ...  0.225002
15      0  ...  0.080578
16      0  ...  0.084504
17      0  ...  0.076411

[18 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_3_5.png
   class  ...         h
0      0  ...  0.221096
1      0  ...  0.017723
2      0  ...  0.225002
3      0  ...  0.039525
4      0  ...  0.192187
5      0  ...  0.047275

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_3_6.png
   class  ...         h
0      0  ...  0.190624
1      0  ...  0.021048
2      0  ...  0.056639
3      0  ...  0.171643
4      0  ...  0.039525
5      0  ...  0.192187
6      0  ...  0.192187
7      0  ...  0.186717
8      0  ...  0.071914
9      0  ...  0.067952

[10 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_3_7.png
   class  ...         h
0      0  ...  0.188281
1      0  ...  0.182811
2      0  ...  0.187502
3      0  ...  0.189844
4      0  ...  0.145184
5      0  ...  0.127484

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1390_3_8.png
    class  ...         h
0       0  ...  0.192187
1       0  ...  0.195314
2       0  ...  0.189060
3       0  ...  0.092561
4       0  ...  0.091826
5       0  ...  0.104283
6       0  ...  0.188281
7       0  ...  0.191408
8       0  ...  0.188281
9       0  ...  0.187502
10      0  ...  0.197657
11      0  ...  0.186717
12      0  ...  0.195314
13      0  ...  0.185938
14      0  ...  0.121201
15      0  ...  0.197657
16      0  ...  0.196094
17      0  ...  0.191408
18      0  ...  0.189844
19      0  ...  0.127484

[20 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1384.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1384_2_2.png
    class  ...         h
0       0  ...  0.024997
1       0  ...  0.032031
2       0  ...  0.024997
3       0  ...  0.024997
4       0  ...  0.021096
5       0  ...  0.023438
6       0  ...  0.023438
7       0  ...  0.011747
8       0  ...  0.022654
9       0  ...  0.028906
10      0  ...  0.052344
11      0  ...  0.025780
12      0  ...  0.039841
13      0  ...  0.032815
14      0  ...  0.039066
15      0  ...  0.034373
16      0  ...  0.047660

[17 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1384_2_3.png
   class  ...         h
0      0  ...  0.011747
1      0  ...  0.007965
2      0  ...  0.035157
3      0  ...  0.030473
4      0  ...  0.036716
5      0  ...  0.035941
6      0  ...  0.034373
7      1  ...  0.039066
8      1  ...  0.037499
9      1  ...  0.035941

[10 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1384_2_4.png
   class  ...         h
0      0  ...  0.038283

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1384_3_2.png
    class  ...         h
0       0  ...  0.029689
1       0  ...  0.028122
2       0  ...  0.038283
3       0  ...  0.034373
4       0  ...  0.039841
5       0  ...  0.028906
6       0  ...  0.034373
7       0  ...  0.014038
8       0  ...  0.027347
9       0  ...  0.028906
10      0  ...  0.019529
11      0  ...  0.024997
12      0  ...  0.024222
13      0  ...  0.023438
14      0  ...  0.035157
15      0  ...  0.034373
16      0  ...  0.033590
17      0  ...  0.032031
18      0  ...  0.031248
19      0  ...  0.024997
20      0  ...  0.024997
21      0  ...  0.023438
22      0  ...  0.024997
23      0  ...  0.035941
24      0  ...  0.022654
25      0  ...  0.030473
26      0  ...  0.033590
27      0  ...  0.034373
28      0  ...  0.034373
29      0  ...  0.034373
30      0  ...  0.035157
31      0  ...  0.026564
32      0  ...  0.037499
33      0  ...  0.035941
34      0  ...  0.035157
35      0  ...  0.045106
36      0  ...  0.032815
37      0  ...  0.040625
38      0  ...  0.032815
39      0  ...  0.035941
40      0  ...  0.034373
41      0  ...  0.038283
42      0  ...  0.034373
43      0  ...  0.035157
44      0  ...  0.031248
45      0  ...  0.035157
46      0  ...  0.032031
47      0  ...  0.031248
48      0  ...  0.036716
49      0  ...  0.039568

[50 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1384_3_3.png
    class  ...         h
0       0  ...  0.014038
1       0  ...  0.032815
2       0  ...  0.031248
3       0  ...  0.035941
4       0  ...  0.032815
5       0  ...  0.032031
6       0  ...  0.033590
7       0  ...  0.028906
8       0  ...  0.030473
9       0  ...  0.024997
10      0  ...  0.028122
11      0  ...  0.026564
12      0  ...  0.028122
13      0  ...  0.035941
14      0  ...  0.051560
15      0  ...  0.032815
16      0  ...  0.031248
17      0  ...  0.037499
18      0  ...  0.037499
19      0  ...  0.029689
20      0  ...  0.028906
21      0  ...  0.028122
22      0  ...  0.027347
23      0  ...  0.023438
24      0  ...  0.036716
25      0  ...  0.034373
26      0  ...  0.040625
27      0  ...  0.035941
28      0  ...  0.028906
29      0  ...  0.017036
30      0  ...  0.021871
31      0  ...  0.024222
32      0  ...  0.039568
33      0  ...  0.032124
34      0  ...  0.031248
35      0  ...  0.033590
36      0  ...  0.035157
37      0  ...  0.018239
38      0  ...  0.037499
39      0  ...  0.032815
40      0  ...  0.039841
41      0  ...  0.035941
42      0  ...  0.040625
43      0  ...  0.034373
44      0  ...  0.033590
45      0  ...  0.031248
46      0  ...  0.035941
47      0  ...  0.035941

[48 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1384_3_4.png
    class  ...         h
0       0  ...  0.044534
1       0  ...  0.033590
2       0  ...  0.024997
3       0  ...  0.032815
4       0  ...  0.033590
5       0  ...  0.041408
6       0  ...  0.039841
7       0  ...  0.050785
8       0  ...  0.028122
9       0  ...  0.029689
10      0  ...  0.024222
11      0  ...  0.027347
12      0  ...  0.034373
13      0  ...  0.035157

[14 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1384_4_2.png
   class  ...         h
0      0  ...  0.054110
1      0  ...  0.044028

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1384_4_3.png
   class  ...         h
0      0  ...  0.044028
1      0  ...  0.010064
2      0  ...  0.064847
3      0  ...  0.011446
4      0  ...  0.029689
5      0  ...  0.028122
6      0  ...  0.033590

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1384_4_4.png
    class  ...         h
0       0  ...  0.035941
1       0  ...  0.037499
2       0  ...  0.037499
3       0  ...  0.032815
4       0  ...  0.039841
5       0  ...  0.027347
6       0  ...  0.036716
7       0  ...  0.036716
8       0  ...  0.036716
9       0  ...  0.043750
10      0  ...  0.042967
11      0  ...  0.037499
12      0  ...  0.043750
13      0  ...  0.035941
14      0  ...  0.036716
15      0  ...  0.040625
16      0  ...  0.033590
17      0  ...  0.035941
18      0  ...  0.034373
19      0  ...  0.038283
20      0  ...  0.029689
21      0  ...  0.029689

[22 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1384_6_5.png
   class  ...         h
0      0  ...  0.037499

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1541.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1541_1_0.png
   class  ...         h
0      0  ...  0.049219

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1541_3_0.png
   class  ...         h
0      0  ...  0.079687

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1179.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_1_3.png
   class  ...         h
0      0  ...  0.189617

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_2_2.png
   class  ...         h
0      0  ...  0.053122
1      0  ...  0.099999
2      0  ...  0.057809
3      0  ...  0.143698

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_2_3.png
   class  ...         h
0      0  ...  0.036719
1      0  ...  0.051566
2      0  ...  0.033977
3      0  ...  0.076561
4      0  ...  0.071090
5      0  ...  0.033484

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_2_4.png
   class  ...         h
0      1  ...  0.059375

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_3_1.png
   class  ...         h
0      0  ...  0.002709
1      0  ...  0.072781

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_3_2.png
    class  ...         h
0       0  ...  0.061714
1       0  ...  0.054688
2       0  ...  0.056254
3       0  ...  0.057026
4       0  ...  0.018602
5       0  ...  0.028669
6       0  ...  0.051566
7       0  ...  0.050783
8       0  ...  0.056254
9       0  ...  0.056254
10      0  ...  0.053122
11      1  ...  0.025005
12      1  ...  0.039058
13      0  ...  0.065629
14      0  ...  0.056254
15      0  ...  0.059375
16      0  ...  0.075005
17      0  ...  0.055471
18      0  ...  0.053122
19      0  ...  0.052349
20      0  ...  0.062497
21      0  ...  0.050783
22      0  ...  0.051566
23      0  ...  0.056254
24      0  ...  0.056254
25      0  ...  0.046878
26      0  ...  0.061714
27      0  ...  0.051566
28      0  ...  0.071873
29      0  ...  0.034431

[30 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_3_3.png
   class  ...         h
0      0  ...  0.038285
1      0  ...  0.018365
2      0  ...  0.018075
3      0  ...  0.087502
4      0  ...  0.056254
5      0  ...  0.054688
6      0  ...  0.041407
7      0  ...  0.047661

[8 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_4_1.png
    class  ...         h
0       0  ...  0.029683
1       0  ...  0.053122
2       0  ...  0.050783
3       0  ...  0.046878
4       0  ...  0.046095
5       0  ...  0.049217
6       0  ...  0.031249
7       0  ...  0.048434
8       0  ...  0.073439
9       0  ...  0.033598
10      0  ...  0.054688
11      0  ...  0.058226
12      0  ...  0.046878
13      0  ...  0.045312
14      0  ...  0.045312
15      0  ...  0.053905
16      0  ...  0.042190
17      0  ...  0.061714

[18 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_4_2.png
    class  ...         h
0       0  ...  0.048434
1       0  ...  0.073439
2       0  ...  0.033598
3       0  ...  0.043746
4       0  ...  0.048434
5       0  ...  0.042190
6       0  ...  0.054688
7       0  ...  0.050000
8       0  ...  0.036862
9       0  ...  0.028360
10      0  ...  0.032815

[11 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_4_3.png
   class  ...         h
0      0  ...  0.063280
1      0  ...  0.057809

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_5_7.png
    class  ...         h
0       0  ...  0.075778
1       0  ...  0.065629
2       0  ...  0.082814
3       0  ...  0.097661
4       0  ...  0.077344
5       0  ...  0.107036
6       0  ...  0.034370
7       0  ...  0.044529
8       0  ...  0.065629
9       0  ...  0.067185
10      0  ...  0.061714
11      0  ...  0.074222
12      0  ...  0.089841
13      0  ...  0.042973
14      0  ...  0.052349
15      0  ...  0.039058
16      0  ...  0.064063

[17 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_5_8.png
   class  ...         h
0      0  ...  0.192972
1      0  ...  0.192972
2      0  ...  0.097661
3      0  ...  0.077344
4      0  ...  0.096095
5      0  ...  0.077344
6      0  ...  0.063280
7      0  ...  0.107036

[8 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_5_9.png
   class  ...         h
0      0  ...  0.192972
1      0  ...  0.192972

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_6_2.png
   class  ...         h
0      0  ...  0.193745
1      0  ...  0.188285

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_6_3.png
   class  ...         h
0      0  ...  0.038391
1      0  ...  0.193745
2      0  ...  0.188285

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_6_4.png
   class  ...         h
0      0  ...  0.038391
1      0  ...  0.186719
2      0  ...  0.131999

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_7_3.png
   class  ...         h
0      0  ...  0.134268

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_7_4.png
   class  ...         h
0      0  ...  0.134268
1      0  ...  0.057062

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_7_5.png
   class  ...         h
0      0  ...  0.179692

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_7_7.png
   class  ...        h
0      0  ...  0.18173

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_8_6.png
   class  ...         h
0      0  ...  0.267967

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_8_7.png
   class  ...         h
0      0  ...  0.190063
1      0  ...  0.062019

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1179_9_7.png
   class  ...         h
0      0  ...  0.116183

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1583.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1583_3_2.png
   class  ...         h
0      0  ...  0.030471
1      0  ...  0.029686
2      0  ...  0.027340
3      0  ...  0.023441
4      0  ...  0.026564

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1583_3_3.png
   class  ...         h
0      0  ...  0.036715
1      0  ...  0.021872
2      0  ...  0.021872
3      0  ...  0.022657
4      0  ...  0.025003
5      0  ...  0.018750

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1583_4_3.png
   class  ...         h
0      0  ...  0.029686

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1583_4_4.png
   class  ...         h
0      0  ...  0.040622
1      0  ...  0.038284

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1583_5_2.png
   class  ...         h
0      0  ...  0.075784
1      0  ...  0.043753
2      0  ...  0.028909
3      0  ...  0.028125
4      0  ...  0.036715
5      0  ...  0.062503

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1583_5_4.png
   class  ...       h
0      0  ...  0.0375

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1742.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1742_5_3.png
   class  ...         h
0      0  ...  0.088281

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1742_5_4.png
   class  ...         h
0      0  ...  0.024922

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1742_5_5.png
   class  ...         h
0      0  ...  0.024922
1      0  ...  0.029687
2      0  ...  0.029687
3      0  ...  0.029687

[4 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1178.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1178_2_2.png
   class  ...         h
0      0  ...  0.219533
1      0  ...  0.115786

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1178_3_2.png
   class  ...         h
0      0  ...  0.109211

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1178_4_1.png
   class  ...         h
0      0  ...  0.110940
1      0  ...  0.071091
2      0  ...  0.074218
3      0  ...  0.079157

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1178_4_2.png
   class  ...         h
0      0  ...  0.180471
1      0  ...  0.110940
2      0  ...  0.079157

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1178_5_1.png
   class  ...         h
0      0  ...  0.170493
1      0  ...  0.260155
2      0  ...  0.016940

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1178_5_2.png
   class  ...         h
0      0  ...  0.170493
1      0  ...  0.016940

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1178_5_3.png
   class  ...         h
0      0  ...  0.134374

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1178_6_1.png
   class  ...         h
0      0  ...  0.030289

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1178_6_2.png
   class  ...         h
0      0  ...  0.092972
1      0  ...  0.030289

[2 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1230.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1230_5_7.png
   class  ...         h
0      0  ...  0.083594

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1184.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1184_1_3.png
   class  ...         h
0      0  ...  0.074999
1      0  ...  0.058271
2      0  ...  0.068746

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1184_2_3.png
   class  ...         h
0      0  ...  0.024541

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1184_3_2.png
    class  ...         h
0       0  ...  0.021094
1       0  ...  0.028903
2       0  ...  0.035156
3       0  ...  0.046874
4       0  ...  0.038278
5       0  ...  0.037500
6       0  ...  0.021872
7       0  ...  0.021094
8       0  ...  0.021094
9       0  ...  0.023437
10      0  ...  0.022659
11      0  ...  0.022659

[12 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1184_3_3.png
   class  ...         h
0      0  ...  0.028903
1      0  ...  0.037500

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1184_4_2.png
   class  ...         h
0      0  ...  0.033590
1      0  ...  0.032812
2      0  ...  0.041409

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1184_6_1.png
   class  ...         h
0      1  ...  0.028125
1      0  ...  0.020316
2      0  ...  0.014062
3      0  ...  0.014062

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1184_6_2.png
   class  ...         h
0      1  ...  0.045309
1      1  ...  0.028125
2      0  ...  0.020316

[3 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1147.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_0_0.png
   class  ...         h
0      0  ...  0.517967

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_0_1.png
   class  ...         h
0      0  ...  0.517967

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_1_1.png
   class  ...         h
0      0  ...  0.250784

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_2_2.png
   class  ...         h
0      0  ...  0.364844

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_3_0.png
   class  ...         h
0      0  ...  0.617212

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_3_1.png
   class  ...         h
0      0  ...  0.617212

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_4_0.png
   class  ...         h
0      0  ...  0.198702
1      0  ...  0.154662

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_4_1.png
   class  ...         h
0      0  ...  0.198702
1      0  ...  0.154662

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_4_2.png
   class  ...         h
0      0  ...  0.153496

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_5_0.png
   class  ...         h
0      0  ...  0.211455

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_5_1.png
   class  ...         h
0      0  ...  0.211455

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_5_2.png
   class  ...         h
0      0  ...  0.276971

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_5_3.png
   class  ...         h
0      0  ...  0.403123

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_6_3.png
   class  ...         h
0      0  ...  0.548433

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_6_4.png
   class  ...         h
0      0  ...  0.548433

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_7_4.png
   class  ...         h
0      0  ...  0.270671

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_8_4.png
   class  ...         h
0      0  ...  0.255889

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1147_8_6.png
   class  ...         h
0      0  ...  0.371873

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P0259.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P0259_2_1.png
   class  ...         h
0      0  ...  0.046093

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0259_2_2.png
   class  ...         h
0      0  ...  0.051563
1      0  ...  0.057030
2      0  ...  0.067187
3      0  ...  0.071874

[4 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1610.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1610_5_5.png
    class  ...         h
0       0  ...  0.014063
1       0  ...  0.016406
2       0  ...  0.016406
3       0  ...  0.019531
4       0  ...  0.016406
5       0  ...  0.017188
6       0  ...  0.014844
7       0  ...  0.017188
8       0  ...  0.012500
9       0  ...  0.018750
10      0  ...  0.016406
11      0  ...  0.013281
12      0  ...  0.023438
13      0  ...  0.022656
14      0  ...  0.020313
15      0  ...  0.007031
16      0  ...  0.017969
17      0  ...  0.016406

[18 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1604.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1604_1_5.png
   class  ...         h
0      0  ...  0.089063
1      0  ...  0.075781
2      0  ...  0.079687

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1604_2_5.png
   class  ...         h
0      0  ...  0.062500
1      0  ...  0.082031

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1604_3_5.png
   class  ...         h
0      0  ...  0.072656
1      0  ...  0.075000
2      0  ...  0.076563
3      0  ...  0.075781

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1604_4_5.png
   class  ...         h
0      0  ...  0.075781
1      0  ...  0.079687

[2 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1598.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1598_0_1.png
   class  ...         h
0      0  ...  0.095313
1      0  ...  0.068751
2      0  ...  0.070314

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1598_0_2.png
   class  ...         h
0      0  ...  0.040625
1      0  ...  0.053902

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1598_0_3.png
   class  ...         h
0      0  ...  0.111717

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1598_0_4.png
   class  ...         h
0      0  ...  0.052347
1      0  ...  0.071092

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1598_1_1.png
   class  ...         h
0      0  ...  0.085155
1      0  ...  0.147660
2      0  ...  0.078123
3      0  ...  0.074997

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1598_1_2.png
   class  ...         h
0      0  ...  0.099218

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1598_3_5.png
   class  ...         h
0      0  ...  0.047657
1      0  ...  0.067965
2      0  ...  0.067965

[3 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1566.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1566_3_4.png
   class  ...         h
0      0  ...  0.042188

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1566_3_5.png
   class  ...         h
0      0  ...  0.047656
1      0  ...  0.046875
2      0  ...  0.027344

[3 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1770.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1770_1_0.png
   class  ...         h
0      0  ...  0.106234
1      0  ...  0.031249
2      0  ...  0.069533

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1770_2_0.png
   class  ...         h
0      0  ...  0.000798
1      0  ...  0.028127
2      0  ...  0.032810
3      0  ...  0.035939

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1770_3_0.png
   class  ...         h
0      0  ...  0.029688
1      0  ...  0.028127

[2 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1149.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_0_3.png
   class  ...         h
0      1  ...  0.055084

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_1_2.png
   class  ...         h
0      1  ...  0.224886

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_1_3.png
   class  ...         h
0      1  ...  0.225781
1      1  ...  0.189447
2      1  ...  0.180470

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_2_0.png
   class  ...         h
0      0  ...  0.147654

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_2_1.png
   class  ...         h
0      0  ...  0.147654
1      0  ...  0.141406
2      1  ...  0.212501
3      1  ...  0.062973

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_2_2.png
   class  ...         h
0      1  ...  0.029803
1      1  ...  0.264845
2      1  ...  0.212501

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_3_0.png
   class  ...         h
0      0  ...  0.129687
1      0  ...  0.121877

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_3_1.png
   class  ...         h
0      1  ...  0.115934
1      1  ...  0.174999
2      1  ...  0.248441

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_4_1.png
   class  ...         h
0      1  ...  0.221873

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_4_2.png
   class  ...         h
0      1  ...  0.221873

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_5_1.png
   class  ...         h
0      1  ...  0.451563

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1149_5_2.png
   class  ...         h
0      1  ...  0.119188
1      1  ...  0.451563

[2 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P0257.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P0257_0_0.png
   class  ...         h
0      0  ...  0.008250
1      0  ...  0.102343
2      0  ...  0.125782
3      0  ...  0.082032

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0257_1_0.png
    class  ...         h
0       0  ...  0.037501
1       0  ...  0.047656
2       0  ...  0.095655
3       0  ...  0.101563
4       0  ...  0.130468
5       0  ...  0.098438
6       0  ...  0.097655
7       0  ...  0.036718
8       0  ...  0.092186
9       0  ...  0.064845
10      0  ...  0.085157
11      0  ...  0.079688
12      0  ...  0.061718
13      0  ...  0.071094
14      0  ...  0.059376
15      0  ...  0.063281
16      0  ...  0.069531
17      0  ...  0.020491
18      0  ...  0.121875
19      0  ...  0.082812
20      0  ...  0.077344
21      0  ...  0.037501
22      0  ...  0.037501

[23 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1809.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_0_7.png
   class  ...         h
0      0  ...  0.067189

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_1_2.png
   class  ...         h
0      0  ...  0.275778
1      0  ...  0.207026

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_1_3.png
   class  ...         h
0      0  ...  0.207026
1      0  ...  0.350782

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_1_5.png
   class  ...         h
0      0  ...  0.202348

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_1_6.png
   class  ...         h
0      0  ...  0.204692

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_2_2.png
   class  ...         h
0      0  ...  0.289063

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_2_6.png
   class  ...         h
0      0  ...  0.237505

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_2_7.png
   class  ...         h
0      0  ...  0.240620
1      0  ...  0.211715

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_3_1.png
   class  ...         h
0      0  ...  0.165627
1      0  ...  0.173442
2      0  ...  0.167190

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_3_2.png
   class  ...         h
0      0  ...  0.236723
1      0  ...  0.274215
2      0  ...  0.321876

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_4_9.png
   class  ...         h
0      0  ...  0.127344
1      0  ...  0.132111

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_4_10.png
   class  ...         h
0      0  ...  0.127344
1      0  ...  0.083590

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_5_9.png
   class  ...         h
0      0  ...  0.107817
1      0  ...  0.129688
2      0  ...  0.035080
3      0  ...  0.122655
4      0  ...  0.111714
5      0  ...  0.112621

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_5_10.png
   class  ...         h
0      0  ...  0.182028
1      0  ...  0.124999
2      0  ...  0.210934
3      0  ...  0.167190

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1809_6_9.png
   class  ...         h
0      0  ...  0.116288

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1376.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_1_3.png
   class  ...      h
0      0  ...  0.225

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_1_4.png
   class  ...         h
0      0  ...  0.033559
1      0  ...  0.225000

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_1_5.png
   class  ...         h
0      0  ...  0.033559

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_2_2.png
   class  ...         h
0      0  ...  0.252340
1      0  ...  0.079819

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_2_4.png
   class  ...         h
0      0  ...  0.146909
1      0  ...  0.178129
2      0  ...  0.324219

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_2_5.png
   class  ...         h
0      0  ...  0.146909

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_3_2.png
   class  ...         h
0      0  ...  0.177209
1      0  ...  0.352340
2      0  ...  0.363280

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_3_3.png
   class  ...        h
0      0  ...  0.35234

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_4_3.png
   class  ...         h
0      0  ...  0.127521
1      0  ...  0.264840
2      0  ...  0.133591

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_4_4.png
   class  ...         h
0      0  ...  0.003860
1      0  ...  0.127521

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_5_3.png
   class  ...         h
0      0  ...  0.001387
1      0  ...  0.149220
2      0  ...  0.149220

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_5_4.png
   class  ...         h
0      0  ...  0.121918
1      0  ...  0.001387
2      0  ...  0.149220

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1376_7_3.png
   class  ...         h
0      0  ...  0.171091

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P2242.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P2242_0_0.png
    class  ...         h
0       0  ...  0.060938
1       0  ...  0.060156
2       0  ...  0.056250
3       0  ...  0.066406
4       0  ...  0.063281
5       0  ...  0.063281
6       0  ...  0.064063
7       0  ...  0.055469
8       0  ...  0.014444
9       0  ...  0.067969
10      0  ...  0.061720
11      0  ...  0.060156
12      0  ...  0.063281
13      0  ...  0.071875
14      1  ...  0.043751
15      0  ...  0.064063

[16 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2242_0_1.png
    class  ...         h
0       0  ...  0.059375
1       0  ...  0.046093
2       0  ...  0.042969
3       0  ...  0.038281
4       0  ...  0.058593
5       0  ...  0.060938
6       0  ...  0.043751
7       0  ...  0.044532
8       0  ...  0.042969
9       0  ...  0.045312
10      0  ...  0.046093
11      0  ...  0.045312
12      0  ...  0.042969
13      0  ...  0.043751
14      0  ...  0.042969
15      0  ...  0.045312
16      0  ...  0.042187
17      0  ...  0.040624
18      0  ...  0.042187
19      0  ...  0.039063
20      0  ...  0.041406
21      0  ...  0.043751
22      0  ...  0.062499
23      0  ...  0.044532
24      0  ...  0.067187
25      0  ...  0.074220
26      0  ...  0.071875
27      0  ...  0.045312
28      0  ...  0.055469
29      0  ...  0.050000
30      0  ...  0.053126
31      0  ...  0.048438
32      0  ...  0.067187
33      0  ...  0.074999
34      0  ...  0.054687
35      0  ...  0.065626
36      0  ...  0.053126
37      0  ...  0.066406
38      0  ...  0.063281
39      0  ...  0.070312
40      0  ...  0.051563
41      0  ...  0.053126
42      0  ...  0.042969
43      0  ...  0.044532
44      0  ...  0.042969

[45 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2242_0_2.png
    class  ...         h
0       0  ...  0.064063
1       0  ...  0.046093
2       0  ...  0.042187
3       0  ...  0.033594
4       0  ...  0.042969
5       0  ...  0.038281
6       0  ...  0.040624
7       0  ...  0.044532
8       0  ...  0.044532
9       0  ...  0.042969
10      0  ...  0.046093
11      0  ...  0.045312
12      0  ...  0.042187
13      0  ...  0.041406
14      0  ...  0.042969
15      0  ...  0.048438
16      0  ...  0.043751
17      0  ...  0.046875
18      0  ...  0.057812
19      0  ...  0.065626
20      0  ...  0.069532
21      0  ...  0.060938
22      0  ...  0.031264
23      0  ...  0.066406
24      0  ...  0.040624
25      0  ...  0.055469
26      0  ...  0.046875
27      0  ...  0.048438
28      0  ...  0.047657
29      0  ...  0.045312
30      0  ...  0.046875
31      0  ...  0.049218
32      0  ...  0.046093
33      0  ...  0.043751
34      0  ...  0.046093
35      0  ...  0.045312
36      0  ...  0.045312
37      0  ...  0.049218
38      0  ...  0.042969
39      0  ...  0.045312
40      0  ...  0.045312
41      0  ...  0.046875
42      0  ...  0.045312
43      0  ...  0.038281
44      0  ...  0.046093
45      0  ...  0.052344
46      0  ...  0.043751

[47 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2242_0_3.png
    class  ...         h
0       0  ...  0.051563
1       0  ...  0.045312
2       0  ...  0.001966
3       0  ...  0.052344
4       0  ...  0.035938
5       0  ...  0.046875
6       0  ...  0.042969
7       0  ...  0.043751
8       0  ...  0.042969
9       0  ...  0.042969
10      0  ...  0.047657
11      0  ...  0.044532
12      0  ...  0.042187
13      0  ...  0.047657
14      0  ...  0.046093
15      0  ...  0.047657
16      0  ...  0.043751
17      0  ...  0.044532
18      0  ...  0.047657
19      0  ...  0.046093
20      0  ...  0.046875
21      0  ...  0.050000

[22 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1373.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1373_1_0.png
   class  ...         h
0      0  ...  0.035937
1      0  ...  0.042969
2      0  ...  0.050000
3      0  ...  0.054688

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1373_2_0.png
   class  ...         h
0      0  ...  0.065625
1      0  ...  0.073438
2      0  ...  0.080469
3      0  ...  0.038281
4      0  ...  0.043750
5      0  ...  0.048438
6      0  ...  0.042969
7      0  ...  0.036719
8      0  ...  0.063281

[9 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1373_3_0.png
   class  ...         h
0      0  ...  0.056250
1      0  ...  0.052344
2      0  ...  0.065625
3      0  ...  0.061719
4      0  ...  0.055469
5      0  ...  0.050000
6      0  ...  0.055469
7      0  ...  0.079687
8      0  ...  0.050000
9      0  ...  0.050781

[10 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1373_3_1.png
   class  ...         h
0      0  ...  0.049219
1      0  ...  0.065625
2      0  ...  0.061719
3      0  ...  0.061719
4      0  ...  0.052344

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1373_4_0.png
   class  ...         h
0      0  ...  0.057722

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1373_4_1.png
   class  ...         h
0      0  ...  0.059375
1      0  ...  0.058594
2      0  ...  0.064062
3      0  ...  0.065625

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1373_4_2.png
   class  ...         h
0      0  ...  0.074219
1      0  ...  0.059375

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1373_4_3.png
   class  ...         h
0      0  ...  0.067969

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1373_5_0.png
   class  ...         h
0      0  ...  0.002434
1      0  ...  0.081250
2      0  ...  0.090625
3      0  ...  0.083594

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1373_5_2.png
   class  ...         h
0      0  ...  0.050006
1      0  ...  0.089063
2      0  ...  0.055469
3      0  ...  0.066406
4      0  ...  0.050000

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1373_5_3.png
   class  ...         h
0      0  ...  0.089063

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1398.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_0_1.png
   class  ...         h
0      0  ...  0.215627

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_0_4.png
   class  ...         h
0      0  ...  0.281041

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_0_5.png
   class  ...         h
0      0  ...  0.434313
1      0  ...  0.281041

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_1_0.png
   class  ...         h
0      0  ...  0.460937
1      0  ...  0.004507
2      0  ...  0.471098

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_1_1.png
   class  ...         h
0      0  ...  0.458594
1      0  ...  0.467967
2      0  ...  0.241404
3      0  ...  0.463280

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_1_2.png
   class  ...         h
0      0  ...  0.247655

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_1_3.png
   class  ...         h
0      0  ...  0.742104

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_1_4.png
   class  ...         h
0      0  ...  0.742104
1      0  ...  0.501773
2      0  ...  0.464191

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_1_5.png
   class  ...         h
0      0  ...  0.355530
1      0  ...  0.611543
2      0  ...  0.501773
3      0  ...  0.464191

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_2_0.png
   class  ...         h
0      0  ...  0.458776
1      0  ...  0.472654

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_2_1.png
   class  ...         h
0      0  ...  0.004020
1      0  ...  0.464058
2      0  ...  0.471098
3      0  ...  0.460159
4      0  ...  0.252166

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_2_3.png
   class  ...         h
0      0  ...  0.132232
1      0  ...  0.753902
2      0  ...  0.043830

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_2_4.png
   class  ...         h
0      0  ...  0.132232
1      0  ...  0.753902
2      0  ...  0.043830
3      0  ...  0.313148
4      0  ...  0.658244

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_2_5.png
   class  ...         h
0      0  ...  0.150958
1      0  ...  0.313148
2      0  ...  0.658244
3      0  ...  0.040740
4      0  ...  0.774215

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_3_0.png
   class  ...         h
0      0  ...  0.142973
1      0  ...  0.142973
2      0  ...  0.151558
3      0  ...  0.014932

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_3_1.png
   class  ...         h
0      0  ...  0.024581
1      0  ...  0.467189
2      0  ...  0.453011
3      0  ...  0.213461
4      0  ...  0.459371
5      0  ...  0.272650

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_3_2.png
   class  ...         h
0      0  ...  0.157033
1      0  ...  0.150780
2      0  ...  0.149215
3      0  ...  0.154689
4      0  ...  0.156255
5      0  ...  0.148437
6      0  ...  0.153124
7      0  ...  0.140630
8      0  ...  0.112900
9      0  ...  0.019674

[10 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_3_3.png
   class  ...         h
0      0  ...  0.335664
1      0  ...  0.655268

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_3_4.png
   class  ...         h
0      0  ...  0.769528
1      0  ...  0.335664
2      0  ...  0.655268
3      0  ...  0.096439
4      0  ...  0.085881

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_3_5.png
   class  ...         h
0      0  ...  0.769528
1      0  ...  0.096439
2      0  ...  0.085881
3      0  ...  0.243241
4      0  ...  0.738164

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_4_0.png
   class  ...         h
0      0  ...  0.130378
1      0  ...  0.465624
2      0  ...  0.055462

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_4_1.png
   class  ...         h
0      0  ...  0.037800
1      0  ...  0.459371
2      0  ...  0.434793
3      0  ...  0.184381
4      0  ...  0.456250
5      0  ...  0.292009

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_4_2.png
    class  ...         h
0       0  ...  0.089952
1       0  ...  0.153902
2       0  ...  0.044913
3       0  ...  0.131109
4       0  ...  0.160154
5       0  ...  0.164840
6       0  ...  0.153124
7       0  ...  0.148437
8       0  ...  0.133589
9       0  ...  0.128903
10      0  ...  0.133589
11      0  ...  0.147659

[12 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_4_3.png
   class  ...         h
0      0  ...  0.538221
1      0  ...  0.419020

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_4_4.png
   class  ...         h
0      0  ...  0.538221
1      0  ...  0.419020
2      0  ...  0.693812
3      0  ...  0.272966

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_4_5.png
   class  ...         h
0      0  ...  0.693812
1      0  ...  0.272966
2      0  ...  0.448776
3      0  ...  0.527856

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_5_0.png
   class  ...         h
0      0  ...  0.412508
1      0  ...  0.464846
2      0  ...  0.072488

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_5_1.png
   class  ...         h
0      0  ...  0.400434
1      0  ...  0.408292
2      0  ...  0.169709
3      0  ...  0.148625
4      0  ...  0.294647
5      0  ...  0.464846

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_5_2.png
   class  ...         h
0      0  ...  0.294647
1      0  ...  0.464846
2      0  ...  0.149215
3      0  ...  0.043641

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_5_3.png
   class  ...         h
0      0  ...  0.719468
1      0  ...  0.239118

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_5_4.png
   class  ...         h
0      0  ...  0.719468
1      0  ...  0.239118
2      0  ...  0.508282
3      0  ...  0.468672

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_5_5.png
   class  ...         h
0      0  ...  0.508282
1      0  ...  0.468672
2      0  ...  0.627147
3      0  ...  0.332472

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_6_0.png
   class  ...         h
0      0  ...  0.390796
1      0  ...  0.457816
2      0  ...  0.083584

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_6_1.png
   class  ...         h
0      0  ...  0.051133
1      0  ...  0.309184
2      0  ...  0.458594
3      0  ...  0.458594
4      0  ...  0.365887
5      0  ...  0.149879

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_6_2.png
   class  ...         h
0      0  ...  0.456250
1      0  ...  0.365887
2      0  ...  0.149879

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_6_3.png
   class  ...         h
0      0  ...  0.050841
1      0  ...  0.778901

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_6_4.png
   class  ...         h
0      0  ...  0.050841
1      0  ...  0.304768
2      0  ...  0.667847
3      0  ...  0.778901

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_6_5.png
   class  ...         h
0      0  ...  0.304768
1      0  ...  0.667847
2      0  ...  0.025518
3      0  ...  0.136920

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_7_0.png
   class  ...         h
0      0  ...  0.373447
1      0  ...  0.138286
2      0  ...  0.127347
3      0  ...  0.142973

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_7_1.png
   class  ...         h
0      0  ...  0.458594
1      0  ...  0.090367

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_7_2.png
   class  ...         h
0      0  ...  0.090367

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_7_4.png
   class  ...         h
0      0  ...  0.091523

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_7_5.png
   class  ...         h
0      0  ...  0.091523
1      0  ...  0.590112

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1398_8_0.png
   class  ...         h
0      0  ...  0.139842
1      0  ...  0.145316
2      0  ...  0.143751
3      0  ...  0.147659
4      0  ...  0.140630

[5 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1601.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1601_3_0.png
   class  ...         h
0      0  ...  0.021094
1      0  ...  0.022656
2      0  ...  0.025000
3      0  ...  0.027344
4      0  ...  0.019531
5      0  ...  0.014844
6      0  ...  0.024219
7      0  ...  0.020313
8      0  ...  0.025781

[9 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1601_3_1.png
   class  ...         h
0      0  ...  0.026562
1      0  ...  0.024219
2      0  ...  0.028125
3      0  ...  0.021875
4      0  ...  0.021875
5      0  ...  0.000588

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1601_4_1.png
   class  ...         h
0      0  ...  0.018162

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1601_5_0.png
   class  ...         h
0      0  ...  0.022656
1      0  ...  0.024219
2      0  ...  0.019531
3      0  ...  0.018750
4      0  ...  0.024219
5      0  ...  0.024219

[6 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1854.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_0_0.png
   class  ...         h
0      0  ...  0.383593
1      0  ...  0.303908
2      0  ...  0.295314

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_0_1.png
   class  ...         h
0      0  ...  0.383593

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_0_2.png
   class  ...         h
0      0  ...  0.286809

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_0_5.png
   class  ...         h
0      0  ...  0.396117

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_0_7.png
   class  ...         h
0      0  ...  0.344191

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_0_8.png
   class  ...         h
0      0  ...  0.349064

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_0_14.png
   class  ...         h
0      0  ...  0.596094
1      0  ...  0.484377

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_0_15.png
   class  ...         h
0      0  ...  0.596094
1      0  ...  0.236567

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_0_16.png
   class  ...         h
0      0  ...  0.262498

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_0_17.png
   class  ...        h
0      0  ...  0.59531

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_0_18.png
   class  ...        h
0      0  ...  0.59531

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_2.png
   class  ...         h
0      0  ...  0.003037
1      0  ...  0.128696
2      0  ...  0.294530

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_4.png
   class  ...         h
0      0  ...  0.038595
1      0  ...  0.526564

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_5.png
   class  ...         h
0      0  ...  0.513281
1      0  ...  0.150755

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_6.png
   class  ...         h
0      0  ...  0.561718

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_7.png
   class  ...         h
0      0  ...  0.561718
1      0  ...  0.162839

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_8.png
   class  ...         h
0      0  ...  0.671096
1      0  ...  0.163438

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_9.png
   class  ...        h
0      0  ...  0.22522

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_10.png
   class  ...        h
0      0  ...  0.22522

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_13.png
   class  ...         h
0      0  ...  0.675002

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_14.png
   class  ...         h
0      0  ...  0.675002

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_15.png
   class  ...         h
0      0  ...  0.191555
1      0  ...  0.439062

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_1_16.png
   class  ...         h
0      0  ...  0.439062
1      0  ...  0.315070

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_2_2.png
   class  ...         h
0      0  ...  0.408591
1      0  ...  0.156461

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_2_4.png
   class  ...         h
0      0  ...  0.420802
1      0  ...  0.506716

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_2_6.png
   class  ...         h
0      0  ...  0.568751

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_2_7.png
   class  ...         h
0      0  ...  0.568751

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_2_8.png
   class  ...         h
0      0  ...  0.548435
1      0  ...  0.055831

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_2_9.png
   class  ...         h
0      0  ...  0.287282

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_2_10.png
   class  ...         h
0      0  ...  0.293753
1      0  ...  0.287282

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_2_11.png
   class  ...         h
0      0  ...  0.534375

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_2_15.png
   class  ...         h
0      0  ...  0.128284
1      0  ...  0.439846

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_2_16.png
   class  ...         h
0      0  ...  0.128284
1      0  ...  0.142740

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_3_2.png
   class  ...         h
0      0  ...  0.119151
1      0  ...  0.295314
2      0  ...  0.400781

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_3_4.png
   class  ...         h
0      0  ...  0.085451
1      0  ...  0.513281
2      0  ...  0.236397

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_3_5.png
   class  ...         h
0      0  ...  0.535158
1      0  ...  0.257116

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_3_7.png
   class  ...         h
0      0  ...  0.209272
1      0  ...  0.501566

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_3_8.png
   class  ...         h
0      0  ...  0.458232
1      0  ...  0.328337

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_3_10.png
   class  ...         h
0      0  ...  0.047183

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_3_11.png
   class  ...         h
0      0  ...  0.205899

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_3_13.png
   class  ...         h
0      0  ...  0.420314
1      0  ...  0.380062

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_3_14.png
   class  ...         h
0      0  ...  0.025142
1      0  ...  0.380471

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_3_15.png
   class  ...         h
0      0  ...  0.352963
1      0  ...  0.025142

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_3_16.png
   class  ...         h
0      0  ...  0.428124
1      0  ...  0.352963

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_0.png
   class  ...         h
0      0  ...  0.018752

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_1.png
   class  ...         h
0      0  ...  0.018749
1      0  ...  0.018752
2      0  ...  0.029691
3      0  ...  0.021874

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_2.png
   class  ...         h
0      0  ...  0.300780
1      0  ...  0.180850
2      0  ...  0.021874
3      0  ...  0.015624

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_4.png
   class  ...         h
0      0  ...  0.297975
1      0  ...  0.006270
2      0  ...  0.507032

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_5.png
   class  ...         h
0      0  ...  0.520315
1      0  ...  0.264758

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_6.png
   class  ...         h
0      0  ...  0.003935
1      0  ...  0.528909
2      0  ...  0.451595

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_7.png
   class  ...         h
0      0  ...  0.003935
1      0  ...  0.528909
2      0  ...  0.301663

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_8.png
   class  ...         h
0      0  ...  0.335724

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_9.png
   class  ...         h
0      0  ...  0.335156

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_10.png
   class  ...         h
0      0  ...  0.248129

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_11.png
   class  ...         h
0      0  ...  0.295664

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_13.png
   class  ...         h
0      0  ...  0.130873

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_14.png
   class  ...         h
0      0  ...  0.421736
1      0  ...  0.328438

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_4_15.png
   class  ...         h
0      0  ...  0.421736

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_0.png
   class  ...         h
0      0  ...  0.181350
1      0  ...  0.298437

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_1.png
   class  ...         h
0      0  ...  0.112376
1      0  ...  0.192038
2      0  ...  0.262504
3      0  ...  0.298437
4      0  ...  0.274999
5      0  ...  0.307815

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_2.png
   class  ...         h
0      0  ...  0.192038
1      0  ...  0.307815
2      0  ...  0.274999

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_4.png
   class  ...         h
0      0  ...  0.427089
1      0  ...  0.500760

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_5.png
   class  ...         h
0      0  ...  0.508592
1      0  ...  0.272915

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_6.png
   class  ...         h
0      0  ...  0.496845
1      0  ...  0.038247

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_7.png
   class  ...         h
0      0  ...  0.403635
1      0  ...  0.496845

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_8.png
   class  ...         h
0      0  ...  0.275011

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_10.png
   class  ...         h
0      0  ...  0.150002
1      0  ...  0.265623

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_11.png
   class  ...         h
0      0  ...  0.596878
1      0  ...  0.265623

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_12.png
   class  ...         h
0      0  ...  0.596878

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_14.png
   class  ...         h
0      0  ...  0.169983
1      0  ...  0.096563
2      0  ...  0.417185
3      0  ...  0.279328

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_15.png
   class  ...         h
0      0  ...  0.279328

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_17.png
   class  ...         h
0      0  ...  0.229686
1      0  ...  0.264066

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_18.png
   class  ...         h
0      0  ...  0.229686
1      0  ...  0.214062

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1854_5_19.png
   class  ...         h
0      0  ...  0.234375
1      0  ...  0.234378

[2 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1128.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1128_0_0.png
   class  ...         h
0      0  ...  0.429791

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1128_0_1.png
   class  ...         h
0      0  ...  0.135527
1      0  ...  0.429791

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1128_1_0.png
   class  ...         h
0      0  ...  0.120990
1      0  ...  0.519532

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1128_1_1.png
   class  ...         h
0      0  ...  0.323066
1      0  ...  0.120990
2      0  ...  0.519532

[3 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P0168.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P0168_0_0.png
   class  ...         h
0      0  ...  0.001131

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0168_0_1.png
   class  ...         h
0      0  ...  0.153386
1      0  ...  0.001131
2      0  ...  0.091519
3      0  ...  0.070806
4      0  ...  0.141406
5      0  ...  0.146093
6      0  ...  0.153908
7      0  ...  0.165626

[8 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0168_0_2.png
   class  ...         h
0      0  ...  0.007273
1      0  ...  0.080968

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0168_1_0.png
   class  ...         h
0      0  ...  0.187499
1      0  ...  0.212500
2      0  ...  0.186368

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0168_1_1.png
   class  ...         h
0      0  ...  0.044271
1      0  ...  0.187499
2      0  ...  0.212500
3      0  ...  0.207813
4      0  ...  0.186368
5      0  ...  0.036606
6      0  ...  0.129976

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0168_1_2.png
    class  ...         h
0       0  ...  0.155470
1       0  ...  0.100780
2       0  ...  0.093750
3       0  ...  0.103905
4       0  ...  0.151561
5       0  ...  0.105468
6       0  ...  0.088976
7       0  ...  0.009753
8       0  ...  0.074759
9       0  ...  0.077626
10      0  ...  0.155470
11      1  ...  0.057030
12      1  ...  0.068751
13      1  ...  0.064842
14      1  ...  0.078126
15      1  ...  0.064061
16      1  ...  0.050781
17      1  ...  0.064842
18      0  ...  0.125782
19      1  ...  0.067189
20      1  ...  0.079688
21      0  ...  0.153126
22      0  ...  0.153126
23      0  ...  0.087500
24      0  ...  0.098437

[25 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1672.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1672_0_3.png
   class  ...         h
0      0  ...  0.028907
1      0  ...  0.039062
2      0  ...  0.034374
3      0  ...  0.024219

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1672_0_4.png
   class  ...         h
0      0  ...  0.028907
1      0  ...  0.039062
2      0  ...  0.030472
3      0  ...  0.049217
4      0  ...  0.046094
5      0  ...  0.026563
6      0  ...  0.076559

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1672_1_3.png
   class  ...         h
0      0  ...  0.028907
1      0  ...  0.022654
2      0  ...  0.028128
3      0  ...  0.026563
4      0  ...  0.028128
5      0  ...  0.027342
6      0  ...  0.028128

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1672_1_4.png
   class  ...         h
0      0  ...  0.028128
1      0  ...  0.025784

[2 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1512.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1512_0_1.png
   class  ...         h
0      0  ...  0.157016
1      0  ...  0.177343
2      0  ...  0.122656
3      0  ...  0.215626
4      0  ...  0.176562
5      0  ...  0.144530

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1512_1_0.png
   class  ...         h
0      0  ...  0.242967

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1512_1_1.png
   class  ...         h
0      0  ...  0.037515
1      0  ...  0.084376

[2 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P2218.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P2218_0_0.png
   class  ...         h
0      0  ...  0.035764
1      0  ...  0.047656
2      0  ...  0.046875
3      0  ...  0.042969
4      0  ...  0.044531
5      0  ...  0.042188
6      0  ...  0.046094

[7 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1738.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1738_2_4.png
   class  ...         h
0      0  ...  0.017188
1      0  ...  0.017188
2      0  ...  0.016406

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1738_2_5.png
    class  ...         h
0       0  ...  0.017188
1       0  ...  0.018750
2       0  ...  0.015625
3       0  ...  0.014063
4       0  ...  0.016406
5       0  ...  0.014063
6       0  ...  0.017188
7       0  ...  0.017969
8       0  ...  0.017969
9       0  ...  0.013281
10      0  ...  0.017188
11      0  ...  0.018750
12      0  ...  0.017969
13      0  ...  0.019531
14      0  ...  0.017188
15      0  ...  0.017969
16      0  ...  0.017188
17      0  ...  0.019531
18      0  ...  0.022656
19      0  ...  0.021094
20      0  ...  0.024219
21      0  ...  0.024219
22      0  ...  0.028906
23      0  ...  0.042969
24      0  ...  0.028906
25      0  ...  0.016406
26      0  ...  0.017969
27      0  ...  0.016406
28      0  ...  0.013281
29      0  ...  0.017188
30      0  ...  0.016406
31      0  ...  0.017188
32      0  ...  0.017188
33      0  ...  0.017188
34      0  ...  0.018750
35      0  ...  0.017188

[36 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1738_3_4.png
   class  ...         h
0      0  ...  0.026562
1      0  ...  0.065625
2      0  ...  0.067969
3      0  ...  0.032031
4      0  ...  0.072656

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1738_3_5.png
    class  ...         h
0       0  ...  0.017969
1       0  ...  0.021094
2       0  ...  0.107813
3       0  ...  0.069531
4       0  ...  0.073438
5       0  ...  0.066406
6       0  ...  0.075781
7       0  ...  0.053906
8       0  ...  0.013072
9       0  ...  0.035475
10      0  ...  0.058594
11      0  ...  0.067969
12      0  ...  0.065625

[13 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1738_4_5.png
   class  ...         h
0      0  ...  0.039272
1      0  ...  0.052344
2      0  ...  0.050781
3      0  ...  0.057031
4      0  ...  0.052344
5      0  ...  0.051562
6      0  ...  0.051562
7      0  ...  0.054688
8      0  ...  0.057031
9      0  ...  0.017650

[10 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1088.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1088_0_0.png
   class  ...         h
0      0  ...  0.085938
1      0  ...  0.091406
2      0  ...  0.087499
3      0  ...  0.087499
4      0  ...  0.078124
5      0  ...  0.066406
6      0  ...  0.081249

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1088_0_1.png
   class  ...         h
0      0  ...  0.087499
1      0  ...  0.087499
2      0  ...  0.099218
3      0  ...  0.089842
4      0  ...  0.130468
5      0  ...  0.092188
6      0  ...  0.078124
7      0  ...  0.093750
8      0  ...  0.084374

[9 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1088_1_0.png
   class  ...         h
0      0  ...  0.175781
1      0  ...  0.132812
2      0  ...  0.192970
3      0  ...  0.172805

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1088_1_1.png
   class  ...         h
0      0  ...  0.192970
1      0  ...  0.172805
2      0  ...  0.161208

[3 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P2231.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P2231_0_0.png
    class  ...         h
0       0  ...  0.003234
1       0  ...  0.057032
2       0  ...  0.047657
3       0  ...  0.045311
4       0  ...  0.042969
5       0  ...  0.045311
6       0  ...  0.040624
7       0  ...  0.037501
8       0  ...  0.039062
9       0  ...  0.084374
10      0  ...  0.088281

[11 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2231_0_1.png
   class  ...         h
0      0  ...  0.042969
1      0  ...  0.148436
2      0  ...  0.037501

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2231_1_0.png
   class  ...         h
0      0  ...  0.089842
1      0  ...  0.095314
2      0  ...  0.114845
3      0  ...  0.100002
4      0  ...  0.130469
5      0  ...  0.074889

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2231_1_1.png
   class  ...         h
0      0  ...  0.074218
1      0  ...  0.092188
2      0  ...  0.130469

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2231_2_1.png
   class  ...         h
0      0  ...  0.078906
1      0  ...  0.071876
2      0  ...  0.082032
3      0  ...  0.082032
4      0  ...  0.071876
5      0  ...  0.041408
6      0  ...  0.068750

[7 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1513.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_0_1.png
   class  ...         h
0      0  ...  0.113284
1      0  ...  0.095523
2      0  ...  0.463860

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_1_0.png
   class  ...         h
0      0  ...  0.264845

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_1_1.png
   class  ...         h
0      0  ...  0.263070
1      0  ...  0.264845
2      0  ...  0.000982

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_3_0.png
   class  ...         h
0      0  ...  0.311721
1      0  ...  0.092107

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_3_1.png
   class  ...         h
0      0  ...  0.311721
1      0  ...  0.206247

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_3_2.png
   class  ...         h
0      0  ...  0.122659
1      0  ...  0.079689

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_3_3.png
   class  ...         h
0      0  ...  0.079689

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_4_0.png
   class  ...         h
0      0  ...  0.118829
1      0  ...  0.174216
2      0  ...  0.142968

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_4_1.png
   class  ...         h
0      0  ...  0.142968
1      0  ...  0.124218
2      0  ...  0.116407
3      0  ...  0.036255

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_4_2.png
   class  ...         h
0      0  ...  0.164841
1      0  ...  0.137498

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_5_1.png
   class  ...         h
0      0  ...  0.110155
1      0  ...  0.041872

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1513_5_2.png
   class  ...         h
0      0  ...  0.140627
1      0  ...  0.096463

[2 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1103.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1103_0_0.png
   class  ...         h
0      0  ...  0.080469
1      0  ...  0.075780
2      0  ...  0.082032

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1103_1_0.png
   class  ...         h
0      0  ...  0.155469
1      0  ...  0.214062
2      0  ...  0.076561
3      0  ...  0.087499
4      0  ...  0.158593
5      0  ...  0.144531
6      0  ...  0.098349

[7 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P2230.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P2230_0_0.png
   class  ...         h
0      0  ...  0.083995
1      0  ...  0.117969

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2230_0_1.png
   class  ...         h
0      0  ...  0.089063
1      0  ...  0.075782
2      0  ...  0.099219

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2230_0_2.png
   class  ...         h
0      0  ...  0.103125

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P2220.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P2220_0_0.png
   class  ...         h
0      0  ...  0.089844
1      0  ...  0.060937
2      0  ...  0.056250
3      0  ...  0.057031
4      0  ...  0.070313

[5 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P2181.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P2181_2_0.png
   class  ...         h
0      0  ...  0.021092

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2181_2_1.png
   class  ...         h
0      0  ...  0.023439
1      0  ...  0.025781
2      0  ...  0.046094

[3 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P2778.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_0_1.png
   class  ...         h
0      0  ...  0.147843

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_0_2.png
   class  ...         h
0      0  ...  0.147843

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_1_1.png
   class  ...         h
0      0  ...  0.133406

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_1_2.png
   class  ...         h
0      0  ...  0.133406

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_1_3.png
   class  ...         h
0      0  ...  0.084147
1      0  ...  0.326560

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_2_1.png
   class  ...         h
0      0  ...  0.218747
1      0  ...  0.237500
2      0  ...  0.216407

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_2_2.png
   class  ...         h
0      0  ...  0.216407
1      0  ...  0.030325

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_2_3.png
   class  ...         h
0      0  ...  0.091173
1      0  ...  0.273436
2      0  ...  0.220311
3      0  ...  0.187727

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_3_0.png
   class  ...       h
0      0  ...  0.2375

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_3_1.png
   class  ...         h
0      0  ...  0.228905

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_3_2.png
   class  ...         h
0      0  ...  0.174362

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_3_3.png
   class  ...         h
0      0  ...  0.208829
1      0  ...  0.278908
2      0  ...  0.306250

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2778_4_3.png
   class  ...         h
0      0  ...  0.511717

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P2802.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_2_6.png
   class  ...         h
0      0  ...  0.245161

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_3_1.png
   class  ...         h
0      0  ...  0.182402

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_3_5.png
   class  ...         h
0      0  ...  0.234376

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_3_6.png
   class  ...         h
0      0  ...  0.124373
1      0  ...  0.177161

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_3_7.png
   class  ...         h
0      0  ...  0.121916
1      0  ...  0.177161

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_4_1.png
   class  ...         h
0      0  ...  0.096504

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_4_2.png
   class  ...         h
0      0  ...  0.553909

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_4_3.png
   class  ...         h
0      0  ...  0.486722

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_4_4.png
   class  ...      h
0      0  ...  0.375

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_4_6.png
   class  ...         h
0      0  ...  0.118935
1      0  ...  0.203907
2      0  ...  0.149784
3      0  ...  0.021225

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_4_7.png
   class  ...         h
0      0  ...  0.163240
1      0  ...  0.118935
2      0  ...  0.021225

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_5_1.png
   class  ...         h
0      0  ...  0.100140
1      0  ...  0.046457

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_5_2.png
   class  ...        h
0      0  ...  0.10014

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_5_3.png
   class  ...         h
0      0  ...  0.276654

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_5_6.png
   class  ...         h
0      0  ...  0.225999
1      0  ...  0.522526

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_5_7.png
   class  ...         h
0      0  ...  0.522526

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_6_1.png
   class  ...         h
0      0  ...  0.163921
1      0  ...  0.443385
2      0  ...  0.275778
3      0  ...  0.445200

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_6_2.png
   class  ...         h
0      0  ...  0.163921
1      0  ...  0.290622
2      0  ...  0.275778

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_6_3.png
   class  ...         h
0      0  ...  0.008502

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_6_5.png
   class  ...         h
0      0  ...  0.200003
1      0  ...  0.482030

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_6_6.png
   class  ...         h
0      0  ...  0.303909
1      0  ...  0.482030

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_6_7.png
   class  ...         h
0      0  ...  0.114386
1      0  ...  0.228126
2      0  ...  0.539064

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_6_8.png
   class  ...         h
0      0  ...  0.114386
1      0  ...  0.228126
2      0  ...  0.247682
3      0  ...  0.153348

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_7_1.png
   class  ...         h
0      0  ...  0.007144

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_7_5.png
   class  ...         h
0      0  ...  0.282035
1      0  ...  0.239846

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_7_6.png
   class  ...         h
0      0  ...  0.207032
1      0  ...  0.293747
2      0  ...  0.255470
3      0  ...  0.271874
4      0  ...  0.282035

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_7_7.png
   class  ...         h
0      0  ...  0.207032
1      0  ...  0.213282
2      0  ...  0.185614

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2802_7_8.png
   class  ...         h
0      0  ...  0.185614
1      0  ...  0.063251
2      0  ...  0.124779

[3 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1474.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1474_2_1.png
   class  ...        h
0      0  ...  0.09766

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1474_2_2.png
   class  ...        h
0      0  ...  0.11250
1      0  ...  0.11250
2      0  ...  0.11562
3      0  ...  0.10234
4      0  ...  0.10703
5      0  ...  0.10078
6      0  ...  0.09766

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1474_3_2.png
   class  ...        h
0      0  ...  0.11172
1      0  ...  0.10234
2      0  ...  0.10859
3      0  ...  0.10312

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1474_5_2.png
   class  ...         h
0      0  ...  0.087007

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1474_6_2.png
   class  ...        h
0      0  ...  0.10078
1      0  ...  0.02315

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1474_6_3.png
   class  ...         h
0      0  ...  0.037017
1      0  ...  0.107810
2      0  ...  0.100780

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1474_7_3.png
   class  ...        h
0      0  ...  0.09453
1      0  ...  0.10469
2      0  ...  0.09844
3      0  ...  0.09766
4      0  ...  0.10078
5      0  ...  0.06142

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1474_8_3.png
   class  ...        h
0      0  ...  0.06719
1      0  ...  0.08906
2      0  ...  0.06641

[3 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1138.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1138_0_0.png
   class  ...         h
0      0  ...  0.261718

[1 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P2791.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_0_0.png
   class  ...         h
0      0  ...  0.258476

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_0_1.png
   class  ...         h
0      0  ...  0.353911

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_1_0.png
   class  ...         h
0      0  ...  0.380465
1      0  ...  0.093593
2      0  ...  0.404692
3      0  ...  0.132154

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_2_0.png
   class  ...        h
0      0  ...  0.28219

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_2_2.png
   class  ...         h
0      0  ...  0.292968
1      0  ...  0.196217

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_3_2.png
   class  ...        h
0      0  ...  0.19988

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_3_3.png
   class  ...         h
0      0  ...  0.221091

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_3_4.png
   class  ...         h
0      0  ...  0.087253

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_4_2.png
   class  ...         h
0      0  ...  0.292186

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_4_4.png
   class  ...         h
0      0  ...  0.139307

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_5_3.png
   class  ...         h
0      0  ...  0.340629

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_6_4.png
   class  ...         h
0      0  ...  0.335934
1      0  ...  0.365628

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_6_5.png
   class  ...         h
0      0  ...  0.365628
1      0  ...  0.164802
2      0  ...  0.266404

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_6_6.png
   class  ...         h
0      1  ...  0.146093

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_7_5.png
   class  ...         h
0      0  ...  0.196917
1      0  ...  0.349216

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_7_6.png
   class  ...         h
0      0  ...  0.221873
1      0  ...  0.236720
2      0  ...  0.087925

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P2791_8_6.png
   class  ...         h
0      0  ...  0.135515
1      0  ...  0.239067
2      0  ...  0.244534

[3 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P1529.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P1529_0_4.png
   class  ...         h
0      0  ...  0.098437

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1529_1_2.png
   class  ...         h
0      0  ...  0.035937

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1529_1_3.png
   class  ...         h
0      0  ...  0.035937
1      0  ...  0.035937

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1529_2_2.png
   class  ...         h
0      0  ...  0.054688

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1529_2_3.png
   class  ...       h
0      0  ...  0.0625

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1529_4_5.png
   class  ...         h
0      0  ...  0.119531
1      0  ...  0.115625
2      0  ...  0.093750

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1529_5_3.png
   class  ...         h
0      0  ...  0.073438

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P1529_5_5.png
   class  ...         h
0      0  ...  0.098437
1      0  ...  0.089844

[2 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P0179.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_0_0.png
   class  ...         h
0      0  ...  0.131250
1      0  ...  0.105467
2      0  ...  0.092969

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_0_2.png
   class  ...         h
0      0  ...  0.077342

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_0_3.png
   class  ...         h
0      0  ...  0.077342

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_1_0.png
   class  ...         h
0      0  ...  0.131250
1      0  ...  0.094530
2      0  ...  0.103125

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_1_1.png
   class  ...         h
0      0  ...  0.088278
1      0  ...  0.084375
2      0  ...  0.095311
3      0  ...  0.023924

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_1_2.png
   class  ...         h
0      0  ...  0.011313

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_1_3.png
   class  ...         h
0      0  ...  0.123436
1      0  ...  0.011313

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_2_0.png
   class  ...         h
0      0  ...  0.078903
1      0  ...  0.078122
2      0  ...  0.078122
3      0  ...  0.082033
4      0  ...  0.092969

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_2_1.png
    class  ...         h
0       0  ...  0.081252
1       0  ...  0.052636
2       0  ...  0.080471
3       0  ...  0.080471
4       0  ...  0.084375
5       0  ...  0.090627
6       0  ...  0.078903
7       0  ...  0.085155
8       0  ...  0.089846
9       0  ...  0.006899
10      0  ...  0.082033
11      0  ...  0.091408
12      0  ...  0.089066

[13 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_2_2.png
   class  ...         h
0      0  ...  0.118375
1      0  ...  0.081252
2      0  ...  0.088278
3      0  ...  0.078903
4      0  ...  0.070316
5      0  ...  0.084375
6      0  ...  0.075000

[7 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_2_3.png
   class  ...         h
0      0  ...  0.118375

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_2_4.png
   class  ...         h
0      0  ...  0.085936

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_3_1.png
   class  ...         h
0      0  ...  0.082813
1      0  ...  0.077342
2      0  ...  0.071877
3      0  ...  0.073438
4      0  ...  0.082166

[5 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_3_2.png
   class  ...         h
0      0  ...  0.082813
1      0  ...  0.075780
2      0  ...  0.071877
3      0  ...  0.080471
4      0  ...  0.079691
5      0  ...  0.077342

[6 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_3_4.png
   class  ...         h
0      0  ...  0.102344
1      0  ...  0.088278
2      0  ...  0.079691
3      0  ...  0.096994
4      0  ...  0.097653
5      0  ...  0.077342
6      0  ...  0.025248
7      0  ...  0.061354

[8 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_3_5.png
   class  ...         h
0      0  ...  0.015412
1      0  ...  0.013940
2      0  ...  0.091408

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_4_3.png
   class  ...         h
0      0  ...  0.107028

[1 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_4_4.png
   class  ...         h
0      0  ...  0.010040
1      0  ...  0.038033
2      0  ...  0.088645

[3 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_4_5.png
    class  ...         h
0       0  ...  0.075000
1       0  ...  0.067967
2       0  ...  0.084375
3       0  ...  0.078903
4       0  ...  0.092969
5       0  ...  0.098441
6       0  ...  0.068747
7       0  ...  0.066619
8       0  ...  0.076686
9       0  ...  0.071877
10      0  ...  0.084375
11      0  ...  0.076561
12      0  ...  0.044730

[13 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_4_6.png
   class  ...         h
0      0  ...  0.075000
1      0  ...  0.083594
2      0  ...  0.074219
3      0  ...  0.091882

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_5_5.png
   class  ...         h
0      0  ...  0.039644
1      0  ...  0.075780

[2 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_5_6.png
   class  ...         h
0      0  ...  0.082813
1      0  ...  0.004997
2      0  ...  0.097653
3      0  ...  0.092969

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_6_5.png
   class  ...         h
0      0  ...  0.099221
1      0  ...  0.120313
2      0  ...  0.104686
3      0  ...  0.206249

[4 rows x 5 columns]
/content/drive/MyDrive/dataset_tile/tiled/validation/P0179_6_6.png
   class  ...         h
0      0  ...  0.109377
1      0  ...  0.206249
2      0  ...  0.113280
3      0  ...  0.124217

[4 rows x 5 columns]
Image: /content/drive/MyDrive/dataset_tile/org/validation/P2236.png
/content/drive/MyDrive/dataset_tile/tiled/validation/P2236_0_0.png
    class  ...         h
0       0  ...  0.067187
1       0  ...  0.087500
2       0  ...  0.083594
3       0  ...  0.057031
4       0  ...  0.007142
5       0  ...  0.053906
6       0  ...  0.051562
7       0  ...  0.061719
8       0  ...  0.067969
9       0  ...  0.051562
10      0  ...  0.043750
11      0  ...  0.058594
12      0  ...  0.056250

[13 rows x 5 columns]
train: 536
test: 119
tiled_list = os.listdir('/content/drive/MyDrive/dataset_tile/tiled/validation')

Die enstandene Ordnerstruktur (validation -> images) entspricht nicht der Zielstruktur (images -> validation). Aus diesem Grund werden die Dateien erneut verschoben.

tiled_img = list()
tiled_txt = list()
for file in tiled_list: 
  if str.split(file, ".")[1] == "png":
    tiled_img.append(file)
  elif str.split(file, ".")[1] == "txt":
    tiled_txt.append(file)
for file1 in tiled_img:
    src_path = '/content/drive/MyDrive/dataset_tile/tiled/validation/' + file1
    dst_path = '/content/drive/MyDrive/dataset_tile/tiled/validation/images/' + file1
    shutil.move(src_path, dst_path)
    #print('Copied')
for file1 in tiled_txt:
    src_path = '/content/drive/MyDrive/dataset_tile/tiled/validation/' + file1
    dst_path = '/content/drive/MyDrive/dataset_tile/tiled/validation/labels/' + file1
    shutil.move(src_path, dst_path)
    #print('Copied')

Tiling Background#

Wie oben erwähnt, funktioniert das erwähnte Repo nur für Bilder mit Labels. Da die Backgroundbilder keine Labels haben, müssen diese seperat “getilt” werden. Dafür werden die Bibliotheken cv2 und math genutzt.

def get_tiles(src_path,dst_path,file):
  img = cv2.cvtColor(cv2.imread(f"{src_path}{file}"),cv2.COLOR_BGR2RGB)
  img_shape = img.shape
  tile_size = (640, 640)
  offset = (640, 640)
  
  for i in list(range(int(math.ceil(img_shape[0]/(offset[1] * 1.0))))):
      for j in list(range(int(math.ceil(img_shape[1]/(offset[0] * 1.0))))):
          cropped_img = img[offset[1]*i:min(offset[1]*i+tile_size[1], img_shape[0]), offset[0]*j:min(offset[0]*j+tile_size[0], img_shape[1])]
          # Debugging the tiles
          cv2.imwrite(dst_path + "debug_" + str(i) + "_" + str(j) + file, cv2.cvtColor(cropped_img,cv2.COLOR_BGR2RGB))
  return (i+1)*(j+1)

Mit der oben aufgeführten Funktion werden die Bilder zerlegt. Da sich bei Bildern implizit um mehrdimensionale Listen handelt, werden diese entsprechend der gewünschten Teilung durch itteriert. Wichtig hier ist es, die Farbkanäle mit cv2.COLOR_BGR2RGB anzupassen. Da diese durch die cv2-Bibliothek vertauscht werden.

dir_path = "/content/drive/MyDrive/dataset/labels/validation" #GoogleDrive Data Folders
img_path = "/content/drive/MyDrive/dataset/images/removed_background_validation/"
img_list_all = os.listdir(img_path)
labels_list_all  = os.listdir(dir_path)
image_all = list()
for img in img_list_all:
  image_all.append(str.split(img, ".")[0])
label_all = list()
for label in labels_list_all:
  label_all.append(str.split(label, ".")[0])
background_img = list()
no_background_img = list()
for filename in image_all:
  pic_name = filename+".png" 
  if filename in label_all:
    no_background_img.append(pic_name)
  else: 
    background_img.append(pic_name)

Um die Backgroundbilder zu ermitteln, werden alle Bilder die keine Labeldatei haben in eine Liste gespeichert.

count_tiles = 0
source_path = img_path
dest_path = '/content/drive/MyDrive/dataset_tile/tiled/images/validation/'
for i in background_img:
  count_tiles += get_tiles(source_path,dest_path,i)
  if count_tiles >= 207:
    break

Anschließend werden die Backgroundbilder zerlegt bis 207 Kacheln entstanden sind. Die 207 entspricht der 10%-Anreicherung der Daten mit Backgroundbildern.

Rotate#

Um die Anzahl an Instanzen der Klasse Helikopter zu erhöhen, werden die vorhandenen Bilder und Label zusätzlich zu den YOLOv5 interen Funktionen um einen beliebigen Winkel gedreht.

img_list = list()
text_list = list()
label_list = os.listdir(myPath)
for filename in label_list:
  path =  myPath + "/" + filename
  with open(path) as f:
    for lines in f:
      if (re.match("^1",lines)):
        png = str.split(filename, ".")[0] + ".png"
        txt = str.split(filename, ".")[0] + ".txt"
        text_list.append(txt)
        img_list.append(png)
        continue
img_list = np.unique(img_list)
label_list = np.unique(text_list)
# return img_list, text_list

Dafür werden im ersten Schritt die Datein mit Helikoptern über die Einträge in der Labeldatei ermittelt.

Ähnlich wie bei dem Tiling ist auch beim Rotieren die Herausforderung das Label und Bilder rotiert werden müssen. Aus diesem Grund wird ebenfalls auf ein vorhandenes Gihtub-Repository zurückgegriffen. [Rizwan, 2020]

! git clone https://github.com/usmanr149/Yolo_bbox_manipulation.git
Cloning into 'Yolo_bbox_manipulation'...
remote: Enumerating objects: 23, done.
remote: Counting objects: 100% (23/23), done.
remote: Compressing objects: 100% (20/20), done.
remote: Total 23 (delta 7), reused 16 (delta 3), pack-reused 0
Unpacking objects: 100% (23/23), done.

Vorrausetzung für die Ausführung des Codes ist, dass sich die Bilder und Label im gleichen Ordner befinden. Aus diesem Grund müssen diese erneut verschoben werden.

for file1 in img_list:
    src_path = '/content/drive/MyDrive/dataset/images/train/' + file1
    dst_path = '/content/Yolo_bbox_manipulation/' + file1
    shutil.copy(src_path, dst_path)
    print('Copied')
for file1 in label_list:
    src_path = '/content/drive/MyDrive/dataset/labels/train/' + file1
    dst_path = '/content/Yolo_bbox_manipulation/' + file1
    shutil.copy(src_path, dst_path)
    print('Copied')
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
Copied
%cd Yolo_bbox_manipulation
/content/Yolo_bbox_manipulation

Zum Rotieren wird rotate.py aus dem erwähnten Repository über die subprocess -Bibliothek aufgerufen. Die Bibliothek ermöglicht den Terminalaufruf in einer For-Schleife. Für einen signifikaten Anstieg der Instanzanzahl der Helikopter wird jedes Bild sechsmal rotiert. Bei jeder Rotation wird ein zufälliger Winkel zwischen 1 und 359 Grad genutzt.

counter = 0
import subprocess
img_list = img_list[1:]
# myangle="65"
for x in img_list:
  for i in range(0,6):
    myangle = str(np.random.randint(1,359))
    cmd = "python rotate.py -i "+x+" -a "+myangle
    subprocess.call(cmd, shell=True)  # returns the exit code in unix
    counter += 1
    print('counter:', counter)
counter: 1
counter: 2
counter: 3
counter: 4
counter: 5
counter: 6
counter: 7
counter: 8
counter: 9
counter: 10
counter: 11
counter: 12
counter: 13
counter: 14
counter: 15
counter: 16
counter: 17
counter: 18
counter: 19
counter: 20
counter: 21
counter: 22
counter: 23
counter: 24
counter: 25
counter: 26
counter: 27
counter: 28
counter: 29
counter: 30
counter: 31
counter: 32
counter: 33
counter: 34
counter: 35
counter: 36
counter: 37
counter: 38
counter: 39
counter: 40
counter: 41
counter: 42
counter: 43
counter: 44
counter: 45
counter: 46
counter: 47
counter: 48
counter: 49
counter: 50
counter: 51
counter: 52
counter: 53
counter: 54
counter: 55
counter: 56
counter: 57
counter: 58
counter: 59
counter: 60
counter: 61
counter: 62
counter: 63
counter: 64
counter: 65
counter: 66
counter: 67
counter: 68
counter: 69
counter: 70
counter: 71
counter: 72
counter: 73
counter: 74
counter: 75
counter: 76
counter: 77
counter: 78
counter: 79
counter: 80
counter: 81
counter: 82
counter: 83
counter: 84
counter: 85
counter: 86
counter: 87
counter: 88
counter: 89
counter: 90
counter: 91
counter: 92
counter: 93
counter: 94
counter: 95
counter: 96
counter: 97
counter: 98
counter: 99
counter: 100
counter: 101
counter: 102
counter: 103
counter: 104
counter: 105
counter: 106
counter: 107
counter: 108
counter: 109
counter: 110
counter: 111
counter: 112
counter: 113
counter: 114
counter: 115
counter: 116
counter: 117
counter: 118
counter: 119
counter: 120
counter: 121
counter: 122
counter: 123
counter: 124
counter: 125
counter: 126
counter: 127
counter: 128
counter: 129
counter: 130
counter: 131
counter: 132
counter: 133
counter: 134
counter: 135
counter: 136
counter: 137
counter: 138
counter: 139
counter: 140
counter: 141
counter: 142
counter: 143
counter: 144

Zum schnelleren Verschieben werden die rotierten Bilder gezippt. Für die Modellerstellung werden sie in die erläuterte Ordnerstruktur übertragen.

!zip -r /content/drive/MyDrive/heli_train_2nd_Round.zip /content/Yolo_bbox_manipulation
  adding: content/Yolo_bbox_manipulation/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_81.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_30.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_201.txt (deflated 64%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_200.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_87.txt (deflated 67%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_206.txt (deflated 50%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_121.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_314.txt (deflated 64%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_254.txt (deflated 67%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_121.txt (deflated 56%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_204.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_171.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_143.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_141.txt (deflated 68%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_9.txt (deflated 56%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_323.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_162.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_188.txt (deflated 67%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_263.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_5.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_134.jpg (deflated 10%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_187.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_291.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P1394_303.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_74.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_192.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_210.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_264.txt (deflated 64%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_54.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_91.jpg (deflated 0%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_237.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_9.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_176.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_351.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_65.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_72.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_288.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_22.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_176.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_204.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_299.jpg (deflated 7%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_206.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_187.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_112.txt (deflated 67%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_310.jpg (deflated 9%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_175.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_30.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_325.txt (deflated 55%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_121.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_178.jpg (deflated 0%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_241.txt (deflated 68%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_49.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_41.txt (deflated 59%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_203.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_216.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_114.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_254.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_49.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_253.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_296.jpg (deflated 7%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_121.jpg (deflated 7%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_264.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_157.jpg (deflated 9%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_265.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_188.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_267.txt (deflated 57%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_323.jpg (deflated 9%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_165.txt (deflated 68%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_131.jpg (deflated 7%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_112.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_19.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_198.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_143.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_121.jpg (deflated 9%)
  adding: content/Yolo_bbox_manipulation/rotated_P1394_325.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_351.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_41.jpg (deflated 12%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_80.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_49.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_267.jpg (deflated 0%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_79.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_142.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_44.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P1394_170.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_226.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_8.txt (deflated 57%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_291.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_137.txt (deflated 64%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_12.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_117.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_208.txt (deflated 64%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_149.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_165.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_137.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_328.txt (deflated 64%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_184.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_121.txt (deflated 64%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_131.txt (deflated 59%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_54.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_99.txt (deflated 67%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_30.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_316.jpg (deflated 8%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_316.jpg (deflated 8%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_269.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_46.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_303.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_205.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_310.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_109.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1394_170.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_20.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_144.txt (deflated 56%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_265.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_250.txt (deflated 68%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_201.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_162.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_180.jpg (deflated 0%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_19.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_172.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_206.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_22.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_22.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P1394_69.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_176.txt (deflated 44%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_79.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_237.txt (deflated 55%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_203.jpg (deflated 8%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_99.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P1394_292.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_130.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_84.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_309.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/.git/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/index (deflated 43%)
  adding: content/Yolo_bbox_manipulation/.git/branches/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/packed-refs (deflated 11%)
  adding: content/Yolo_bbox_manipulation/.git/objects/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/64/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/64/8c1383a177f15cd0d69dc264946f8c89a3e517 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/4a/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/4a/69f8b094313a53122210f22b91c1cc2cc480a2 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/84/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/84/7b2cc976c9d90cd20c88c36c9d1e5b245b22a0 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/94/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/94/49b33f62fb991a292546b631f53385ac614370 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/ac/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/ac/84df98041c3cb66a5724f8134bba33dd8538ed (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/ac/ae36870389668196a66b3f23e0d5b47fe318cb (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/9e/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/9e/47ed14e59cf3e219a57427e929fe387e8156a7 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/b6/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/b6/d969ca1446fd1e13c881818c9e9f4185fe19b4 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/ef/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/ef/48521033051816c717dcf3bae8282190ac46d1 (deflated 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/bb/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/bb/823326f82d612abf8a6cf53d543e300e2a7653 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/a5/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/a5/7c5bd3fb1ea2778da8fb06db1979987100a11a (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/9d/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/9d/817493d1c375a4bd5c18021870c080ae93a04b (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/pack/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/0a/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/0a/1ff7d9b61f0505583a0a2f0fc3a947a901040d (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/5c/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/5c/eec1f12b0933e51cc3dccd51c9d448a75f1610 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/8b/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/8b/7f16ecb8d42e141e827eb7eae0987abe16f0f9 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/77/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/77/adedfacb6a6b77cd2d1cc9623fabeabda4135d (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/96/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/96/378bc617e86a450d19e80a1c5421a8b609522a (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/29/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/29/faa73de229dbda26157bcc095c1f25d7977e96 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/53/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/53/70c2f1803dfb1c5a8853e5b8952328e93d4039 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/85/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/85/0c389819d90cbcd0567c56c22ce23a147149c9 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/36/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/36/e987b8a2ef5693bcf5d4a1aa4327d145a9bfc2 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/45/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/45/2ce7984580bcb39b0790fb6486151af99cb672 (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/info/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/fd/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/objects/fd/40454b9d2f30d0cd26a92094f41402249d5500 (deflated 0%)
  adding: content/Yolo_bbox_manipulation/.git/config (deflated 31%)
  adding: content/Yolo_bbox_manipulation/.git/description (deflated 14%)
  adding: content/Yolo_bbox_manipulation/.git/refs/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/refs/tags/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/refs/remotes/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/refs/remotes/origin/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/refs/remotes/origin/HEAD (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/refs/heads/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/refs/heads/master (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/HEAD (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/pre-receive.sample (deflated 40%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/fsmonitor-watchman.sample (deflated 53%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/update.sample (deflated 68%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/applypatch-msg.sample (deflated 42%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/post-update.sample (deflated 27%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/pre-applypatch.sample (deflated 38%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/commit-msg.sample (deflated 44%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/pre-commit.sample (deflated 43%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/pre-push.sample (deflated 50%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/pre-rebase.sample (deflated 59%)
  adding: content/Yolo_bbox_manipulation/.git/hooks/prepare-commit-msg.sample (deflated 50%)
  adding: content/Yolo_bbox_manipulation/.git/logs/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/logs/refs/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/logs/refs/remotes/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/logs/refs/remotes/origin/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/logs/refs/remotes/origin/HEAD (deflated 27%)
  adding: content/Yolo_bbox_manipulation/.git/logs/refs/heads/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/logs/refs/heads/master (deflated 27%)
  adding: content/Yolo_bbox_manipulation/.git/logs/HEAD (deflated 27%)
  adding: content/Yolo_bbox_manipulation/.git/info/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/.git/info/exclude (deflated 28%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_92.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_263.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_346.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_281.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/.ipynb_checkpoints/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_241.jpg (deflated 10%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_289.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_176.jpg (deflated 0%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_57.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_308.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_243.txt (deflated 50%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_144.jpg (deflated 8%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_201.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_310.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_285.txt (deflated 57%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_303.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_15.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_61.txt (deflated 67%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_265.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_241.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_296.txt (deflated 54%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_15.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_157.txt (deflated 59%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_109.txt (deflated 59%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_253.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_84.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P1394_303.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_79.txt (deflated 49%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_139.txt (deflated 59%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_198.txt (deflated 50%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_245.txt (deflated 57%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_139.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P1394_69.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_130.txt (deflated 64%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_81.txt (deflated 60%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_292.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_61.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_129.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_186.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_299.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_325.txt (deflated 50%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_23.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_205.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_93.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_240.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_341.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_309.jpg (deflated 9%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_30.jpg (deflated 7%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_210.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_234.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_130.jpg (deflated 7%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_214.jpg (deflated 8%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_44.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_142.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_310.txt (deflated 55%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_79.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_265.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_117.txt (deflated 50%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_240.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_289.txt (deflated 56%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_22.jpg (deflated 9%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_57.jpg (deflated 7%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_324.txt (deflated 66%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_171.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_255.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_309.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_329.jpg (deflated 11%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_80.txt (deflated 43%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_329.txt (deflated 59%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_314.jpg (deflated 10%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_49.jpg (deflated 9%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_170.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_208.jpg (deflated 9%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_316.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_234.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_250.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_200.txt (deflated 55%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_218.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_175.txt (deflated 68%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_281.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_149.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_170.txt (deflated 57%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_8.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_241.txt (deflated 59%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_241.txt (deflated 64%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_46.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_218.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1139_92.txt (deflated 59%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_5.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_328.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_69.txt (deflated 43%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_265.txt (deflated 66%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_214.txt (deflated 54%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_201.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_144.jpg (deflated 10%)
  adding: content/Yolo_bbox_manipulation/rotated_P2247_23.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_175.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P1170_72.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/__pycache__/ (stored 0%)
  adding: content/Yolo_bbox_manipulation/__pycache__/helpers.cpython-37.pyc (deflated 42%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_222.txt (deflated 44%)
  adding: content/Yolo_bbox_manipulation/rotated_P1173_180.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_316.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1159_341.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_77.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_144.txt (deflated 57%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_269.txt (deflated 57%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_288.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_335.jpg (deflated 8%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_184.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_245.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_93.txt (deflated 62%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_69.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1394_292.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_178.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_114.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_243.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1393_87.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_240.txt (deflated 64%)
  adding: content/Yolo_bbox_manipulation/rotated_P2210_130.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_74.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P2235_346.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_141.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_128.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_324.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P2600_285.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_82.txt (deflated 68%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_175.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_255.txt (deflated 56%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_69.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P1394_325.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_20.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_77.txt (deflated 64%)
  adding: content/Yolo_bbox_manipulation/rotated_P0255_128.txt (deflated 66%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_325.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_134.txt (deflated 60%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_308.jpg (deflated 5%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_172.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P1158_65.jpg (deflated 6%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_222.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_309.txt (deflated 44%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_186.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_226.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P1479_91.txt (deflated 43%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_129.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P1401_12.jpg (deflated 2%)
  adding: content/Yolo_bbox_manipulation/rotated_P2226_335.txt (deflated 63%)
  adding: content/Yolo_bbox_manipulation/rotated_P1412_265.txt (deflated 56%)
  adding: content/Yolo_bbox_manipulation/rotated_P1392_82.jpg (deflated 1%)
  adding: content/Yolo_bbox_manipulation/rotated_P1150_325.jpg (deflated 8%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_240.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P1131_192.txt (deflated 58%)
  adding: content/Yolo_bbox_manipulation/rotated_P1395_241.jpg (deflated 4%)
  adding: content/Yolo_bbox_manipulation/rotated_P1391_216.txt (deflated 65%)
  adding: content/Yolo_bbox_manipulation/rotated_P0223_69.txt (deflated 61%)
  adding: content/Yolo_bbox_manipulation/rotated_P2269_206.jpg (deflated 3%)
  adding: content/Yolo_bbox_manipulation/rotated_P0220_292.jpg (deflated 4%)