probcomp / cgpm

Library of composable generative population models which serve as the modeling and inference backend of BayesDB.
Apache License 2.0
25 stars 11 forks source link

s/2 vs. 2/s #250

Open jar398 opened 4 years ago

jar398 commented 4 years ago

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 and rng.gamma do different things.