Viewing a single comment thread. View all comments

viertys OP t1_je9lv4x wrote

I am currently using the albumentations module. I rotate, shift, rotate, blur, horizontal flip, downscale and use gauss noise. I get around 400 images after doing this. Is there anything you would suggest?

1

Environmental_Ice422 t1_jed1cqb wrote

You should apply those transforms on each batch while training, rather than transforming the data before training. This approach is called doing the augmentation on the fly.

1