You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
code from line 112, models/bicycle_gan_model.py self.fake_B_random = self.netG(self.real_A_encoded, self.z_random)
Why do we generate the fake_B_random using real_A_encoded instead of real_A_random?
I know that it does not really matter since there is no L1 loss in this part (cLR-GAN).
Doing it in this way means that half of the A input data is unused in training, or do I have some misconception here.
The text was updated successfully, but these errors were encountered:
code from line 112, models/bicycle_gan_model.py
self.fake_B_random = self.netG(self.real_A_encoded, self.z_random)
Why do we generate the fake_B_random using real_A_encoded instead of real_A_random?
I know that it does not really matter since there is no L1 loss in this part (cLR-GAN).
Doing it in this way means that half of the A input data is unused in training, or do I have some misconception here.
The text was updated successfully, but these errors were encountered: