We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You code about the D_loss
d_adv_loss = self.compute_adv_loss(self.d_real, True, 0.5) + self.compute_adv_loss(self.d_fake, False, 0.5)
The official code of D_loss
if type == 'lsgan': G_loss = L2(fake_scores_out, 0) D_loss = L2(real_scores_out, 0) + L2(fake_scores_out, 1) * L2_fake_weight
The value of L2_fake__weight is 0.1.
So, Do you abserve it?
The text was updated successfully, but these errors were encountered:
I didn't notice that. Thanks.
Sorry, something went wrong.
No branches or pull requests
You code about the D_loss
d_adv_loss = self.compute_adv_loss(self.d_real, True, 0.5) + self.compute_adv_loss(self.d_fake, False, 0.5)
The official code of D_loss
The value of L2_fake__weight is 0.1.
So, Do you abserve it?
The text was updated successfully, but these errors were encountered: