Where2comm published its code implementation with DAIR-V2X dataset, while has not yet released code working on V2X-Sim-2 dataset.
Introduction
Where2comm (Hu et al., Neurips 2022), a classic and milestone-like collaborative perception method, has only open its code implementation on DAIR-V2X dataset. However, there is only one ego vehicle in DAIR-V2X dataset, for those who wanna do experiments with multi-vehicle collaborative perception dataset (e.g., V2X-Sim-2 datset) and take Where2comm as baseline, it’s still not convenient enough to realize. This article will introduce a method to smoothly train/test Where2comm model on V2X-Sim-2 dataset.
# option: if there is error or speed issues in install cudatoolkit # could instead specify the PATH, CUDA_HOME, and LD_LIBRARY_PATH, using current cuda # write it to ~/.bashrc, for example use Vim vim ~/.bashrc export PATH=[your cuda path]/bin:$PATH export CUDA_HOME=[your cuda path]/bin:$CUDA_HOME export LD_LIBRARY_PATH=[your cuda path]/lib64:$LD_LIBRARY_PATH
python opencood/utils/setup.py build_ext --inplace python opencood/pcdet_utils/setup.py build_ext --inplace # if there is cuda version issue; ssh db92 -p 58122 and customize the cuda home CUDA_HOME=/usr/local/cuda-11.1/ python opencood/pcdet_utils/setup.py build_ext --inplace