# RODNet: Radar Object Detection using Cross-Modal Supervision ## Installation Create a conda environment for RODNet. ``` conda create -n rodnet python=3.8 -y conda activate rodnet ``` Install pytorch. ``` conda install pytorch torchvision cudatoolkit=10.0 -c pytorch ``` Setup RODNet package. ``` pip install -e . ``` ## Prepare data for RODNet ``` python tools/prepare_dataset/prepare_data.py \ --config configs/ \ --data_root \ --split train,test \ --out_data_dir data/ ``` ## Train models ``` python tools/train.py --config configs/ \ --data_dir data/ \ --log_dir checkpoints/ ``` ### Pretrained Models Please download the pretrained models from the list below: - [rodnet_cdc_win16_cruw_mini_epoch50.pkl](https://drive.google.com/file/d/19j-jy5wVOwYjUS5SPvoF-MjA06PepYnA/view?usp=sharing) ## Inference ``` python tools/test.py --config configs/ \ --data_dir data/ \ --checkpoint \ --res_dir results/ ```