mmtracking icon indicating copy to clipboard operation
mmtracking copied to clipboard

About the error of using the Plugin in the masktrack rcnn like mmdetection

Open lijoe123 opened this issue 2 years ago • 3 comments

Hello! I want to use the plugin in the masktrack rcnn just like the mmdetection, 6d8ba91751c79d710e147318ebdb7c7 But it occur this error, could you please tell me how to solve this problem? error

lijoe123 avatar Jun 07 '22 03:06 lijoe123

model = dict(
    **detector**=dict(
        backbone=dict(xxxx)
    )
)

The correct form is as above.(** is no use, just as a reminder, please remember to delete)

In general, to change the configuration file in the detector part, you need to add detector on the outside.

pixeli99 avatar Jun 07 '22 11:06 pixeli99

So could you please tell me how to add detector on the outside?

lijoe123 avatar Jun 07 '22 12:06 lijoe123

Just like this, you should use

model = dict(
    detector=dict(
        backbone=dict(xxxx)
    )
)

instead of

model = dict(
        backbone=dict(xxxx)
)

pixeli99 avatar Jun 07 '22 16:06 pixeli99