diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-15 04:00:10 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-15 04:00:10 +0200 |
| commit | 0efd654fe5865f43df5a25bf5a890028f868e2f7 (patch) | |
| tree | 73ad3c75244dcf128cb3b3fb426fe701521d3fb6 /test-mogrify-recursive.sh | |
| parent | 8c73f6069dd98e5484f655eda3ff5d07bf65219b (diff) | |
testy
Diffstat (limited to 'test-mogrify-recursive.sh')
| -rw-r--r-- | test-mogrify-recursive.sh | 77 |
1 files changed, 64 insertions, 13 deletions
diff --git a/test-mogrify-recursive.sh b/test-mogrify-recursive.sh index e60d8bd..a301bf2 100644 --- a/test-mogrify-recursive.sh +++ b/test-mogrify-recursive.sh @@ -19,6 +19,18 @@ how_many=200 python test-mogrify.py \ --dataroot "$dataset/train/" \ --start_img "$dataset/test/frame_00003.png" \ + --experiment "${tag}_sequence" \ + --name pcfade \ + --sequence \ + --loadSize 256 --fineSize 256 --how_many $how_many \ + --model test --which_model_netG unet_256 \ + --which_direction BtoA --dataset_mode recursive \ + --recursive --clahe --posterize \ + --norm batch + +python test-mogrify.py \ + --dataroot "$dataset/train/" \ + --start_img "$dataset/test/frame_00003.png" \ --experiment "${tag}_dark_reverse" \ --name pcfade \ --loadSize 256 --fineSize 256 --how_many $how_many \ @@ -26,6 +38,31 @@ python test-mogrify.py \ --which_direction BtoA --dataset_mode recursive \ --recursive --clahe --posterize \ --recursive-frac $recursive_frac \ + --sequence \ + --norm batch + +python test-mogrify.py \ + --dataroot "$dataset/train/" \ + --start_img "$dataset/test/frame_00003.png" \ + --experiment "${tag}_sequence_posterize" \ + --name pcfade \ + --sequence \ + --loadSize 256 --fineSize 256 --how_many $how_many \ + --model test --which_model_netG unet_256 \ + --which_direction BtoA --dataset_mode recursive \ + --recursive --clahe --posterize \ + --norm batch + +python test-mogrify.py \ + --dataroot "$dataset/train/" \ + --start_img "$dataset/test/frame_00003.png" \ + --experiment "${tag}_sequence_blur" \ + --name pcfade \ + --sequence \ + --loadSize 256 --fineSize 256 --how_many $how_many \ + --model test --which_model_netG unet_256 \ + --which_direction BtoA --dataset_mode recursive \ + --recursive --blur \ --norm batch python test-mogrify.py \ @@ -33,6 +70,7 @@ python test-mogrify.py \ --start_img "$dataset/test/frame_01003.png" \ --experiment "${tag}_1003" \ --name pcfade \ + --sequence \ --loadSize 256 --fineSize 256 --how_many $how_many \ --model test --which_model_netG unet_256 \ --which_direction AtoB --dataset_mode recursive \ @@ -48,8 +86,9 @@ python test-mogrify.py \ --loadSize 256 --fineSize 256 --how_many $how_many \ --model test --which_model_netG unet_256 \ --which_direction AtoB --dataset_mode recursive \ - --recursive --clahe --posterize \ - --recursive-frac 0.1 \ + --recursive --recursive-frac 0.1 \ + --sequence --sequence-frac 0.1 \ + --clahe --posterize \ --norm batch python test-mogrify.py \ @@ -60,8 +99,9 @@ python test-mogrify.py \ --loadSize 256 --fineSize 256 --how_many $how_many \ --model test --which_model_netG unet_256 \ --which_direction AtoB --dataset_mode recursive \ - --recursive --clahe --posterize \ - --recursive-frac 0.8 \ + --recursive --recursive-frac 0.2 \ + --sequence --sequence-frac 0.3 \ + --clahe --posterize \ --norm batch python test-mogrify.py \ @@ -72,8 +112,9 @@ python test-mogrify.py \ --loadSize 256 --fineSize 256 --how_many $how_many \ --model test --which_model_netG unet_256 \ --which_direction AtoB --dataset_mode recursive \ - --recursive --clahe --posterize \ - --recursive-frac $recursive_frac \ + --recursive --recursive-frac 0.1 \ + --sequence --sequence-frac 0.3 \ + --blur --posterize \ --norm batch @@ -85,20 +126,19 @@ python test-mogrify.py \ --loadSize 256 --fineSize 256 --how_many $how_many \ --model test --which_model_netG unet_256 \ --which_direction AtoB --dataset_mode recursive \ - --recursive --posterize --blur \ - --recursive-frac $recursive_frac \ + --recursive --recursive-frac 0.3 \ + --sequence --sequence-frac 0.2 \ --norm batch python test-mogrify.py \ --dataroot "$dataset/train/" \ --start_img "$dataset/train/frame_05005.png" \ - --experiment "${tag}_5005_rec_blur" \ + --experiment "${tag}_5005_rec_4" \ --name pcfade \ --loadSize 256 --fineSize 256 --how_many $how_many \ --model test --which_model_netG unet_256 \ --which_direction AtoB --dataset_mode recursive \ - --recursive --blur \ - --recursive-frac $recursive_frac \ + --recursive --recursive-frac 0.4 \ --norm batch python test-mogrify.py \ @@ -109,7 +149,18 @@ python test-mogrify.py \ --loadSize 256 --fineSize 256 --how_many $how_many \ --model test --which_model_netG unet_256 \ --which_direction AtoB --dataset_mode recursive \ - --recursive --clahe --posterize --blur \ - --recursive-frac $recursive_frac \ + --recursive --recursive-frac 0.5 \ + --clahe --posterize --blur \ + --norm batch + +python test-mogrify.py \ + --dataroot "$dataset/train/" \ + --start_img "$dataset/train/frame_05005.png" \ + --experiment "${tag}_5005_rec_8" \ + --name pcfade \ + --loadSize 256 --fineSize 256 --how_many $how_many \ + --model test --which_model_netG unet_256 \ + --which_direction AtoB --dataset_mode recursive \ + --recursive --recursive-frac 0.8 \ --norm batch |
