summaryrefslogtreecommitdiff
path: root/options/test_options.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-15 04:59:27 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-15 04:59:27 +0200
commit2b9d321d750fac83887938be70835de6be96f1b0 (patch)
tree462e42f93d3261ea69b37a4dc11881f80f2d69ce /options/test_options.py
parentfe5fc3f90f4aab7d4804da494372a6ae1ceda110 (diff)
testy
Diffstat (limited to 'options/test_options.py')
-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 68647a4..3c43fed 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('--mov-file', type=str, default='video.mp4', help='filename of movie to export')
self.isTrain = False