mmtracking
mmtracking copied to clipboard
About the error of using the Plugin in the masktrack rcnn like mmdetection
Hello! I want to use the plugin in the masktrack rcnn just like the mmdetection,
But it occur this error, could you please tell me how to solve this problem?
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.
So could you please tell me how to add detector on the outside?
Just like this, you should use
model = dict(
detector=dict(
backbone=dict(xxxx)
)
)
instead of
model = dict(
backbone=dict(xxxx)
)