PyMC 3.11.5
PyMC 3.11.5 (15 March 2022)
This is a backport & bugfix release that eases the transition to pymc >=4.0.0
.
Backports
- The
pm.logp(rv, x)
syntax is now available and recommended to make your model codev4
-ready. Note that this backport is just an alias and much less capable than what's available withpymc >=4
(see #5083). - The
pm.Distribution(testval=...)
kwarg was deprecated and will be replaced bypm.Distribution(initval=...)
inpymc >=4
(see #5226). - The
pm.sample(start=...)
kwarg was deprecated and will be replaced bypm.sample(initvals=...)
inpymc >=4
(see #5226). pm.LogNormal
is now available as an alias forpm.Lognormal
(see #5389).