-
Notifications
You must be signed in to change notification settings - Fork 116
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
Why reshaping the top blob in RPN ? #20
Comments
the first dim are dummy indices which are set to be 0 and expected by loss layer |
I agree with that, the problem is that the reshape should be : With N = cfg.POST_NMS_KEEP Is not right ? |
Where is this |
in the setup part |
And then, a reshape is done in the forward function... But it should be more logical to shape top[0] to the right shape in the setup() step, according to me. |
OK, I just saw the line you referred to. |
Then in |
I don't understand why there is this line :
top[0].reshape(1, 5)
in this file.According to what I have understand, and according to the comment juste before this line :
Are you sure this reshape is correct ?
The text was updated successfully, but these errors were encountered: