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
https://github.com/vithursant/VAE-Gumbel-Softmax/blob/master/vae_gumbel_softmax.py#L55 You use the logits, however we have to use log(logits) to perform gumbel max trick as stated in https://timvieira.github.io/blog/post/2014/07/31/gumbel-max-trick/
The text was updated successfully, but these errors were encountered:
gumbel softmax((log(pi)+g)/tau), where pi are class probabilities, therefore softmax((logits + g)/tau) will suffice. https://arxiv.org/pdf/1611.01144
Sorry, something went wrong.
No branches or pull requests
https://github.com/vithursant/VAE-Gumbel-Softmax/blob/master/vae_gumbel_softmax.py#L55
You use the logits, however we have to use log(logits) to perform gumbel max trick as stated in https://timvieira.github.io/blog/post/2014/07/31/gumbel-max-trick/
The text was updated successfully, but these errors were encountered: