-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Discriminator with accuracy 1, generator fools it perfectly. What's going on? #45
Comments
What does the output look like by the generator? |
It is due to mode Collapse. The Generator knows some samples that can fool the discriminator and it always produces the same and fools D |
I have the same problem. I solved this by modifying the net architecture of D, perhaps it is because the previous D is easy to fool. |
so, how to solve it? |
i used the paper D and did not do any change , but it was still the same. why i came across the problem while they did not? |
I'm training a GAN where the discriminator has almost perfect accuracy (generated samples are classified 0, true samples are classified 1), but at the same time the generator is able to produce samples that fool the discriminator perfectly (always classified 1).
I'm guessing this is a vanishing gradient problem, but I cannot figure out how to solve it. All usual hacks don't seem to work.
Does anybody have some suggestions?
The text was updated successfully, but these errors were encountered: