Skip to content
Snippets Groups Projects
Unverified Commit ff2d1f3d authored by Wenwei Zhang's avatar Wenwei Zhang Committed by GitHub
Browse files

Fix compile info (#2)

* Fix setup missing

* Update docs
parent 3e3c2c0f
Branches
Tags
No related merge requests found
......@@ -71,6 +71,14 @@ python tools/create_data.py nuscenes --root-path ./data/nuscenes --out-dir ./dat
Download KITTI 3D detection data [HERE](http://www.cvlibs.net/datasets/kitti/eval_object.php?obj_benchmark=3d). Prepare kitti data by running
```bash
mkdir ./data/kitti/ && mkdir ./data/kitti/ImageSets
# Download data split
wget -c https://raw.githubusercontent.com/traveller59/second.pytorch/master/second/data/ImageSets/test.txt --no-check-certificate --content-disposition -O ./data/kitti/ImageSets/test.txt
wget -c https://raw.githubusercontent.com/traveller59/second.pytorch/master/second/data/ImageSets/train.txt --no-check-certificate --content-disposition -O ./data/kitti/ImageSets/train.txt
wget -c https://raw.githubusercontent.com/traveller59/second.pytorch/master/second/data/ImageSets/val.txt --no-check-certificate --content-disposition -O ./data/kitti/ImageSets/val.txt
wget -c https://raw.githubusercontent.com/traveller59/second.pytorch/master/second/data/ImageSets/trainval.txt --no-check-certificate --content-disposition -O ./data/kitti/ImageSets/trainval.txt
python tools/create_data.py kitti --root-path ./data/kitti --out-dir ./data/kitti --extra-tag kitti
```
......
networkx>=2.2,<2.3
trimesh>=2.35.39,<2.35.40
matplotlib
mmcv>=0.6.0
mmcv>=1.0.2
numba==0.48.0
numpy
nuscenes-devkit==1.0.5
......@@ -13,3 +13,5 @@ six
terminaltables
torch>=1.3
torchvision
# by default we also use tensorboard to log results
tensorboard
......@@ -227,7 +227,7 @@ if __name__ == '__main__':
ext_modules=[
make_cuda_ext(
name='compiling_info',
module='mmdet.ops.utils',
module='mmdet3d.ops.utils',
sources=['src/compiling_info.cpp']),
make_cuda_ext(
name='sparse_conv_ext',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment