Skip to content
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

MMDetection issues #47

Open
digantamisra98 opened this issue Dec 24, 2020 · 0 comments
Open

MMDetection issues #47

digantamisra98 opened this issue Dec 24, 2020 · 0 comments

Comments

@digantamisra98
Copy link

Upon trying to use the Mask R-CNN ECANet-50 weights with MMDetection for simple inference, we (@iyaja) faced several issues which are listed below:

  1. Kernel Size discrepancy in the backbone ECANet-50 which we solved by having k_size to be 3 for the first two blocks and 7 for the last two in the backbone.
  2. For the mask head, the ECANet uses 81 classes instead of 80 which is used as default in MMDetection configs where the +1 class is accounted for the background class.
  3. For the Regression head, because of the 81 classes the input layer in the Linear layer now changed to 324 instead of 320 as in the default MMDetection config.
  4. Because MMDetection was updated with the bbox_head and mask_head keys being shifted to roi_head super keys, there is a key mismatch between the state_dict of the weights provided in this repository and the config in MMDetection.

Even after fixing the above issues, we were not able to obtain valid results, example:
download
Expected result:
coco_test_12510

We would like the authors to share which commit hash of MMDetection they used to obtain the results. Additionally, it would be very beneficial if the authors could add a dedicated folder providing the code to run both training and inference for all the object detection and segmentation models presented in the paper.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant