diff options
| author | Taesung Park <taesung_park@berkeley.edu> | 2017-04-20 02:43:24 -0700 |
|---|---|---|
| committer | Taesung Park <taesung_park@berkeley.edu> | 2017-04-20 02:43:24 -0700 |
| commit | 685cfc40f5e9bb529babc2e5ebc1026b864fd119 (patch) | |
| tree | b5524f7243605a770dfa45612598e60aa79d859e /options | |
| parent | f576aae4e51c5cb23ec8af58b425f0052912605d (diff) | |
removed whitespace in default opt.name option
Diffstat (limited to 'options')
| -rw-r--r-- | options/base_options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options/base_options.py b/options/base_options.py index c569306..b241639 100644 --- a/options/base_options.py +++ b/options/base_options.py @@ -21,7 +21,7 @@ class BaseOptions(): self.parser.add_argument('--n_layers_D', type=int, default=3, help='only used if which_model_netD==n_layers') self.parser.add_argument('--gpu_ids', type=str, default='0', help='gpu ids: e.g. 0 0,1,2, 0,2') self.parser.add_argument('--flip' , action='store_true', help='if flip the images for data argumentation') - self.parser.add_argument('--name', type=str, default='experiment name', help='name of the experiment. It decides where to store samples and models') + self.parser.add_argument('--name', type=str, default='experiment_name', help='name of the experiment. It decides where to store samples and models') self.parser.add_argument('--align_data', action='store_true', help='if True, the datasets are loaded from "test" and "train" directories and the data pairs are aligned') self.parser.add_argument('--model', type=str, default='cycle_gan', |
