- Track the model log-likelihood as a sampler stat for NUTS and HMC samplers
(accessible as
trace.get_sampler_stats('model_logp')
) (#3134) - Add Incomplete Beta function
incomplete_beta(a, b, value)
- Add log CDF functions to continuous distributions:
Beta
,Cauchy
,ExGaussian
,Exponential
,Flat
,Gumbel
,HalfCauchy
,HalfFlat
,HalfNormal
,Laplace
,Logistic
,Lognormal
,Normal
,Pareto
,StudentT
,Triangular
,Uniform
,Wald
,Weibull
. - Behavior of
sample_posterior_predictive
is now to produce posterior predictive samples, in order, from all values of thetrace
. Previously, by default it would produce 1 chain worth of samples, using a random selection from thetrace
(#3212)
- Renamed
sample_ppc()
andsample_ppc_w()
tosample_posterior_predictive()
andsample_posterior_predictive_w()
, respectively. - Refactor SMC and properly compute marginal likelihood (#3124)
- Add documentation section on survival analysis and censored data models
- Add
check_test_point
method topm.Model
- Add
Ordered
Transformation andOrderedLogistic
distribution - Add
Chain
transformation - Improve error message
Mass matrix contains zeros on the diagonal. Some derivatives might always be zero
during tuning ofpm.sample
- Improve error message
NaN occurred in optimization.
during ADVI - Save and load traces without
pickle
usingpm.save_trace
andpm.load_trace
- Add
Kumaraswamy
distribution - Add
TruncatedNormal
distribution - Rewrite parallel sampling of multiple chains on py3. This resolves long standing issues when transferring large traces to the main process, avoids pickling issues on UNIX, and allows us to show a progress bar for all chains. If parallel sampling is interrupted, we now return partial results.
- Add
sample_prior_predictive
which allows for efficient sampling from the unconditioned model. - SMC: remove experimental warning, allow sampling using
sample
, reduce autocorrelation from final trace. - Add
model_to_graphviz
(which uses the optional dependencygraphviz
) to plot a directed graph of a PyMC3 model using plate notation. - Add beta-ELBO variational inference as in beta-VAE model (Christopher P. Burgess et al. NIPS, 2017)
- Add
__dir__
toSingleGroupApproximation
to improve autocompletion in interactive environments
- Fixed grammar in divergence warning, previously
There were 1 divergences ...
could be raised. - Fixed
KeyError
raised when only subset of variables are specified to be recorded in the trace. - Removed unused
repeat=None
arguments from allrandom()
methods in distributions. - Deprecated the
sigma
argument inMarginalSparse.marginal_likelihood
in favor ofnoise
- Fixed unexpected behavior in
random
. Now therandom
functionality is more robust and will work better forsample_prior
when that is implemented. - Fixed
scale_cost_to_minibatch
behaviour, previously this was not working and alwaysFalse
- Add
logit_p
keyword topm.Bernoulli
, so that users can specify the logit of the success probability. This is faster and more stable than usingp=tt.nnet.sigmoid(logit_p)
. - Add
random
keyword topm.DensityDist
thus enabling users to pass custom random method which in turn makes sampling from aDensityDist
possible. - Effective sample size computation is updated. The estimation uses Geyer's initial positive sequence, which no longer truncates the autocorrelation series inaccurately.
pm.diagnostics.effective_n
now can reports N_eff>N. - Added
KroneckerNormal
distribution and a correspondingMarginalKron
Gaussian Process implementation for efficient inference, along with lower-level functions such ascartesian
andkronecker
products. - Added
Coregion
covariance function. - Add new 'pairplot' function, for plotting scatter or hexbin matrices of sampled parameters. Optionally it can plot divergences.
- Plots of discrete distributions in the docstrings
- Add logitnormal distribution
- Densityplot: add support for discrete variables
- Fix the Binomial likelihood in
.glm.families.Binomial
, with the flexibility of specifying then
. - Add
offset
kwarg to.glm
. - Changed the
compare
function to accept a dictionary of model-trace pairs instead of two separate lists of models and traces. - add test and support for creating multivariate mixture and mixture of mixtures
distribution.draw_values
, now is also able to draw values from conditionally dependent RVs, such as autotransformed RVs (Refer to PR #2902).
VonMises
does not overflow for large values of kappa. i0 and i1 have been removed and we now use log_i0 to compute the logp.- The bandwidth for KDE plots is computed using a modified version of Scott's rule. The new version uses entropy instead of standard deviation. This works better for multimodal distributions. Functions using KDE plots has a new argument
bw
controlling the bandwidth. - fix PyMC3 variable is not replaced if provided in more_replacements (#2890)
- Fix for issue #2900. For many situations, named node-inputs do not have a
random
method, while some intermediate node may have it. This meant that if the named node-input at the leaf of the graph did not have a fixed value,theano
would try to compile it and fail to find inputs, raising atheano.gof.fg.MissingInputError
. This was fixed by going through the theano variable's owner inputs graph, trying to get intermediate named-nodes values if the leafs had failed. - In
distribution.draw_values
, some named nodes could betheano.tensor.TensorConstant
s ortheano.tensor.sharedvar.SharedVariable
s. Nevertheless, indistribution._draw_value
, these would be passed todistribution._compile_theano_function
as if they weretheano.tensor.TensorVariable
s. This could lead to the following exceptionsTypeError: ('Constants not allowed in param list', ...)
orTypeError: Cannot use a shared variable (...)
. The fix was to not addtheano.tensor.TensorConstant
ortheano.tensor.sharedvar.SharedVariable
named nodes into thegivens
dict that could be used indistribution._compile_theano_function
. - Exponential support changed to include zero values.
- DIC and BPIC calculations have been removed
- df_summary have been removed, use summary instead
njobs
andnchains
kwarg are deprecated in favor ofcores
andchains
forsample
lag
kwarg inpm.stats.autocorr
andpm.stats.autocov
is deprecated.
- Improve NUTS initialization
advi+adapt_diag_grad
and addjitter+adapt_diag_grad
(#2643) - Added
MatrixNormal
class for representing vectors of multivariate normal variables - Implemented
HalfStudentT
distribution - New benchmark suite added (see http://pandas.pydata.org/speed/pymc3/)
- Generalized random seed types
- Update loo, new improved algorithm (#2730)
- New CSG (Constant Stochastic Gradient) approximate posterior sampling algorithm (#2544)
- Michael Osthege added support for population-samplers and implemented differential evolution metropolis (
DEMetropolis
). For models with correlated dimensions that can not use gradient-based samplers, theDEMetropolis
sampler can give higher effective sampling rates. (also see PR#2735) - Forestplot supports multiple traces (#2736)
- Add new plot, densityplot (#2741)
- DIC and BPIC calculations have been deprecated
- Refactor HMC and implemented new warning system (#2677, #2808)
- Fixed
compareplot
to useloo
output. - Improved
posteriorplot
to scale fonts sample_ppc_w
now broadcastsdf_summary
function renamed tosummary
- Add test for
model.logp_array
andmodel.bijection
(#2724) - Fixed
sample_ppc
andsample_ppc_w
to iterate all chains(#2633, #2748) - Add Bayesian R2 score (for GLMs)
stats.r2_score
(#2696) and test (#2729). - SMC works with transformed variables (#2755)
- Speedup OPVI (#2759)
- Multiple minor fixes and improvements in the docs (#2775, #2786, #2787, #2789, #2790, #2794, #2799, #2809)
- Old (
minibatch-
)advi
is removed (#2781)
This version includes two major contributions from our Google Summer of Code 2017 students:
- Maxim Kochurov extended and refactored the variational inference module. This primarily adds two important classes, representing operator variational inference (
OPVI
) objects andApproximation
objects. These make it easier to extend existingvariational
classes, and to derive inference fromvariational
optimizations, respectively. Thevariational
module now also includes normalizing flows (NFVI
). - Bill Engels added an extensive new Gaussian processes (
gp
) module. Standard GPs can be specified using eitherLatent
orMarginal
classes, depending on the nature of the underlying function. A Student-T processTP
has been added. In order to accomodate larger datasets, approximate marginal Gaussian processes (MarginalSparse
) have been added.
Documentation has been improved as the result of the project's monthly "docathons".
An experimental stochastic gradient Fisher scoring (SGFS
) sampling step method has been added.
The API for find_MAP
was enhanced.
SMC now estimates the marginal likelihood.
Added Logistic
and HalfFlat
distributions to set of continuous distributions.
Bayesian fraction of missing information (bfmi
) function added to stats
.
Enhancements to compareplot
added.
QuadPotential adaptation has been implemented.
Script added to build and deploy documentation.
MAP estimates now available for transformed and non-transformed variables.
The Constant
variable class has been deprecated, and will be removed in 3.3.
DIC and BPIC calculations have been sped up.
Arrays are now accepted as arguments for the Bound
class.
random
method was added to the Wishart
and LKJCorr
distributions.
Progress bars have been added to LOO and WAIC calculations.
All example notebooks updated to reflect changes in API since 3.1.
Parts of the test suite have been refactored.
Fixed sampler stats error in NUTS for non-RAM backends
Matplotlib is no longer a hard dependency, making it easier to use in settings where installing Matplotlib is problematic. PyMC will only complain if plotting is attempted.
Several bugs in the Gaussian process covariance were fixed.
All chains are now used to calculate WAIC and LOO.
AR(1) log-likelihood function has been fixed.
Slice sampler fixed to sample from 1D conditionals.
Several docstring fixes.
The following people contributed to this release (ordered by number of commits):
Maxim Kochurov [email protected] Bill Engels [email protected] Chris Fonnesbeck [email protected] Junpeng Lao [email protected] Adrian Seyboldt [email protected] AustinRochford [email protected] Osvaldo Martin [email protected] Colin Carroll [email protected] Hannes Vasyura-Bathke [email protected] Thomas Wiecki [email protected] michaelosthege [email protected] Marco De Nadai [email protected] Kyle Beauchamp [email protected] Massimo [email protected] ctm22396 [email protected] Max Horn [email protected] Hennadii Madan [email protected] Hassan Naseri [email protected] Peadar Coyle [email protected] Saurav R. Tuladhar [email protected] Shashank Shekhar [email protected] Eric Ma [email protected] Ed Herbst [email protected] tsdlovell [email protected] zaxtax [email protected] Dan Nichol [email protected] Benjamin Yetton [email protected] jackhansom [email protected] Jack Tsai [email protected] Andrés Asensio Ramos [email protected]
-
New user forum at http://discourse.pymc.io
-
Much improved variational inference support:
-
Add Stein-Variational Gradient Descent as well as Amortized SVGD (experimental).
-
Added various optimizers including ADAM.
-
Stopping criterion implemented via callbacks.
-
sample() defaults changed: tuning is enabled for the first 500 samples which are then discarded from the trace as burn-in.
-
MvNormal supports Cholesky Decomposition now for increased speed and numerical stability.
-
Many optimizations and speed-ups.
-
NUTS implementation now matches current Stan implementation.
-
Add higher-order integrators for HMC.
-
ADVI stopping criterion implemented.
-
Improved support for theano's floatX setting to enable GPU computations (work in progress).
-
MvNormal supports Cholesky Decomposition now for increased speed and numerical stability.
-
Added support for multidimensional minibatches
-
Added
Approximation
class and the ability to convert a sampled trace into an approximation via itsEmpirical
subclass. -
Model
can now be inherited from and act as a base class for user specified models (see pymc3.models.linear). -
Add MvGaussianRandomWalk and MvStudentTRandomWalk distributions.
-
GLM models do not need a left-hand variable anymore.
-
Refactored HMC and NUTS for better readability.
-
Add support for Python 3.6.
-
Bound now works for discrete distributions as well.
-
Random sampling now returns the correct shape even for higher dimensional RVs.
-
Use theano Psi and GammaLn functions to enable GPU support for them.
We are proud and excited to release the first stable version of PyMC3, the product of more than 5 years of ongoing development and contributions from over 80 individuals. PyMC3 is a Python module for Bayesian modeling which focuses on modern Bayesian computational methods, primarily gradient-based (Hamiltonian) MCMC sampling and variational inference. Models are specified in Python, which allows for great flexibility. The main technological difference in PyMC3 relative to previous versions is the reliance on Theano for the computational backend, rather than on Fortran extensions.
Since the beta release last year, the following improvements have been implemented:
-
Added
variational
submodule, which features the automatic differentiation variational inference (ADVI) fitting method. Also supports mini-batch ADVI for large data sets. Much of this work was due to the efforts of Taku Yoshioka, and important guidance was provided by the Stan team (specifically Alp Kucukelbir and Daniel Lee). -
Added model checking utility functions, including leave-one-out (LOO) cross-validation, BPIC, WAIC, and DIC.
-
Implemented posterior predictive sampling (
sample_ppc
). -
Implemented auto-assignment of step methods by
sample
function. -
Enhanced IPython Notebook examples, featuring more complete narratives accompanying code.
-
Extensive debugging of NUTS sampler.
-
Updated documentation to reflect changes in code since beta.
-
Refactored test suite for better efficiency.
-
Added von Mises, zero-inflated negative binomial, and Lewandowski, Kurowicka and Joe (LKJ) distributions.
-
Adopted
joblib
for managing parallel computation of chains. -
Added contributor guidelines, contributor code of conduct and governance document.
- Argument order of tau and sd was switched for distributions of the normal family:
Normal()
Lognormal()
HalfNormal()
Old: Normal(name, mu, tau)
New: Normal(name, mu, sd)
(supplying keyword arguments is unaffected).
MvNormal
calling signature changed: Old:MvNormal(name, mu, tau)
New:MvNormal(name, mu, cov)
(supplying keyword arguments is unaffected).
We on the PyMC3 core team would like to thank everyone for contributing and now feel that this is ready for the big time. We look forward to hearing about all the cool stuff you use PyMC3 for, and look forward to continued development on the package.
The following authors contributed to this release:
Chris Fonnesbeck [email protected] John Salvatier [email protected] Thomas Wiecki [email protected] Colin Carroll [email protected] Maxim Kochurov [email protected] Taku Yoshioka [email protected] Peadar Coyle (springcoil) [email protected] Austin Rochford [email protected] Osvaldo Martin [email protected] Shashank Shekhar [email protected]
In addition, the following community members contributed to this release:
A Kuz [email protected] A. Flaxman [email protected] Abraham Flaxman [email protected] Alexey Goldin [email protected] Anand Patil [email protected] Andrea Zonca [email protected] Andreas Klostermann [email protected] Andres Asensio Ramos Andrew Clegg [email protected] Anjum48 Benjamin Edwards [email protected] Boris Avdeev [email protected] Brian Naughton [email protected] Byron Smith Chad Heyne [email protected] Corey Farwell [email protected] David Huard [email protected] David Stück [email protected] DeliciousHair [email protected] Dustin Tran Eigenblutwurst [email protected] Gideon Wulfsohn [email protected] Gil Raphaelli [email protected] Gogs [email protected] Ilan Man Imri Sofer [email protected] Jake Biesinger [email protected] James Webber [email protected] John McDonnell [email protected] Jon Sedar [email protected] Jordi Diaz Jordi Warmenhoven [email protected] Karlson Pfannschmidt [email protected] Kyle Bishop [email protected] Kyle Meyer [email protected] Lin Xiao Mack Sweeney [email protected] Matthew Emmett [email protected] Michael Gallaspy [email protected] Nick [email protected] Osvaldo Martin [email protected] Patricio Benavente [email protected] Raymond Roberts Rodrigo Benenson [email protected] Sergei Lebedev [email protected] Skipper Seabold [email protected] Thomas Kluyver [email protected] Tobias Knuth [email protected] Volodymyr Kazantsev Wes McKinney [email protected] Zach Ploskey [email protected] akuz [email protected] brandon willard [email protected] dstuck [email protected] ingmarschuster [email protected] jan-matthis [email protected] jason JasonTam22@gmailcom kiudee [email protected] maahnman [email protected] macgyver [email protected] mwibrow [email protected] olafSmits [email protected] paul sorenson [email protected] redst4r [email protected] santon [email protected] sgenoud [email protected] stonebig Tal Yarkoni [email protected] x2apps [email protected] zenourn [email protected]
Probabilistic programming allows for flexible specification of Bayesian statistical models in code. PyMC3 is a new, open-source probabilistic programmer framework with an intuitive, readable and concise, yet powerful, syntax that is close to the natural notation statisticians use to describe models. It features next-generation fitting techniques, such as the No U-Turn Sampler, that allow fitting complex models with thousands of parameters without specialized knowledge of fitting algorithms.
PyMC3 has recently seen rapid development. With the addition of two new major features: automatic transforms and missing value imputation, PyMC3 has become ready for wider use. PyMC3 is now refined enough that adding features is easy, so we don't expect adding features in the future will require drastic changes. It has also become user friendly enough for a broader audience. Automatic transformations mean NUTS and find_MAP work with less effort, and friendly error messages mean its easy to diagnose problems with your model.
Thus, Thomas, Chris and I are pleased to announce that PyMC3 is now in Beta.
- Transforms now automatically applied to constrained distributions
- Transforms now specified with a
transform=
argument on Distributions.model.TransformedVar
is gone. - Transparent missing value imputation support added with MaskedArrays or pandas.DataFrame NaNs.
- Bad default values now ignored
- Profile theano functions using
model.profile(model.logpt)
- A. Flaxman [email protected]
- Andrea Zonca [email protected]
- Andreas Klostermann [email protected]
- Andrew Clegg [email protected]
- AustinRochford [email protected]
- Benjamin Edwards [email protected]
- Brian Naughton [email protected]
- Chad Heyne [email protected]
- Chris Fonnesbeck [email protected]
- Corey Farwell [email protected]
- John Salvatier [email protected]
- Karlson Pfannschmidt [email protected]
- Kyle Bishop [email protected]
- Kyle Meyer [email protected]
- Mack Sweeney [email protected]
- Osvaldo Martin [email protected]
- Raymond Roberts [email protected]
- Rodrigo Benenson [email protected]
- Thomas Wiecki [email protected]
- Zach Ploskey [email protected]
- maahnman [email protected]
- paul sorenson [email protected]
- zenourn [email protected]