Lidar_AI_Solution icon indicating copy to clipboard operation
Lidar_AI_Solution copied to clipboard

KeyError: ‘LoadRadarPointsMultiSweeps...’

Open Yunge6666 opened this issue 1 year ago • 2 comments

When I run .../Lidar_AI_Solution/CUDA-BEVFusion/bevfusion$ python tools/test-mAP-for-cuda.py, I got the following error. KeyError: 'LoadRadarPointsMultiSweeps is not in the pipeline registry' KeyError: "NuScenesDataset: 'LoadRadarPointsMultiSweeps is not in the pipeline registry'"

Anyone solve the such problem, plz help me. Thanks~

Yunge6666 avatar Nov 04 '23 01:11 Yunge6666

You can try the below commands:

git clone https://github.com/mit-han-lab/bevfusion

cd bevfusion
git checkout db75150717a9462cb60241e36ba28d65f6908607

hopef avatar Nov 04 '23 12:11 hopef

You can try the below commands:

git clone https://github.com/mit-han-lab/bevfusion

cd bevfusion
git checkout db75150717a9462cb60241e36ba28d65f6908607

It looks like you are providing me with another version of bevfusion, with this version I no longer see the above error, but I encounter a new error which is keyerror:[''location'']. I think this may be some bug in the code regarding the nusc dataset, it happens at line 218 of /bevfusion/mmdet3d/datasets/nuscenes_dataset.py: location=info["location"], when I change it to location = info.get('location', "singapore-queenstown"), it works, but now I have to specify a map, which greatly affects the results of my evaluation. I don't know if you have a better solution.

Yunge6666 avatar Nov 11 '23 20:11 Yunge6666