I think I have updated mmdetection and mmcv to the latest version but the warning bellow still occurs. I don't know which function has triggered this warning.
The old API of register_module(module, force=False) is deprecated and will be removed, please use the new API register_module(name=None, force=False, module=None) instead.
Old API:
@xxx.register_module
class xxx:
xxxx
New API:
@xxx.register_module()
class xxx:
xxxx
This warning will not affect the results.
Most helpful comment
Old API:
New API: