-
Notifications
You must be signed in to change notification settings - Fork 374
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
NLL on test/train for SEQGan #218
Comments
Evaluating likelihood is straightforward, with, e.g., |
Thanks a lot! Could you please help me also to figure out how I can change k, g, and d parameters (epochs and number of updates for discr training) mentioned in the original SeqGAN paper https://arxiv.org/pdf/1609.05473.pdf ? |
Discriminator training is by the function The while-loop:
is one-epoch training. |
Thank you! How can I control the number of mini-batch gradient steps that discriminator runs with the same generator input? In the while-loop, it first updates negative examples from generator, and than updates discriminator once with combination of positive and negative samples. |
You may make |
Thank you! |
Is it possible to add Likelihood-based Metrics on generated data for SeqGan evaluation? They are described in original paper and paper accompanying implementation you refer to (https://arxiv.org/pdf/1802.01886.pdf)
The text was updated successfully, but these errors were encountered: