From e4a9946818e054f70474fee55ab928973ce8dfda Mon Sep 17 00:00:00 2001 From: Taylor Dahlke Date: Fri, 23 Oct 2020 14:17:10 -0700 Subject: [PATCH 1/3] Update README.md Add missing `mkdir` command. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f6a9afc..c3121bca 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ For instance, to verify that the environment is setup correctly, you can run a s ```bash # download a tiny subset of KITTI +mkdir /data/datasets curl -s https://tri-ml-public.s3.amazonaws.com/github/packnet-sfm/datasets/KITTI_tiny.tar | tar xv -C /data/datasets/ # in docker make docker-run COMMAND="python3 scripts/train.py configs/overfit_kitti.yaml" @@ -274,4 +275,4 @@ Depending on the application, please use the following citations when referencin month = {May}, year = {2019}, } -``` \ No newline at end of file +``` From 31b5f08f0b8e959d213132d7b2e44029d6aaf7d5 Mon Sep 17 00:00:00 2001 From: Taylor Dahlke Date: Fri, 23 Oct 2020 14:28:33 -0700 Subject: [PATCH 2/3] Update README.md Made test instructions more clear. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c3121bca..ebbc351c 100644 --- a/README.md +++ b/README.md @@ -37,11 +37,13 @@ make docker-run-mpi COMMAND="some-command" For instance, to verify that the environment is setup correctly, you can run a simple overfitting test: ```bash +# enter docker image +make docker-start-interactive # download a tiny subset of KITTI mkdir /data/datasets curl -s https://tri-ml-public.s3.amazonaws.com/github/packnet-sfm/datasets/KITTI_tiny.tar | tar xv -C /data/datasets/ -# in docker -make docker-run COMMAND="python3 scripts/train.py configs/overfit_kitti.yaml" +# run test +python3 scripts/train.py configs/overfit_kitti.yaml" ``` If you want to use features related to [AWS](https://aws.amazon.com/) (for dataset access) From fe2461317f491e3f13cf88b6d85e952c6f588028 Mon Sep 17 00:00:00 2001 From: Taylor Dahlke Date: Fri, 23 Oct 2020 14:32:37 -0700 Subject: [PATCH 3/3] Update README.md Small typo. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ebbc351c..8dcde2a5 100644 --- a/README.md +++ b/README.md @@ -40,10 +40,10 @@ For instance, to verify that the environment is setup correctly, you can run a s # enter docker image make docker-start-interactive # download a tiny subset of KITTI -mkdir /data/datasets +mkdir -p /data/datasets curl -s https://tri-ml-public.s3.amazonaws.com/github/packnet-sfm/datasets/KITTI_tiny.tar | tar xv -C /data/datasets/ # run test -python3 scripts/train.py configs/overfit_kitti.yaml" +python3 scripts/train.py configs/overfit_kitti.yaml ``` If you want to use features related to [AWS](https://aws.amazon.com/) (for dataset access)