Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Release Notes


## PyMC 3.5 (Unreleased)
## PyMC 3.5


### New features
Expand Down
4 changes: 2 additions & 2 deletions docs/source/notebooks/GLM-hierarchical-binominal-model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,10 @@
"source": [
"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",
"\n",
"$$ \\operatorname{E}(\\alpha \\lvert y) \\mbox{ is Estimated By }\n",
"$$ \\operatorname{E}(\\alpha \\lvert y) \\text{ is estimated by }\n",
"\\sum_{x,z} \\alpha p(x,z\\lvert y) $$\n",
"\n",
"$$ \\operatorname{E}(\\beta \\lvert y) \\mbox{ is Estimated By }\n",
"$$ \\operatorname{E}(\\beta \\lvert y) \\text{ is estimated by }\n",
"\\sum_{x,z} \\beta p(x,z\\lvert y) $$"
]
},
Expand Down
161 changes: 76 additions & 85 deletions docs/source/notebooks/GLM-negative-binomial-regression.ipynb

Large diffs are not rendered by default.

262 changes: 166 additions & 96 deletions docs/source/notebooks/GLM-poisson-regression.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pymc3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pylint: disable=wildcard-import
__version__ = "3.4.1"
__version__ = "3.5"

from .blocking import *
from .distributions import *
Expand Down