-
Notifications
You must be signed in to change notification settings - Fork 566
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
'RoIAlignRotated' object has no attribute 'out_size' #40
Comments
I found potential error if change the line of code as suggestion due to mismatches between ops in
|
Could you submit a PR to help us fix this bug? @DangChuong-DC |
PR is ready #51 |
thx! |
修改了出现这类问题:TypeError: can't multiply sequence by non-int of type 'tuple' |
Hi @gys1287009045 |
Modify the 101 line of rotate_single_level_roi_extractor.py:
out_size = self.roi_layers[0].out_size
to:
out_size = self.roi_layers[0].output_size[0]
The text was updated successfully, but these errors were encountered: