open-mmlab / mmocr

OpenMMLab Text Detection, Recognition and Understanding Toolbox
https://mmocr.readthedocs.io/en/dev-1.x/
Apache License 2.0
4.31k stars 746 forks source link

swin backbone #552

Closed zheli0088 closed 2 years ago

zheli0088 commented 2 years ago

你好,我想问一下 mmocr dbnet 是否支持mmdet里面的swin backbone

gaotongxiao commented 2 years ago

Yes, as long as you specify mmdet.SwinTransformer in the config and make sure its output is in the same format as ResNet. Usually, ResNet returns a tuple of (C2, C3, C4, C5) features.

zheli0088 commented 2 years ago

@gaotongxiao Thank you.