ldkong1205 / LaserMix

[CVPR 2023 Highlight] LaserMix for Semi-Supervised LiDAR Semantic Segmentation
https://ldkong.com/LaserMix
Apache License 2.0
272 stars 17 forks source link

KeyError LaserMix is not in the mmdet3d. #15

Closed zhairf closed 8 months ago

zhairf commented 8 months ago

Thanks for the great work and release the codes.

When I trying to train with a single GPU and run the command “python tools/train.py configs/lasermix/lasermix_cy3d_semi_semantickitti_10.py”, got a KeyError: ‘LaserMix’ is not in the mmdet3d::model registry. Did I miss something when install process? What should I do to deal this problem?

Thank you very much.

ldkong1205 commented 8 months ago

Hi @zhairf, thanks for reaching out!

The posted error seems related to the installation of mmdet3d. Have you followed the same procedures as listed in INSTALL.md?

If the above installation is good, then you might want to re-install mmdet3d with pip install -e . or python setup.py develop. Can you try and let me know whether this works for you?

ldkong1205 commented 8 months ago

Hi @zhairf, hope the above answer resolves your question. Free feel to let us know if you have further questions!

zhairf commented 8 months ago

Thank you very much. Your answer solved my problem.