Closed YoushaaMurhij closed 3 years ago
Your modification is not complete actually. There are lots of differences between KITTI and nuScenes dataset, like the object classes, number of point features, whether to use lidar data from consecutive frames, valid point cloud range (only front view in KITTI), etc. You need to look into these differences more carefully and refer to other KITTI configs to modify the configs you intend to use.
@YoushaaMurhij Thanks for the interest. You basically need to follow the second config for KITTI-specific arguments. The network needs some tweaks and if i remembered correctly you also need to remove the velocity target in the training. My experience is that it is about the same accuracy as second for R11. We are working on a major method revision and hopefully come out with some more results on KITTI in a few months.
Thanks for your response! I will take you that into consideration.
Is there any progress?
I tried to train centerpoint on KITTI datasets. I follow the KITTI configuration of pointpillars for data, train/val pipeline, (pp) voxelization, backbone, neck
.
Thus, to work with CenterPoint, the bbox_head
configuration comes from the original implement with minor modification list below
However, The trained model get ~40 mAP on KITTI valid set, and the aos is close to zeros. Any suggestions you guys?
Is there any progress?
I tried to train centerpoint on KITTI datasets. I follow the KITTI configuration of pointpillars for
data, train/val pipeline, (pp) voxelization, backbone, neck
.Thus, to work with CenterPoint, the
bbox_head
configuration comes from the original implement with minor modification list belowHowever, The trained model get ~40 mAP on KITTI valid set, and the aos is close to zeros. Any suggestions you guys?
Is there any progress?
I tried to train centerpoint on KITTI datasets. I follow the KITTI configuration of pointpillars for
data, train/val pipeline, (pp) voxelization, backbone, neck
.Thus, to work with CenterPoint, the
bbox_head
configuration comes from the original implement with minor modification list belowHowever, The trained model get ~40 mAP on KITTI valid set, and the aos is close to zeros. Any suggestions you guys?
Note: KITTI lidar frame is 90 degrees rotated from nuScenes lidar frame
How to solve the problem of very low AOS scores?
I am facing this error while trying to test centerpoint on Kitti data:
python tools/train.py configs/centerpoint/centerpoint_kitti.py \ --gpu-ids 0 --work-dir ./data/kitti/train_logs
I am using this modified config file (only modified the dateset and base)