From fbe4b0635a63afd81347e519d2382e34b57bf721 Mon Sep 17 00:00:00 2001 From: Hariz Izzat Date: Mon, 6 Feb 2023 20:12:38 +0800 Subject: [PATCH 1/3] added dir to ignore --- .gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d7b5fb7..1dd8bf8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ __pycache__/ datasets/__pycache__/ -models/__pycache__/ \ No newline at end of file +models/__pycache__/ +checkpoints/* +env/* +outputs/* +data/* +fusibile/* \ No newline at end of file From a40525385fb084cc36efe7724a17323515e91126 Mon Sep 17 00:00:00 2001 From: Hariz Izzat Date: Mon, 6 Feb 2023 20:13:12 +0800 Subject: [PATCH 2/3] cleanup script --- scripts/test_dtu.sh | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/scripts/test_dtu.sh b/scripts/test_dtu.sh index cf1e6e9..46e8203 100755 --- a/scripts/test_dtu.sh +++ b/scripts/test_dtu.sh @@ -10,17 +10,17 @@ fi python test.py \ ---dataset=general_eval \ ---batch_size=1 \ ---testpath=$TESTPATH \ ---testlist=$TESTLIST \ ---loadckpt=$CKPT_FILE \ ---outdir=$OUTDIR \ ---numdepth=192 \ ---ndepths="48,32,8" \ ---depth_inter_r="4.0,1.0,0.5" \ ---interval_scale=1.06 \ ---filter_method="gipuma" \ ---fusibile_exe_path=$FUSIBLE_PATH -#--filter_method="normal" + --dataset=general_eval \ + --batch_size=1 \ + --testpath=$TESTPATH \ + --testlist=$TESTLIST \ + --loadckpt=$CKPT_FILE \ + --outdir=$OUTDIR \ + --numdepth=192 \ + --ndepths="48,32,8" \ + --depth_inter_r="4.0,1.0,0.5" \ + --interval_scale=1.06 \ + --filter_method="gipuma" \ + --fusibile_exe_path=$FUSIBLE_PATH | tee -a $LOG_DIR/log.txt + #--filter_method="normal" From c01a5b14adc5b77533e95c4a401fd8063300054d Mon Sep 17 00:00:00 2001 From: Hariz Izzat Date: Mon, 6 Feb 2023 20:18:53 +0800 Subject: [PATCH 3/3] clean-up --- scripts/test_dtu.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/test_dtu.sh b/scripts/test_dtu.sh index 46e8203..de0ecea 100755 --- a/scripts/test_dtu.sh +++ b/scripts/test_dtu.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -TESTPATH="/data/DTU/dtu-test" # path to dataset dtu_test -TESTLIST="lists/dtu/test.txt" -CKPT_FILE="checkpoints/model_dtu.ckpt" # path to checkpoint file, you need to use the model_dtu.ckpt for testing -FUSIBLE_PATH="" # path to fusible of gipuma -OUTDIR="outputs/dtu_testing" # path to output +TESTPATH="/data/DTU/dtu-test" # path to dataset dtu_test +TESTLIST="lists/dtu/test.txt" +CKPT_FILE="checkpoints/model_dtu.ckpt" # path to checkpoint file, you need to use the model_dtu.ckpt for testing +FUSIBLE_PATH="fusibile/build/Release/fusibile.exe" # path to fusible of gipuma +OUTDIR="outputs/dtu_testing" # path to output if [ ! -d $OUTDIR ]; then mkdir -p $OUTDIR fi