How to change backbone of faster rcnn #9169
-
I have trained faster rcnn with ResNet50 backbone (as default settings). Now I want to retrain model with InceptionV2 or any other feature extraction network. Can anyone please let me know how to change the backbone of Faster rcnn. Below is the config file details model = dict( |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can modify the |
Beta Was this translation helpful? Give feedback.
You can modify the
backbone
settings in the config to use other backbones in mmdet/models/backbones. You can refer to https://github.com/open-mmlab/mmdetection/tree/master/configs/res2net for changing backbone.