monad-bayes-1.2.0: src/Control/Monad/Bayes/Traced/Common.hs
-- |
-- Module : Control.Monad.Bayes.Traced.Common
-- Description : Numeric code for Trace MCMC
-- Copyright : (c) Adam Scibior, 2015-2020
-- License : MIT
-- Maintainer : leonhard.markert@tweag.io
-- Stability : experimental
-- Portability : GHC
module Control.Monad.Bayes.Traced.Common
( Trace (..),
singleton,
scored,
bind,
mhTrans,
mhTransWithBool,
mhTransFree,
mhTrans',
burnIn,
MHResult (..),
)
where
import Control.Monad.Bayes.Class
( MonadDistribution (bernoulli, random),
discrete,
)
import Control.Monad.Bayes.Density.Free qualified as Free
import Control.Monad.Bayes.Density.State qualified as State
import Control.Monad.Bayes.Weighted as WeightedT
( WeightedT,
hoist,
runWeightedT,
)
import Control.Monad.Writer (WriterT (WriterT, runWriterT))
import Data.Functor.Identity (Identity (runIdentity))
import Numeric.Log (Log, ln)
import Statistics.Distribution.DiscreteUniform (discreteUniformAB)
data MHResult a = MHResult
{ success :: Bool,
trace :: Trace a
}
-- | Collection of random variables sampler during the program's execution.
data Trace a = Trace
{ -- | Sequence of random variables sampler during the program's execution.
variables :: [Double],
--
output :: a,
-- | The probability of observing this particular sequence.
probDensity :: Log Double
}
instance Functor Trace where
fmap f t = t {output = f (output t)}
instance Applicative Trace where
pure x = Trace {variables = [], output = x, probDensity = 1}
tf <*> tx =
Trace
{ variables = variables tf ++ variables tx,
output = output tf (output tx),
probDensity = probDensity tf * probDensity tx
}
instance Monad Trace where
t >>= f =
let t' = f (output t)
in t' {variables = variables t ++ variables t', probDensity = probDensity t * probDensity t'}
singleton :: Double -> Trace Double
singleton u = Trace {variables = [u], output = u, probDensity = 1}
scored :: Log Double -> Trace ()
scored w = Trace {variables = [], output = (), probDensity = w}
bind :: (Monad m) => m (Trace a) -> (a -> m (Trace b)) -> m (Trace b)
bind dx f = do
t1 <- dx
t2 <- f (output t1)
return $ t2 {variables = variables t1 ++ variables t2, probDensity = probDensity t1 * probDensity t2}
-- | A single Metropolis-corrected transition of single-site Trace MCMC.
mhTrans :: (MonadDistribution m) => (WeightedT (State.DensityT m)) a -> Trace a -> m (Trace a)
mhTrans m t@Trace {variables = us, probDensity = p} = do
let n = length us
us' <- do
i <- discrete $ discreteUniformAB 0 (n - 1)
u' <- random
case splitAt i us of
(xs, _ : ys) -> return $ xs ++ (u' : ys)
_ -> error "impossible"
((b, q), vs) <- State.runDensityT (runWeightedT m) us'
let ratio = (exp . ln) $ min 1 (q * fromIntegral n / (p * fromIntegral (length vs)))
accept <- bernoulli ratio
return $ if accept then Trace vs b q else t
mhTransFree :: (MonadDistribution m) => WeightedT (Free.DensityT m) a -> Trace a -> m (Trace a)
mhTransFree m t = trace <$> mhTransWithBool m t
-- | A single Metropolis-corrected transition of single-site Trace MCMC.
mhTransWithBool :: (MonadDistribution m) => WeightedT (Free.DensityT m) a -> Trace a -> m (MHResult a)
mhTransWithBool m t@Trace {variables = us, probDensity = p} = do
let n = length us
us' <- do
i <- discrete $ discreteUniformAB 0 (n - 1)
u' <- random
case splitAt i us of
(xs, _ : ys) -> return $ xs ++ (u' : ys)
_ -> error "impossible"
((b, q), vs) <- runWriterT $ runWeightedT $ WeightedT.hoist (WriterT . Free.runDensityT us') m
let ratio = (exp . ln) $ min 1 (q * fromIntegral n / (p * fromIntegral (length vs)))
accept <- bernoulli ratio
return if accept then MHResult True (Trace vs b q) else MHResult False t
-- | A variant of 'mhTrans' with an external sampling monad.
mhTrans' :: (MonadDistribution m) => WeightedT (Free.DensityT Identity) a -> Trace a -> m (Trace a)
mhTrans' m = mhTransFree (WeightedT.hoist (Free.hoist (return . runIdentity)) m)
-- | burn in an MCMC chain for n steps (which amounts to dropping samples of the end of the list)
burnIn :: (Functor m) => Int -> m [a] -> m [a]
burnIn n = fmap dropEnd
where
dropEnd ls = let len = length ls in take (len - n) ls