You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some datasets like EuroSAT, the normalization statistics per band are included in the datamodule. However, they are not passed in to the self.aug transform or others such that the image normalizations are wrong (the applied augmentations are still the default mean=0, std=255). I would expect that this also happens for other datamodules.
Oops. Luckily this is easy to fix. Just move self.mean and self.std BEFORE super().__init__(). Want to submit a PR and check for other places where this happens?
Description
For some datasets like EuroSAT, the normalization statistics per band are included in the datamodule. However, they are not passed in to the
self.aug
transform or others such that the image normalizations are wrong (the applied augmentations are still the default mean=0, std=255). I would expect that this also happens for other datamodules.Steps to reproduce
Version
'0.6.0.dev0'
The text was updated successfully, but these errors were encountered: