diff options
| author | Taesung Park <taesung_park@berkeley.edu> | 2017-05-07 22:18:20 -0700 |
|---|---|---|
| committer | Taesung Park <taesung_park@berkeley.edu> | 2017-05-07 22:18:20 -0700 |
| commit | 5f6e2c4a115a6a706cc011b3bf9ed9e3ef149d98 (patch) | |
| tree | 29708b3526fcb354893982eab0b8d003c63bb12e /options/base_options.py | |
| parent | 349614a2f168654ba59bf1461ea61e1cb9358eb6 (diff) | |
1. Added flipping functionality
2. Changed the default options
Diffstat (limited to 'options/base_options.py')
| -rw-r--r-- | options/base_options.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/options/base_options.py b/options/base_options.py index 9ec7c9a..619ca60 100644 --- a/options/base_options.py +++ b/options/base_options.py @@ -20,7 +20,6 @@ class BaseOptions(): self.parser.add_argument('--which_model_netG', type=str, default='resnet_9blocks', help='selects model to use for netG') 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('--align_data', action='store_true', help='if True, the datasets are loaded from "test" and "train" directories and the data pairs are aligned') |
