Skip to content
New issue

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

no-saturated loss #16

Open
MengZhen-Chi opened this issue Aug 16, 2023 · 1 comment
Open

no-saturated loss #16

MengZhen-Chi opened this issue Aug 16, 2023 · 1 comment

Comments

@MengZhen-Chi
Copy link

in your paper you used no-saturated loss for D and G, could you told me the change of D loss in training process? In my training process, my D loss will down to 0.0139 after about 1k iters

@MengZhen-Chi
Copy link
Author

my D loss code is :
D_adv = GANLoss(gan_type='wgan_softplus', real_label_val=1.0, fake_label_val=0.0, loss_weight=1.0)
L_adv_D = 0.01 * (D_adv(real_pred, True) + D_adv(fake_pred, False))
real_pred is D(ground_truth) , fake_pred is D(generated_sample)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant