├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # gitignore 2 | **/__pycache__/ 3 | *.pyc 4 | data 5 | weights 6 | .vscode 7 | # *.npy 8 | debug/ 9 | *list.txt 10 | data_preprocessing/nuscenes_runtest/* 11 | runlist_tmp.txt 12 | SKC_*.npy 13 | SSTF_*.npy -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rethinking LiDAR Domain Generalization: Single Source as Multiple Density Domains 2 | 3 | This is the implementation of our work "Rethinking LiDAR Domain Generalization: Single Source as Multiple Density Domains" 4 | --------------------------------------------------------------------------------