Is the sigma_limit of albumentations GaussianBlur correct?
Hi, thanks for your excellent work!
I'm trying to reproduce BYOL using albumentations transforms. However, I noticed that in
https://github.com/yaox12/BYOL-PyTorch/blob/master/data/byol_transform_a.py#L43
you set the sigma_limit to (0.1, 0.2), instead of (0.1, 2.0). Is it intentional?
This should be a mistake. (0.1, 2.0) is correct.
@SunDoge
Also to notice that the HueSaturationValue in byol_transform_a.py may not be consistent with the torchvision version.
See https://github.com/albumentations-team/albumentations/issues/672 and https://github.com/albumentations-team/albumentations/issues/698 for details.
Hi, @yaox12 . Thanks for your suggestion. ColorJitter has been added to albumentations and I replaced RandomBrightnessContrast and HueSaturationValue with it.