diff options
| author | junyanz <junyanz@berkeley.edu> | 2017-06-12 23:52:56 -0700 |
|---|---|---|
| committer | junyanz <junyanz@berkeley.edu> | 2017-06-12 23:52:56 -0700 |
| commit | e6858e35f0a08c6139c133122d222d0d85e8005d (patch) | |
| tree | 2647ff13a164c684113eab455123394a49a65dad /options/train_options.py | |
| parent | 3b72a659c38141e502b74bee65ca08d51dc3eabf (diff) | |
update dataset mode
Diffstat (limited to 'options/train_options.py')
| -rw-r--r-- | options/train_options.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/options/train_options.py b/options/train_options.py index a1d347f..345f619 100644 --- a/options/train_options.py +++ b/options/train_options.py @@ -1,5 +1,6 @@ from .base_options import BaseOptions + class TrainOptions(BaseOptions): def initialize(self): BaseOptions.initialize(self) @@ -19,7 +20,4 @@ class TrainOptions(BaseOptions): self.parser.add_argument('--lambda_B', type=float, default=10.0, help='weight for cycle loss (B -> A -> B)') self.parser.add_argument('--pool_size', type=int, default=50, help='the size of image buffer that stores previously generated images') self.parser.add_argument('--no_html', action='store_true', help='do not save intermediate training results to [opt.checkpoints_dir]/[opt.name]/web/') - self.parser.add_argument('--no_flip' , action='store_true', help='if specified, do not flip the images for data argumentation') - - # NOT-IMPLEMENTED self.parser.add_argument('--preprocessing', type=str, default='resize_and_crop', help='resizing/cropping strategy') self.isTrain = True |
