Skip to content

Commit ad5144b

Browse files
authored
Merge pull request #3086 from pymc-devs/release_3.4.2
Release 3.5
2 parents b752b07 + d7d801f commit ad5144b

File tree

5 files changed

+246
-185
lines changed

5 files changed

+246
-185
lines changed

RELEASE-NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Release Notes
22

33

4-
## PyMC 3.5 (Unreleased)
4+
## PyMC 3.5
55

66

77
### New features

docs/source/notebooks/GLM-hierarchical-binominal-model.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,10 @@
210210
"source": [
211211
"The plot shows that the posterior is roughly symetric about the mode (-1.79, 2.74). This corresponds to $\\alpha = 2.21$ and $\\beta = 13.27$. We can compute the marginal means as the authors of BDA3 do, using\n",
212212
"\n",
213-
"$$ \\operatorname{E}(\\alpha \\lvert y) \\mbox{ is Estimated By }\n",
213+
"$$ \\operatorname{E}(\\alpha \\lvert y) \\text{ is estimated by }\n",
214214
"\\sum_{x,z} \\alpha p(x,z\\lvert y) $$\n",
215215
"\n",
216-
"$$ \\operatorname{E}(\\beta \\lvert y) \\mbox{ is Estimated By }\n",
216+
"$$ \\operatorname{E}(\\beta \\lvert y) \\text{ is estimated by }\n",
217217
"\\sum_{x,z} \\beta p(x,z\\lvert y) $$"
218218
]
219219
},

docs/source/notebooks/GLM-negative-binomial-regression.ipynb

Lines changed: 76 additions & 85 deletions
Large diffs are not rendered by default.

docs/source/notebooks/GLM-poisson-regression.ipynb

Lines changed: 166 additions & 96 deletions
Large diffs are not rendered by default.

pymc3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# pylint: disable=wildcard-import
2-
__version__ = "3.4.1"
2+
__version__ = "3.5"
33

44
from .blocking import *
55
from .distributions import *

0 commit comments

Comments
 (0)