Skip to content

Latest commit

 

History

History

spvcnn

Searching Efficient 3D Architectures with Sparse Point-Voxel Convolution

Searching Efficient 3D Architectures with Sparse Point-Voxel Convolution

Abstract

Self-driving cars need to understand 3D scenes efficiently and accurately in order to drive safely. Given the limited hardware resources, existing 3D perception models are not able to recognize small instances (e.g., pedestrians, cyclists) very well due to the low-resolution voxelization and aggressive downsampling. To this end, we propose Sparse Point-Voxel Convolution (SPVConv), a lightweight 3D module that equips the vanilla Sparse Convolution with the high-resolution point-based branch. With negligible overhead, this point-based branch is able to preserve the fine details even from large outdoor scenes. To explore the spectrum of efficient 3D models, we first define a flexible architecture design space based on SPVConv, and we then present 3D Neural Architecture Search (3D-NAS) to search the optimal network architecture over this diverse design space efficiently and effectively. Experimental results validate that the resulting SPVNAS model is fast and accurate: it outperforms the state-of-the-art MinkowskiNet by 3.3%, ranking 1st on the competitive SemanticKITTI leaderboard. It also achieves 8x computation reduction and 3x measured speedup over MinkowskiNet with higher accuracy. Finally, we transfer our method to 3D object detection, and it achieves consistent improvements over the one-stage detection baseline on KITTI.

Introduction

We implement SPVCNN with TorchSparse backend and provide the result and checkpoints on SemanticKITTI datasets.

Results and models

SemanticKITTI

Method Lr schd Laser-Polar Mix Mem (GB) mIoU Download
SPVCNN-W16 15e 3.9 61.8 model | log
SPVCNN-W20 15e 4.2 62.6 model | log
SPVCNN-W32 15e 5.4 64.3 model | log
SPVCNN-W32 3x 7.2 68.7 model | log

Note: We follow the implementation in SPVNAS original repo and W16\W20\W32 indicates different number of channels.

Note: Due to TorchSparse backend, the model performance is unstable with TorchSparse backend and may fluctuate by about 1.5 mIoU for different random seeds.

Citation

@inproceedings{tang2020searching,
  title={Searching efficient 3d architectures with sparse point-voxel convolution},
  author={Tang, Haotian and Liu, Zhijian and Zhao, Shengyu and Lin, Yujun and Lin, Ji and Wang, Hanrui and Han, Song},
  booktitle={Computer Vision--ECCV 2020: 16th European Conference, Glasgow, UK, August 23--28, 2020, Proceedings, Part XXVIII},
  pages={685--702},
  year={2020},
  organization={Springer}
}