I am trying to re-create the results from the original paper, so I am just curious about this. Is this method of normalization specific to this task, did the imagenet normalizations for pytorch change over time, or is there some other reason I may be missing?
The original VGG network (same as AlexNet etc.) did not rescale the input images. This was only done for the pytorch re-implementation. We used the original VGG network.
The pytorch docs (link) say to normalize images via
However, the notebook in this repo normalizes via
I am trying to re-create the results from the original paper, so I am just curious about this. Is this method of normalization specific to this task, did the imagenet normalizations for pytorch change over time, or is there some other reason I may be missing?