Unverified Commit 0369fa50 authored by twang's avatar twang Committed by GitHub
Browse files

[Enhance] Doc update related to waymo (#128)



* Update docs and add hints for waymo

* Change the title of waymo tutorial

* Move waymo into the tutorial part

* Delete original waymo.md

* Update waymo.md

* Update index.rst

* Update get_started in readme.md

* reorganize docs
Co-authored-by: default avatarzhangwenwei <wayne.zw@outlook.com>
parent 3c166b2d
...@@ -87,7 +87,7 @@ Please refer to [install.md](docs/install.md) for installation and dataset prepa ...@@ -87,7 +87,7 @@ Please refer to [install.md](docs/install.md) for installation and dataset prepa
## Get Started ## Get Started
Please see [getting_started.md](docs/getting_started.md) for the basic usage of MMDetection. There are also tutorials for [finetuning models](docs/tutorials/finetune.md), [adding new dataset](docs/tutorials/new_dataset.md), [designing data pipeline](docs/tutorials/data_pipeline.md), and [adding new modules](docs/tutorials/new_modules.md). Please see [getting_started.md](docs/getting_started.md) for the basic usage of MMDetection3D. There are also tutorials for [finetuning models](docs/tutorials/finetune.md), [adding new dataset](docs/tutorials/new_dataset.md), [designing data pipeline](docs/tutorials/data_pipeline.md), [adding new modules](docs/tutorials/new_modules.md), and [waymo dataset](docs/tutorials/waymo.md).
## Contributing ## Contributing
......
...@@ -7,12 +7,23 @@ Welcome to MMDetection3D's documentation! ...@@ -7,12 +7,23 @@ Welcome to MMDetection3D's documentation!
install.md install.md
getting_started.md getting_started.md
model_zoo.md model_zoo.md
.. toctree::
:maxdepth: 2
:caption: Notes
benchmarks.md benchmarks.md
config.md config.md
tutorials/finetune.md
tutorials/new_dataset.md .. toctree::
tutorials/data_pipeline.md :maxdepth: 2
tutorials/new_modules.md :caption: Tutorials
tutorials/index.rst
.. toctree::
:caption: API Reference
api.rst api.rst
......
...@@ -14,7 +14,7 @@ Please refer to [SECOND](https://github.com/open-mmlab/mmdetection3d/blob/master ...@@ -14,7 +14,7 @@ Please refer to [SECOND](https://github.com/open-mmlab/mmdetection3d/blob/master
### PointPillars ### PointPillars
Please refer to [PointPillars](https://github.com/open-mmlab/mmdetection3d/blob/master/configs/pointpillars) for details. Please refer to [PointPillars](https://github.com/open-mmlab/mmdetection3d/blob/master/configs/pointpillars) for details. We provide pointpillars baselines on KITTI, nuScenes, Lyft, and Waymo datasets.
### Part-A2 ### Part-A2
...@@ -22,7 +22,7 @@ Please refer to [Part-A2](https://github.com/open-mmlab/mmdetection3d/blob/maste ...@@ -22,7 +22,7 @@ Please refer to [Part-A2](https://github.com/open-mmlab/mmdetection3d/blob/maste
### VoteNet ### VoteNet
Please refer to [VoteNet](https://github.com/open-mmlab/mmdetection3d/blob/master/configs/votenet) for details. Please refer to [VoteNet](https://github.com/open-mmlab/mmdetection3d/blob/master/configs/votenet) for details. We provide VoteNet baselines on ScanNet and SUNRGBD datasets.
### Dynamic Voxelization ### Dynamic Voxelization
...@@ -33,10 +33,10 @@ Please refer to [Dynamic Voxelization](https://github.com/open-mmlab/mmdetection ...@@ -33,10 +33,10 @@ Please refer to [Dynamic Voxelization](https://github.com/open-mmlab/mmdetection
Please refer to [MVXNet](https://github.com/open-mmlab/mmdetection3d/blob/master/configs/mvxnet) for details. Please refer to [MVXNet](https://github.com/open-mmlab/mmdetection3d/blob/master/configs/mvxnet) for details.
### RegNetX ### RegNetX
Please refer to [RegNet](https://github.com/open-mmlab/mmdetection3d/blob/master/configs/regnet) for details. Please refer to [RegNet](https://github.com/open-mmlab/mmdetection3d/blob/master/configs/regnet) for details. We provide pointpillars baselines with RegNetX backbones on nuScenes and Lyft datasets currently.
### nuImages ### nuImages
We also support baseline models on [nuImages dataset](https://www.nuscenes.org/nuimages). Please refer to [nuImages](https://github.com/open-mmlab/mmdetection3d/blob/master/configs/nuimages) for details. We also support baseline models on [nuImages dataset](https://www.nuscenes.org/nuimages). Please refer to [nuImages](https://github.com/open-mmlab/mmdetection3d/blob/master/configs/nuimages) for details. We report Mask R-CNN and Cascade Mask R-CNN results currently.
### H3DNet ### H3DNet
......
.. toctree::
:maxdepth: 2
finetune.md
new_dataset.md
data_pipeline.md
new_modules.md
waymo.md
# A Brief Tutorial for Waymo Dataset # Tutorial 5: Waymo Dataset
This page provides specific tutorials about the usage of MMDetection3D for waymo dataset. This page provides specific tutorials about the usage of MMDetection3D for waymo dataset.
...@@ -116,7 +116,7 @@ Then you can evaluate your models on waymo. An example to evaluate PointPillars ...@@ -116,7 +116,7 @@ Then you can evaluate your models on waymo. An example to evaluate PointPillars
**Notice**: **Notice**:
1. Sometimes when using bazel to build `compute_detection_metrics_main`, an error `'round' is not a member of 'std'` may appear. We just need to remove the `std::` before `round` in that file. 1. Sometimes when using bazel to build `compute_detection_metrics_main`, an error `'round' is not a member of 'std'` may appear. We just need to remove the `std::` before `round` in that file.
2. Considering it takes a little long time to evaluate once, we recommend to evaluate only once at the end of model training. 2. Considering it takes a little long time to evaluate once, we recommend to evaluate only once at the end of model training.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment