diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-15 01:23:03 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-15 01:23:03 +0200 |
| commit | f383d4f56b6c68948e0d3c6cc9d8c5fcbe42dbc7 (patch) | |
| tree | de96a801a0d13eecc6fa10943627179bf7c32718 /options/base_options.py | |
| parent | 4ae0ab0e36e5ce97accd8e27eddc4bf415e0433b (diff) | |
test effects script
Diffstat (limited to 'options/base_options.py')
| -rw-r--r-- | options/base_options.py | 2 |
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 |
