From 3536c490f7cd78bae3da302350fda174be1e6b2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Alejandro=20D=C3=ADaz=20Zapata?= <18519641+manueldiaz96@users.noreply.github.com> Date: Thu, 13 Oct 2022 10:38:24 +0200 Subject: [PATCH] Corrected KITTI path in readme.md The Kitti path in readme.md was 'data/kitti/objects' where in the dataloader code is 'data/kitti/object' The letter 's' was removed from 'objects' --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 0a99b23..e1e7f12 100644 --- a/readme.md +++ b/readme.md @@ -8,7 +8,7 @@ The training script can be run by calling `train.py` with the name of the experi ``` python train.py name-of-experiment --gpu 0 ``` -By default data will be read from `data/kitti/objects` and model checkpoints will be saved to `experiments`. The model is trained using the KITTI 3D object detection benchmark which can be downloaded from [here](http://www.cvlibs.net/datasets/kitti/eval_object.php?obj_benchmark=3d). See `train.py` for a full list of training options. +By default data will be read from `data/kitti/object` and model checkpoints will be saved to `experiments`. The model is trained using the KITTI 3D object detection benchmark which can be downloaded from [here](http://www.cvlibs.net/datasets/kitti/eval_object.php?obj_benchmark=3d). See `train.py` for a full list of training options. ## Inference To decode the network predictions and visualise the resulting bounding boxes, run the `infer.py` script with the path to the model checkpoint you wish to visualise: