From 94ba997026138e9f7eaa322f2d42659ffdf57dba Mon Sep 17 00:00:00 2001 From: Haotian Liu <6631389+haotian-liu@users.noreply.github.com> Date: Thu, 11 Mar 2021 09:55:31 -0800 Subject: [PATCH] Fix converter parameter in Waymo documentation. --- docs/WAYMO.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/WAYMO.md b/docs/WAYMO.md index 7c99853b..b7d3e828 100644 --- a/docs/WAYMO.md +++ b/docs/WAYMO.md @@ -27,13 +27,13 @@ Convert the tfrecord data to pickle files. ```bash # train set -CUDA_VISIBLE_DEVICES=-1 python det3d/datasets/waymo/waymo_converter.py --tfrecord_path 'WAYMO_DATASET_ROOT/tfrecord_training/segment-*.tfrecord' --root_path 'WAYMO_DATASET_ROOT/train/' +CUDA_VISIBLE_DEVICES=-1 python det3d/datasets/waymo/waymo_converter.py --record_path 'WAYMO_DATASET_ROOT/tfrecord_training/segment-*.tfrecord' --root_path 'WAYMO_DATASET_ROOT/train/' # validation set -CUDA_VISIBLE_DEVICES=-1 python det3d/datasets/waymo/waymo_converter.py --tfrecord_path 'WAYMO_DATASET_ROOT/tfrecord_validation/segment-*.tfrecord' --root_path 'WAYMO_DATASET_ROOT/val/' +CUDA_VISIBLE_DEVICES=-1 python det3d/datasets/waymo/waymo_converter.py --record_path 'WAYMO_DATASET_ROOT/tfrecord_validation/segment-*.tfrecord' --root_path 'WAYMO_DATASET_ROOT/val/' # testing set -CUDA_VISIBLE_DEVICES=-1 python det3d/datasets/waymo/waymo_converter.py --tfrecord_path 'WAYMO_DATASET_ROOT/tfrecord_testing/segment-*.tfrecord' --root_path 'WAYMO_DATASET_ROOT/test/' +CUDA_VISIBLE_DEVICES=-1 python det3d/datasets/waymo/waymo_converter.py --record_path 'WAYMO_DATASET_ROOT/tfrecord_testing/segment-*.tfrecord' --root_path 'WAYMO_DATASET_ROOT/test/' ``` Create a symlink to the dataset root @@ -119,4 +119,4 @@ Add the ```--testset``` flag to the end. ```bash python ./tools/dist_test.py CONFIG_PATH --work_dir work_dirs/CONFIG_NAME --checkpoint work_dirs/CONFIG_NAME/latest.pth --testset -``` \ No newline at end of file +```