Skip to content

Releases: blei-lab/edward

1.0.7

05 Jun 01:36
Compare
Choose a tag to compare
  • hotfix to get from . import models working

1.0.6

04 Jun 09:51
Compare
Choose a tag to compare
  • website with revamped documentation: http://edwardlib.org. See details in #108
  • criticism of probabilistic models with ed.evaluate() and ed.ppc(). See details in #107

1.0.5

24 May 22:38
Compare
Choose a tag to compare
  • enabled Keras as neural network specification
  • samples in variational model can now leverage TensorFlow-based
    samplers and not only SciPy-based samplers
  • let user optionally specify sess when using inference
  • mean-field variational inference can now take advantage of analytically tractable KL terms for standard normal priors
  • data can additionally be a list of np.ndarrays or list of
    tf.placeholders
  • added mixture density network as example
  • enabled dimensions of distribution output to match with input dimensions
  • renamed log_gamma, log_beta, multivariate_log_beta to lgamma
    and lbeta to follow convention in TensorFlow API
  • let PointMass be a variational factor
  • fixed Multinomial variational factor
  • added continuous integration for unit tests

1.0.4

14 May 14:47
Compare
Choose a tag to compare
  • interface-wise, you now import models (probability models or variational models) using
from edward.models import PythonModel, Variational, Normal

By default you can also do something like ed.StanModel(model_file=model_file).

  • variational distributions now default to initializing with only one factor

1.0.3

14 May 04:13
Compare
Choose a tag to compare
  • generalized internals of variational distributions to use multivariate factors
  • vectorized all distributions and with unit tests
  • added additional distributions: binom, chi2, geom, lognorm, nbinom, uniform
  • vectorized log density calls in variational distributions
  • vectorized log density calls in model examples

1.0.2

09 May 20:58
Compare
Choose a tag to compare
  • fixed bug in adding mean-field factorizations in Variational()
  • support for PyMC3

1.0.1

07 May 14:24
Compare
Choose a tag to compare
  • some distribution fixes
  • mixture model of gaussians example
  • variational model interface

Initial release

03 May 03:48
Compare
Choose a tag to compare

Edward is a Python library for probabilistic modeling, inference, and criticism. It enables black box inference for models with discrete and continuous latent variables, neural network parameterizations, and infinite dimensional parameter spaces. Edward serves as a fusion of three fields: Bayesian statistics and machine learning, deep learning, and probabilistic programming.