Skip to content

Commit

Permalink
Fix compile info (#2)
Browse files Browse the repository at this point in the history
* Fix setup missing

* Update docs
  • Loading branch information
ZwwWayne authored Jul 9, 2020
1 parent 3e3c2c0 commit ff2d1f3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
8 changes: 8 additions & 0 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
4 changes: 3 additions & 1 deletion requirements/runtime.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
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
Expand All @@ -13,3 +13,5 @@ six
terminaltables
torch>=1.3
torchvision
# by default we also use tensorboard to log results
tensorboard
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def gen_packages_items():
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',
Expand Down

0 comments on commit ff2d1f3

Please sign in to comment.