-
Notifications
You must be signed in to change notification settings - Fork 290
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 should train more than generator #101
Comments
@csala I can create a PR for this if you like. |
Good suggestion! As long as you add the number of iterations as a hyperparameter, I'm all for it. @csala |
Yes I have also seen the same thing as @Baukebrenninkmeijer describes. This suggestion should definitely serve as an improvement. |
Yeah, indeed. I think it's most suited in the |
I like the suggestion @Baukebrenninkmeijer, and a PR would be very welcome ! Regarding where to put the argument, I'd prefer to add it as a hyperparameter, as @fealho suggested. In the Also, I would add a default value of 1 for now so that by default the behavior is the same that we had before while still having the possibility to tweak the value to higher numbers. |
I just opened #102 too, since the |
The CTGAN does not implement the extra update iterations of the critic, when compared to the original implementation of WGAN and WGAN-GP. Is this intentional? In my experiments, I have seen that sometimes the generator becomes too powerful and exploits the discriminator. I think this might be improved by implementing the critic extra updates, compared to the generator.
From the paper, we see the critic is updated 5 times more compared to the generator.
The text was updated successfully, but these errors were encountered: