summaryrefslogtreecommitdiff
path: root/options
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-15 05:02:42 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-15 05:02:42 +0200
commitf37c682366a8ded63cb5a4a77cb3eaf16e0d069f (patch)
tree0cbadfb86ecdaf5a656c31059d68b8debd3d9dd3 /options
parent32152a078eb3c01d4a3908d3be127400dd2366b0 (diff)
testy
Diffstat (limited to 'options')
-rw-r--r--options/test_options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/test_options.py b/options/test_options.py
index 3c43fed..1ec46a6 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, default='video.mp4', help='filename of movie to export')
+ self.parser.add_argument('--movie-output', type=str, default='video.mp4', help='filename of movie to export')
self.isTrain = False