summaryrefslogtreecommitdiff
path: root/options/train_options.py
diff options
context:
space:
mode:
Diffstat (limited to 'options/train_options.py')
-rw-r--r--options/train_options.py4
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