yinchimaoliang / BEVDepth

Official code for BEVDepth.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BEVDepth

BEVDepth is a new 3D object detector with a trustworthy depth estimation. For more details, please refer to our paper on Arxiv.

Updates!!

Quick Start

Installation

Step 0. Install pytorch(v1.9.0).

Step 1. Install MMDetection3D(v1.0.0rc4).

Step 2. Install requirements.

pip install -r requirements.txt

Step 3. Install BEVDepth(gpu required).

python setup.py develop

Data preparation

Step 0. Download nuScenes official dataset.

Step 1. Symlink the dataset root to ./data/.

ln -s [nuscenes root] ./data/

The directory will be as follows.

BEVDepth
├── data
│   ├── nuScenes
│   │   ├── maps
│   │   ├── samples
│   │   ├── sweeps
│   │   ├── v1.0-test
|   |   ├── v1.0-trainval

Step 2. Prepare infos.

python scripts/gen_info.py

Step 3. Prepare depth gt.

python scripts/gen_depth_gt.py

Tutorials

Train.

python [EXP_PATH] --amp_backend native -b 8 --gpus 8

Eval.

python [EXP_PATH] --ckpt_path [CKPT_PATH] -e -b 8 --gpus 8

Benchmark

Exp EMA CBGS mAP mATE mASE mAOE mAVE mAAE NDS weights
R50 0.3304 0.7021 0.2795 0.5346 0.5530 0.2274 0.4355 github
R50 0.3329 0.6832 0.2761 0.5446 0.5258 0.2259 0.4409 github
R50 0.3484 0.6159 0.2716 0.4144 0.4402 0.1954 0.4805 github
R50 0.3589 0.6119 0.2692 0.5074 0.4086 0.2009 0.4797 github

FAQ

EMA

  • The results are differnt between evaluation during training and evaluation from ckpt.

Due to the working mechanism of EMA, the model parameters saved by ckpt are different from the model parameters used in the training stage.

  • EMA exps are unable to resume training from ckpt.

We used the customized EMA callback and this function is not supported for now.

Cite BEVDepth

If you use BEVDepth in your research, please cite our work by using the following BibTeX entry:

 @article{li2022bevdepth,
  title={BEVDepth: Acquisition of Reliable Depth for Multi-view 3D Object Detection},
  author={Li, Yinhao and Ge, Zheng and Yu, Guanyi and Yang, Jinrong and Wang, Zengran and Shi, Yukang and Sun, Jianjian and Li, Zeming},
  journal={arXiv preprint arXiv:2206.10092},
  year={2022}
}

About

Official code for BEVDepth.

License:MIT License


Languages

Language:Python 97.2%Language:Cuda 1.5%Language:C++ 1.3%