RunpeiDong / PointDistiller

[CVPR 2023] PointDistiller: Structured Knowledge Distillation Towards Efficient and Compact 3D Detection
https://arxiv.org/abs/2205.11098
MIT License
66 stars 1 forks source link

i found that SECOND teacher model has low AP . #11

Closed c122-ode closed 5 months ago

c122-ode commented 5 months ago

hello, i use the checkpoint hv_second_secfpn_6x8_80e_kitti-3d-3class_20200620_230238-9208083a.pth both v1.0.0rc v1.0.0r2

c122-ode commented 5 months ago

also point-rcnn teacher model.

RunpeiDong commented 5 months ago

This is normal. The checkpoints of our teacher model were downloaded from the mmdetection3d GitHub. The detection accuracy of these models themselves is normal and reasonable. However, during an update of mmdetection3d, the model structure files of mmdetection3d were uniformly modified, which led to the previous models being unable to infer normally to achieve good results. However, this does not mean that the mAP of these teacher models themselves is low; they were just used incorrectly. Please refer to https://github.com/open-mmlab/mmdetection3d/issues/1339 for more details. Currently, we recommend that you find the latest version of the teacher model weights from mmdetection3d for distillation.

c122-ode commented 5 months ago

Thank you!

RunpeiDong commented 5 months ago

You are welcome.