-
Notifications
You must be signed in to change notification settings - Fork 43
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
Question about changing backbone #30
Comments
Have you modified Line 4~7 in The |
yes I already fixed that but error occurs. |
What if you uncomment the Line 6 in link 4? |
If i uncomment it, this error occurs. |
Can I have a look at your outermost configuration file (like |
handRL is our custom dataset and this file (hand2voc) has been changed to voc format. https://github.com/bluvory/kuaicv/blob/main/MIAOD.py |
I think that maybe you should add or modify something in this SSD+VOC configuration file to your MIAOD.py, such as train_pipeline, test_pipeline, and so on. You can refer to the difference between MIAOD.py and the RetinaNet+VOC configuration file. |
I changed the MIAOD.py like this on your advice, |
It is really a confusing error... Could you provide your full output log? |
here, I put both cases of errors in this link. https://github.com/bluvory/kuaicv/blob/main/error.py |
I think I have got the point of the problem, that is, you need to add The deep reason is that, all of this MI-AOD repository is based on MMDetection V2.3.0 but not the latest version of MMDetection. There are some differences between these two versions. Please customize any files on the version 2.3.0. |
I got it. Thank you for your kind response. |
@bluvory cna you please share ur implementation with retinanet repo |
Hello, I have a question about changing the backbones.
I want to change the backbone retinanet to ssd.
( customize 3 just like you customized 1 to 2 according to the paper )
I tried customizing it, and the following error occurred. ( look at link4 )
TypeError: init() missing 1 required positional argument: 'input_size'
So when I deleted input_size, I got the following error.
NameError: name 'input_size' is not defined
model, train_cfg, test_cfg are well inputted.
How can I fix this?
The text was updated successfully, but these errors were encountered: