summaryrefslogtreecommitdiff
path: root/options/base_options.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-15 01:23:03 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-15 01:23:03 +0200
commitf383d4f56b6c68948e0d3c6cc9d8c5fcbe42dbc7 (patch)
treede96a801a0d13eecc6fa10943627179bf7c32718 /options/base_options.py
parent4ae0ab0e36e5ce97accd8e27eddc4bf415e0433b (diff)
test effects script
Diffstat (limited to 'options/base_options.py')
-rw-r--r--options/base_options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/base_options.py b/options/base_options.py
index d569928..105292f 100644
--- a/options/base_options.py
+++ b/options/base_options.py
@@ -48,7 +48,7 @@ class BaseOptions():
def parse(self):
if not self.initialized:
self.initialize()
- self.opt = self.parser.parse_args()
+ self.opt = self.parser.parse_known_args()
self.opt.isTrain = self.isTrain # train or test
return self.opt