diff options
| author | jules@lens <julescarbon@gmail.com> | 2018-05-08 23:53:07 +0200 |
|---|---|---|
| committer | jules@lens <julescarbon@gmail.com> | 2018-05-08 23:53:07 +0200 |
| commit | 3ec7af8d74608a44240bac690a0300cd19c92298 (patch) | |
| tree | cceda35ca33199a6ded0d48561aef148caa97d1f /test-datasets.sh | |
| parent | 2f4375e03ba13625497a5c4bae381a6ad0c6f937 (diff) | |
runner scripts
Diffstat (limited to 'test-datasets.sh')
| -rw-r--r-- | test-datasets.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test-datasets.sh b/test-datasets.sh new file mode 100644 index 0000000..3629170 --- /dev/null +++ b/test-datasets.sh @@ -0,0 +1,26 @@ +declare -a datasets=("blended_wood_canny_leaves" "blended_wood_canny_typical" "blended_wood_canny_more_edges_poorly_trained") +declare -a checkpoints=("messi" "randomcrops100k" "randomcrops_30000_4" "randomcrops5k" "woodscaled" "woodscaled_4") + +basedir="/home/lens/code/torch-warp/" + +for ds in "${datasets[@]}" +do + +bs=$(basename $ds) + +for i in "${checkpoints[@]}" +do + echo $ds + echo $i + + python test.py \ + --dataroot "${basedir}${ds}/256/"\ + --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 + |
