summaryrefslogtreecommitdiff
path: root/test-mogrify-process.sh
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-15 01:27:50 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-15 01:27:50 +0200
commit2825c4ba2073e66cf0c8e98eac834a69f743c790 (patch)
tree7270f2991b7f361a421fd26a56ff0e72bd33710d /test-mogrify-process.sh
parent1f28a7e2f137deca19000773ad018cec363aa3a5 (diff)
test scripts
Diffstat (limited to 'test-mogrify-process.sh')
-rw-r--r--test-mogrify-process.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/test-mogrify-process.sh b/test-mogrify-process.sh
new file mode 100644
index 0000000..675966e
--- /dev/null
+++ b/test-mogrify-process.sh
@@ -0,0 +1,24 @@
+declare -a datasets=("/home/lens/Desktop/skull/")
+declare -a checkpoints=("messi" "randomcrops100k" "randomcrops_30000_4" "randomcrops5k" "woodscaled" "woodscaled_4")
+
+for ds in "${datasets[@]}"
+do
+
+bs=$(basename $ds)
+
+for i in "${checkpoints[@]}"
+do
+ echo $ds
+ echo $i
+
+ python test.py \
+ --dataroot $ds \
+ --name $i --mov "${bs}_warp_${i}" \
+ --model test --dataset_mode single --experiment woodwarp \
+ --which_model_netG unet_256 --which_direction AtoB \
+ --loadSize 256 --fineSize 256 --norm batch --how_many 10000
+
+done
+
+done
+