-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
input image normalization #48
Comments
|
Thanks for your answer. -> The output scale does not have to be the same as that of the input: Anyway, your normalization technique produces accurate results, so that means it works. Maybe it's just a matter of training convergence. Best |
Although they are concatenated, their scales do not have to be in the same range. The learnable weights will consider the scale difference. I think you don't have to worry about that. |
Thank you very much |
Hello,
sorry for asking you too many questions.
I would like to know where the input images are actually normalized to ImageNet mean and standard deviation?
As far as I know, the code just subtracts the input image by the pixel_means = np.array([[[123.68, 116.78, 103.94]]])
The input heatmaps are in the range of [0, 255.0]
I can see two problems here
Could you please describe a bit more about this kind of normalization? Or Did I miss something from your code?
Thanks!
The text was updated successfully, but these errors were encountered: