Giter Club home page Giter Club logo

mcmc.jl's Introduction

MCMC Routines in Julia

In Bayesian modeling we are often faced with an unnormalized density (e.g. a posterior distribution) that we want to know about. A few general purpose MCMC techniques for such situations include Metropolis-Hastings, slice sampling, and Hamiltonian Monte Carlo (HMC).

By implementing these samplers in Julia, they can be written naturally while being quite fast. By providing a common interface across samplers, we can perform MCMC with much less effort: in several of the examples below we only needed to implement a function that computes the unnormalized density of interest. More often, these tools are incorporated as components of a larger sampling scheme.

Basic idea

Suppose we have a function g(x). Our aim is to treat g as an unnormalized probability density and obtain samples from the resulting probability distribution. We can use slice sampling to obtain a new sample from g where the previous state was x using the slice_sampler method in this package:

x,gx = slice_sampler(x,g)

This function also returns g(x) at the new value, as shown above. We can obtain many samples of by repeatedly calling the above function. In truth, this sequence of x values is a Markov chain whose limiting distribution is g(x), and though the samples are not independent, they often can be a useful summary of the function g(x). In the case of Bayesian modeling, the function of interest g(x) is the posterior distribution of a model's parameters given the observed data.

Univariate example

Consider the following two functions, where dnorm(x,mu,sigma) is the density Normal(x; mu,sigma):

g(x) = dnorm(x,0,.5)
h(x) = dnorm(x,-1,.35) + 2 * dnorm(x,1,.5) + 1.5 * dnorm(x,2,.25)

The following will run a julia script that performs 10000 iterations of slice sampling and MH on log(g) and log(h) respectively. From the mcmc/ directory:

julia> load("examples/example.jl")

On my laptop I get the following timings: slice on g: 30.5 ms slice on h: 90.0 ms mh on g: 9.2 ms mh on h: 15.3 ms

An R implementation of slice sampling is included for comparison (in seconds):

> source("examples/example.r")
> system.time(samples <- mcmc(0,lg,slice,niter=10000))
   user  system elapsed 
  1.420   0.000   1.421 
> system.time(samples <- mcmc(0,lh,slice,niter=10000))
   user  system elapsed 
  2.050   0.000   2.041 

For slice sampling h we see about a 18x speedup. This is encouraging because in many applications it is expensive to repeatedly compute the density, but with these functions we can now write them in Julia.

Both the Julia version and the R version are using R libraries for random uniform and exponential draws during the slice sampling procedure.

The R script examples/plot.r loads the various samples and plots summaries. This image shows the results of using the slice sampler in Julia on log(h(x)). The true density is the black curve superimposed on the histogram. These plots provide reassurance that we are correctly sampling from the intended distribution and mixing fairly well.

Note: The goal here is to illustrate the use of these routines, not compare the efficacy of different samplers.

Multivariate example

In several recent blog posts people have explored MCMC for the following bivariate density:

$$f(x,y) = K x^2 \mbox{exp}(-xy^2 - y^2 + 2y - 4x)$$

where K is some unknown normalizing constant. These posts perform MCMC by Gibbs sampling using the following full conditional distributions:

x|y ~ Gamma(3,1/(y^2+4)) y|x ~ Normal(1/(1+x), 1/(2(1+x)))

[NB: The second parameter in the Gamma is a rate parameter.] For some models, it can be a pain (or analytically intractable) to derive full conditional distributions for some parameters. The examples/multivariate/multivariate.jl script compares the above approach versus iteratively slice sampling in each dimension. These plots show the density evaluated at a grid of points, then 2000 samples from the Gibbs sampling algorithm, then 2000 samples from the multivariate slice sampler. One can also look at the trace plots for each sampler across each iteration.

Here is an excerpt from the example, showing how we are calling the mcmc method with a particular DifferentiableDensity object dd. When using the gibbs_sampler we can obtain 10000 samples in .043 seconds. Slice sampling here took about 3 times longer, but remember this is quite encouraging as this method is using the default parameters, it's simply sampling each dimension in turn, and required no special knowledge about the density f(x,y).

julia> @time xs, progress = mcmc(x0, dd, gibbs_sampler, opts, num_iterations);
elapsed time: 0.04285693168640137 seconds

julia> @time xs, progress = mcmc(x0, dd, mv_slice_sampler, opts, num_iterations);
elapsed time: 0.12020492553710938 seconds

Credits

The slice sampling and HMC algorithms implemented here are based on Radford Neal's R code.

TODO

  • Implement Radford Neal's...
    • windowed HMC
    • tempered HMC
    • bounded HMC
  • Debug HMC
  • Allow samplers to return other metadata (e.g. number of function evaluations)
  • Consistently use the previous value of g(x) so that we do fewer evaluations of g
  • Make use of Density type
  • Use Options type for passing options to the various samplers
  • Add more checks for sensible parameter settings in each sampler method

mcmc.jl's People

Contributors

doobwa avatar johnmyleswhite avatar nfoti avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.