add ablation study cfgs

This commit is contained in:
Guocheng Qian
2023-08-10 15:30:39 +00:00
parent c949fdc35c
commit 6bfbbbf6a2
16 changed files with 536 additions and 41 deletions

View File

@@ -1,13 +1,13 @@
device=$1
runid=$2 # jobname for the first stage
runid2=$3 # jobname for the second stage
topdir=$4 # path to the directory containing the images, e.g. data/nerf4
imagename=$5
script_name=$1
device=$2
runid=$3 # jobname for the first stage
runid2=$4 # jobname for the second stage
topdir=$5 # path to the directory containing the images, e.g. data/nerf4
step1=$6
step2=$7
for i in $topdir/*; do
echo "$i"
[ -d "$i" ] && echo "$i exists."
bash scripts/magic123/run_both_priors.sh $device $runid "$i" $imagename $step1 $step2 ${@:8}
bash ${script_name} $device $runid "$i" $step1 $step2 ${@:8}
done