summaryrefslogtreecommitdiff
path: root/options/base_options.py
diff options
context:
space:
mode:
Diffstat (limited to 'options/base_options.py')
-rwxr-xr-xoptions/base_options.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/options/base_options.py b/options/base_options.py
index de831fe..561a890 100755
--- a/options/base_options.py
+++ b/options/base_options.py
@@ -56,7 +56,8 @@ class BaseOptions():
self.parser.add_argument('--n_downsample_E', type=int, default=4, help='# of downsampling layers in encoder')
self.parser.add_argument('--nef', type=int, default=16, help='# of encoder filters in the first conv layer')
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')
+
self.initialized = True
def parse(self, save=True):