What is the logic behind recommended normalization parameters in PyTorch?
On the PyTorch documentation for torchvision.models, it is states that images have to be loaded in a range of [0,1] and then normalized using mean = [0.485, 0.456, 0.406]
and std = [0.229, 0.224, 0.225]
. What is the logic behind these specific values?
Topic torchvision pytorch deep-learning
Category Data Science