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
In normal.py, the comment says rho ~ Gamma(nu/2, s/2) but the code says rho = rng.gamma(nu/2., scale=2./s)
rho ~ Gamma(nu/2, s/2)
rho = rng.gamma(nu/2., scale=2./s)
This is confusing. Either the comment is wrong, or else the presentation would be improved by explaining that Gamma and rng.gamma do different things.
Gamma
rng.gamma
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In normal.py, the comment says
rho ~ Gamma(nu/2, s/2)
but the code says
rho = rng.gamma(nu/2., scale=2./s)
This is confusing. Either the comment is wrong, or else the presentation would be improved by explaining that
Gamma
andrng.gamma
do different things.The text was updated successfully, but these errors were encountered: