summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-15 04:58:52 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-15 04:58:52 +0200
commitfe5fc3f90f4aab7d4804da494372a6ae1ceda110 (patch)
tree7e2621f0db6c1a47393ededc53a414693a76b73f
parent7973cf3f82a05b920927fdf5b322e074dfdc7755 (diff)
testy
-rw-r--r--options/test_options.py2
-rw-r--r--test-mogrify-recursive.sh6
2 files changed, 4 insertions, 4 deletions
diff --git a/options/test_options.py b/options/test_options.py
index 6f38eef..68647a4 100644
--- a/options/test_options.py
+++ b/options/test_options.py
@@ -12,5 +12,5 @@ class TestOptions(BaseOptions):
self.parser.add_argument('--phase', type=str, default='test', help='train, val, test, etc')
self.parser.add_argument('--which_epoch', type=str, default='latest', help='which epoch to load? set to latest to use latest cached model')
self.parser.add_argument('--how_many', type=int, default=50, help='how many test images to run')
- self.parser.add_argument('--mov_file', type=str, help='filename of movie to export')
+ self.parser.add_argument('--mov_file', type=str, default='video.mp4', help='filename of movie to export')
self.isTrain = False
diff --git a/test-mogrify-recursive.sh b/test-mogrify-recursive.sh
index 71050ea..7f8df1a 100644
--- a/test-mogrify-recursive.sh
+++ b/test-mogrify-recursive.sh
@@ -19,7 +19,7 @@ how_many=200
python test-mogrify.py \
--dataroot "$dataset/train/" \
--start_img "$dataset/test/frame_00003.png" \
- --experiment "${tag}_sequence_process_less" \
+ --experiment "${tag}_sequence" \
--name pcfade \
--sequence --sequence-frac 0.999 \
--loadSize 256 --fineSize 256 --how_many $how_many \
@@ -33,10 +33,10 @@ python test-mogrify.py \
python test-mogrify.py \
--dataroot "$dataset/train/" \
--start_img "$dataset/test/frame_00003.png" \
- --experiment "${tag}_sequence_process_less" \
+ --experiment "sequence_process_less" \
--name pcfade \
--sequence --sequence-frac 0.999 \
- --loadSize 256 --fineSize 256 --how_many $how_many \
+ --loadSize 256 --fineSize 256 --how_many 200 \
--model test --which_model_netG unet_256 \
--which_direction AtoB --dataset_mode recursive \
--recursive --recursive-frac 0.0005 \