diff options
Diffstat (limited to 'options/dataset_options.py')
| -rw-r--r-- | options/dataset_options.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/options/dataset_options.py b/options/dataset_options.py index b1c453a..f8b7fe7 100644 --- a/options/dataset_options.py +++ b/options/dataset_options.py @@ -96,7 +96,7 @@ class DatasetOptions(BaseOptions): self.parser.add_argument( '--store-b', - action='store_true', + action='store_false', help='after generating a B image, save it to disk' ) @@ -253,6 +253,13 @@ class DatasetOptions(BaseOptions): ) self.parser.add_argument( + '--sequence-skip', + default=0.0, + type=float, + help='sequence frames to skip' + ) + + self.parser.add_argument( '--sequence-playing', action='store_false', help='pause sequence iterator' |
