What size should I do RandomResizeCrop

I have been trying multiple values for RandomResizedCrop and still am coming up with ‘voids’ where there’s empty spots in the picture that get filled with a mirror of the image.

I keep increasing it but it’s more apparent as I do. I think I am misunderstanding how it works. Here’s my code below. Any suggestions or tips would be appreciated :slight_smile:

batch_tfms = [*aug_transforms(size=224, max_warp=0,max_rotate=360.0), Normalize.from_stats(*imagenet_stats)] item_tfms = RandomResizedCrop(1024, min_scale=0.75, ratio=(1.,1.)) bs=64

Thank you for your time.