-
Notifications
You must be signed in to change notification settings - Fork 145
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
Regarding the code at line 86-90 in liif.py #47
Comments
As far as i understand: cell = * 2 / [out_height, out_width] So rel_cell holds input-to-output scale for height and width as described in "Cell decoding" block of paper. P.S. |
Hi guys, @shkarupa-alex @ShuGuoJ do you think the formula should be |
Why is the side length of each grid 2/N? The N means what here. |
N means height or width of the feature map |
Does it mean the decell is the 2/scale actually? |
"rel_cell = cell.clone()
rel_cell[:, :, 0] *= feat.shape[-2]
rel_cell[:, :, 1] *= feat.shape[-1]"
What does the code mean? Before that, rel_cell stores the proportion of 2 to crop_hr.shape. So, its multiplication resultant means what?
The text was updated successfully, but these errors were encountered: