You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
task_heads is initialized as a nn.ModuleList
However, nn.ModuleList does not implement the init_weights function which is declared in the BaseModule class.
So, you should replaced nn.ModuleList with mmcv.runner.ModuleList. Otherwise, the CenterPointHead won't be correctly initialized.