GcGAN icon indicating copy to clipboard operation
GcGAN copied to clipboard

Typos in gc_cycle_gan_model.py

Open HelenMao opened this issue 5 years ago • 0 comments

Hi, thanks a lot for sharing your excellent work. I find there is a typo in gc_cycle_gan_model.py rec_B = self.netG_AB(fake_A) loss_cycle_B = self.criterionCycle(rec_B, self.real_B) * self.opt.lambda_AB rec_gc_B = self.netG_BA(fake_gc_A) loss_cycle_B += self.criterionCycle(rec_gc_B, self.real_gc_B) * self.opt.lambda_AB should be rec_gc_B = self.netG_AB(fake_gc_A) I do not know whether it will influence the results.

HelenMao avatar Sep 16 '19 03:09 HelenMao