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
Thanks for publishing these pretrained models! We added them to TorchGeo, but aren't sure what normalization we should be using with them. Looking through the datasets, I'm seeing very different normalizations used for each dataset:
BigEarthNet: compute mean/std, normalize using clip((x - mean - 2 * std) / (4 * std) * 255)
SeCo: compute min/max, normalize using clip((x - min) / (max - min) * 255), followed by ImageNet normalization
To most effectively use these pretrained models, we would like to be able to use the same normalization used to create the weights. So I'm guessing we should use the SeCo normalization technique?
The text was updated successfully, but these errors were encountered:
Thanks for publishing these pretrained models! We added them to TorchGeo, but aren't sure what normalization we should be using with them. Looking through the datasets, I'm seeing very different normalizations used for each dataset:
clip((x - mean - 2 * std) / (4 * std) * 255)
clip((x - min) / (max - min) * 255)
clip((x - min) / (max - min) * 255)
, followed by ImageNet normalizationTo most effectively use these pretrained models, we would like to be able to use the same normalization used to create the weights. So I'm guessing we should use the SeCo normalization technique?
The text was updated successfully, but these errors were encountered: