summaryrefslogtreecommitdiff
path: root/models/cycle_gan_model.py
diff options
context:
space:
mode:
authorTaesung Park <taesung_park@berkeley.edu>2017-07-17 10:43:08 -0700
committerTaesung Park <taesung_park@berkeley.edu>2017-07-17 10:43:08 -0700
commit1d60960b5038653ae841370d8bf032b1b703e17a (patch)
tree36e7431bd02df44648cd196d15d78ef03fffda1e /models/cycle_gan_model.py
parent23eb65de64e62141258acc258c930c6a63daaf42 (diff)
changed the default option to use dropout
Diffstat (limited to 'models/cycle_gan_model.py')
-rw-r--r--models/cycle_gan_model.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/models/cycle_gan_model.py b/models/cycle_gan_model.py
index 8748a62..b3c52c7 100644
--- a/models/cycle_gan_model.py
+++ b/models/cycle_gan_model.py
@@ -28,9 +28,9 @@ class CycleGANModel(BaseModel):
# Code (paper): G_A (G), G_B (F), D_A (D_Y), D_B (D_X)
self.netG_A = networks.define_G(opt.input_nc, opt.output_nc,
- opt.ngf, opt.which_model_netG, opt.norm, opt.use_dropout, self.gpu_ids)
+ opt.ngf, opt.which_model_netG, opt.norm, not opt.no_dropout, self.gpu_ids)
self.netG_B = networks.define_G(opt.output_nc, opt.input_nc,
- opt.ngf, opt.which_model_netG, opt.norm, opt.use_dropout, self.gpu_ids)
+ opt.ngf, opt.which_model_netG, opt.norm, not opt.no_dropout, self.gpu_ids)
if self.isTrain:
use_sigmoid = opt.no_lsgan