Godot-Voxel-Destruction
Allows dynamic voxel destruction with debris along with other voxel features. Allows importing .vox files and damaging…
Unofficial PyTorch implementation of the paper: "CenterNet3D: An Anchor free Object Detector for Autonomous Driving"
git clone https://github.com/maudzung/CenterNet3D-PyTorch.gitmaudzung/CenterNet3D-PyTorchThe PyTorch Implementation of the paper: CenterNet3D: An Anchor free Object Detector for Autonomous Driving
pip install -U -r requirements.txt
For mayavi library, please refer to the installation instructions from its official website.
To build the CenterNet3D model, I have used the spconv library. Please follow the
instruction from the repo to install the library. I also wrote notes for the installation here
Download the 3D KITTI detection dataset from here.
The downloaded data includes:
Please make sure that you construct the source code & dataset directories structure as below.
cd src/data_process
python kitti_dataset.py
An example of the KITTI dataset:
python test.py --gpu_idx 0 --peak_thresh 0.2
python train.py --gpu_idx 0 --batch_size <N> --num_workers <N>...
We should always use the nccl backend for multi-processing distributed training since it currently provides the best
distributed training performance.
python train.py --dist-url 'tcp://127.0.0.1:29500' --dist-backend 'nccl' --multiprocessing-distributed --world-size 1 --rank 0
First machine
python train.py --dist-url 'tcp://IP_OF_NODE1:FREEPORT' --dist-backend 'nccl' --multiprocessing-distributed --world-size 2 --rank 0
Second machine
python train.py --dist-url 'tcp://IP_OF_NODE2:FREEPORT' --dist-backend 'nccl' --multiprocessing-distributed --world-size 2 --rank 1
To reproduce the results, you can run the bash shell script
./train.sh
logs/ folder andcd logs/<saved_fn>/tensorboard/ tensorboard --logdir=./
If you think this work is useful, please give me a star!
If you find any errors or have any suggestions, please contact me (Email: nguyenmaudung93.kstn@gmail.com).
Thank you!
@article{CenterNet3D,
author = {Guojun Wang, Bin Tian, Yunfeng Ai, Tong Xu, Long Chen, Dongpu Cao},
title = {CenterNet3D: An Anchor free Object Detector for Autonomous Driving},
year = {2020},
journal = {arXiv},
}
@misc{CenterNet3D-PyTorch,
author = {Nguyen Mau Dung},
title = {{CenterNet3D-PyTorch: PyTorch Implementation of the CenterNet3D paper}},
howpublished = {\url{https://github.com/maudzung/CenterNet3D-PyTorch}},
year = {2020}
}
[1] CenterNet: Objects as Points paper, PyTorch Implementation [2] VoxelNet: PyTorch Implementation
${ROOT}
└── checkpoints/
├── centernet3d.pth
└── dataset/
└── kitti/
├──ImageSets/
│ ├── test.txt
│ ├── train.txt
│ └── val.txt
├── training/
│ ├── image_2/ (left color camera)
│ ├── calib/
│ ├── label_2/
│ └── velodyne/
└── testing/
│ ├── image_2/ (left color camera)
│ ├── calib/
│ └── velodyne/
└── classes_names.txt
└── src/
├── config/
│ ├── train_config.py
│ └── kitti_config.py
├── data_process/
│ ├── kitti_dataloader.py
│ ├── kitti_dataset.py
│ └── kitti_data_utils.py
├── models/
│ ├── centernet3d.py
│ ├── deform_conv_v2.py
│ └── model_utils.py
└── utils/
│ ├── evaluation_utils.py
│ ├── logger.py
│ ├── misc.py
│ ├── torch_utils.py
│ └── train_utils.py
├── evaluate.py
├── test.py
├── train.py
└── train.sh
├── README.md
└── requirements.txt
more like this
Allows dynamic voxel destruction with debris along with other voxel features. Allows importing .vox files and damaging…
Voxel.Wiki is a website that is all about voxels: Values on regular grids in three-dimensional space!
search projects, people, and tags