summaryrefslogtreecommitdiff
path: root/options/dataset_options.py
diff options
context:
space:
mode:
Diffstat (limited to 'options/dataset_options.py')
-rw-r--r--options/dataset_options.py14
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'