monad-bayes-1.1.0: A library for probabilistic programming.
Copyright(c) Adam Scibior 2015-2020
LicenseMIT
Maintainerleonhard.markert@tweag.io
Stabilityexperimental
PortabilityGHC
Safe HaskellSafe-Inferred
LanguageHaskell2010

Control.Monad.Bayes.Inference.PMMH

Description

Particle Marginal Metropolis-Hastings (PMMH) sampling.

Christophe Andrieu, Arnaud Doucet, and Roman Holenstein. 2010. Particle Markov chain Monte Carlo Methods. Journal of the Royal Statistical Society 72 (2010), 269-342. http://www.stats.ox.ac.uk/~doucet/andrieu_doucet_holenstein_PMCMC.pdf

Synopsis

Documentation

pmmh :: MonadDistribution m => MCMCConfig -> SMCConfig (Weighted m) -> Traced (Weighted m) a1 -> (a1 -> Sequential (Population (Weighted m)) a2) -> m [[(a2, Log Double)]] Source #

Particle Marginal Metropolis-Hastings sampling.

pmmhBayesianModel :: MonadMeasure m => MCMCConfig -> SMCConfig (Weighted m) -> (forall m'. MonadMeasure m' => Bayesian m' a1 a2) -> m [[(a2, Log Double)]] Source #

Particle Marginal Metropolis-Hastings sampling from a Bayesian model