diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-15 02:15:49 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-15 02:15:49 +0200 |
| commit | 01a7466881ec9762862a6a9df9b3615d45f999c8 (patch) | |
| tree | 3e2656f48243a6eff7c735e7cbc56f8cc3c4f79d /test-mogrify-recursive.sh | |
| parent | e1ecfd498a9c7800e54533bce487a0e8012efbdc (diff) | |
test script
Diffstat (limited to 'test-mogrify-recursive.sh')
| -rw-r--r-- | test-mogrify-recursive.sh | 47 |
1 files changed, 44 insertions, 3 deletions
diff --git a/test-mogrify-recursive.sh b/test-mogrify-recursive.sh index 4565816..065272c 100644 --- a/test-mogrify-recursive.sh +++ b/test-mogrify-recursive.sh @@ -1,7 +1,10 @@ +recursive_frac=0.5 +tag='rec${recursive_frac}' + python test-mogrify.py \ --dataroot /home/lens/Desktop/woods_videos/processed/dataset/A/train/ \ --start_img /home/lens/Desktop/woods_videos/processed/dataset/A/test/frame_00003.png \ - --experiment dark \ + --experiment "${tag}_dark" \ --name pcfade \ --loadSize 256 \ --fineSize 256 \ @@ -12,12 +15,13 @@ python test-mogrify.py \ --dataset_mode recursive \ --recursive \ --clahe --posterize \ + --recursive-frac $recursive_frac \ --norm batch python test-mogrify.py \ --dataroot /home/lens/Desktop/woods_videos/processed/dataset/A/train/ \ --start_img /home/lens/Desktop/woods_videos/processed/dataset/A/test/frame_00603.png \ - --experiment medium \ + --experiment "${tag}_medium" \ --name pcfade \ --loadSize 256 \ --fineSize 256 \ @@ -28,12 +32,48 @@ python test-mogrify.py \ --dataset_mode recursive \ --recursive \ --clahe --posterize \ + --recursive-frac $recursive_frac \ --norm batch python test-mogrify.py \ --dataroot /home/lens/Desktop/woods_videos/processed/dataset/A/train/ \ --start_img /home/lens/Desktop/woods_videos/processed/dataset/A/test/frame_01203.png \ - --experiment lite \ + --experiment "${tag}_lite" \ + --name pcfade \ + --loadSize 256 \ + --fineSize 256 \ + --how_many 200 \ + --model test \ + --which_model_netG unet_256 \ + --which_direction AtoB \ + --dataset_mode recursive \ + --recursive \ + --clahe --posterize \ + --recursive-frac $recursive_frac \ + --norm batch + + +python test-mogrify.py \ + --dataroot /home/lens/Desktop/woods_videos/processed/dataset/A/train/ \ + --start_img /home/lens/Desktop/woods_videos/processed/dataset/A/test/frame_11203.png \ + --experiment "${tag}_ex1" \ + --name pcfade \ + --loadSize 256 \ + --fineSize 256 \ + --how_many 200 \ + --model test \ + --which_model_netG unet_256 \ + --which_direction AtoB \ + --dataset_mode recursive \ + --recursive \ + --clahe --posterize \ + --recursive-frac $recursive_frac \ + --norm batch + +python test-mogrify.py \ + --dataroot /home/lens/Desktop/woods_videos/processed/dataset/A/train/ \ + --start_img /home/lens/Desktop/woods_videos/processed/dataset/A/test/frame_21203.png \ + --experiment "${tag}_ex2" \ --name pcfade \ --loadSize 256 \ --fineSize 256 \ @@ -44,4 +84,5 @@ python test-mogrify.py \ --dataset_mode recursive \ --recursive \ --clahe --posterize \ + --recursive-frac $recursive_frac \ --norm batch |
