Megvii-BaseDetection / BEVDepth

Official code for BEVDepth.
MIT License
688 stars 96 forks source link

Config issue about MatrixVT #129

Closed TmacTmac1992 closed 1 year ago

TmacTmac1992 commented 1 year ago

Hi, When I train or eval matrixvt, I got an error:

TypeError: init() missing 2 required positional arguments: 'backbone_conf' and 'head_conf'

ZRandomize commented 1 year ago

hi,this is due to model initialization. change this line into

super(BaseBEVDepth, self).__init__()

will help. We'll fix this bug soon, thanks for reporting

TmacTmac1992 commented 1 year ago

Thanks for your quick reply!