Skip to content

Commit 7bd7e45

Browse files
Update utils.py
1 parent fed54ce commit 7bd7e45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def get_transforms(norm_mean,norm_std):
5555
width=32
5656
)
5757
], p=0.5),
58-
A.Cutout(num_holes=1, max_h_size=16, max_w_size=16, fill_value=(norm_mean[0]*255, norm_mean[1]*255, norm_mean[2]*255), p=1),
58+
A.Cutout(num_holes=1, max_h_size=8, max_w_size=8, fill_value=(norm_mean[0]*255, norm_mean[1]*255, norm_mean[2]*255), p=1),
5959
A.Rotate(limit=5),
6060
A.Normalize(norm_mean, norm_std),
6161
ToTensorV2()

0 commit comments

Comments
 (0)