diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-19 10:49:53 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-19 10:49:53 +0200 |
| commit | 3ac5fa26a191dc27434c60a6fb48deae828b7c90 (patch) | |
| tree | 4e993bedb0a389c23ca259dc66a2fe8a0caefa47 /options | |
| parent | b7f45a7277152d5611f8f050243dd8d7c351979d (diff) | |
options for minimum recursion value
Diffstat (limited to 'options')
| -rw-r--r-- | options/dataset_options.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/options/dataset_options.py b/options/dataset_options.py index e1ef153..368f2b2 100644 --- a/options/dataset_options.py +++ b/options/dataset_options.py @@ -77,6 +77,20 @@ class DatasetOptions(BaseOptions): ### RECURSION self.parser.add_argument( + '--transition-period', + default=3000, + type=int, + help='period of sine wave transition' + ) + + self.parser.add_argument( + '--transition-min', + default=1e-3, + type=float, + help='minimum amount of stabilization to apply' + ) + + self.parser.add_argument( '--recursive', action='store_true', help='recurse on previous output' |
