diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-17 09:24:17 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-17 09:24:17 +0200 |
| commit | 48faae06f6f7cf749e328f07a7613aa74fa1a3df (patch) | |
| tree | 746691f21ca0c1cc7ff52c481aa462b9e40100ea | |
| parent | a496a05f67427a5506abdbd8b8c993a11f603129 (diff) | |
args
| -rwxr-xr-x | options/base_options.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/options/base_options.py b/options/base_options.py index ba7a4b2..d735bd9 100755 --- a/options/base_options.py +++ b/options/base_options.py @@ -59,6 +59,9 @@ class BaseOptions(): self.parser.add_argument('--n_clusters', type=int, default=10, help='number of clusters for features') self.parser.add_argument('--verbose', action='store_true', default = False, help='toggles verbose') + # recursive stuff + self.parser.add_argument('--poll_delay', type=float, default=0.01, help='time to wait when looking for next recursive image') + self.initialized = True def parse(self, save=True): |
