Popularity
4.4
Declining
Activity
0.0
Stable
3
4
2

Monthly Downloads: 11
Programming language: Haskell
License: MIT License
Tags: Math     Numeric     Mcmc    
Latest version: v1.0.0

mcmc-types alternatives and similar packages

Based on the "Math" category.
Alternatively, view mcmc-types alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of mcmc-types or a related project?

Add another 'Math' Package

README

mcmc-types

Build Status Hackage Version MIT License

Common types for implementing Markov Chain Monte Carlo (MCMC) algorithms.

An instance of an MCMC problem can be characterized by the following:

  • A target distribution over some parameter space
  • A parameter space for a Markov chain to wander over
  • A transition operator to drive the Markov chain

mcmc-types provides the suitably-general Target, Chain, and Transition types for usefully representing these things respectively.

  • Target is a product type intended to hold a log-target density function and potentially its gradient.

  • The Chain type represents an 'annotated' parameter space. Technically all that's required is the type of the parameter space itself (held here in chainPosition) but in practice some additional information is typically useful. The chainTunables field can be used to hold arbitrary data; one should avoid using it to do something nasty like, say, invalidating the Markov property.

  • The Transition type permits probabilistic transitions over some state space by way of the underlying Prob monad.

See e.g. the mighty-metropolis library for example use.


*Note that all licence references and agreements mentioned in the mcmc-types README section above are relevant to that project's source code only.