fastbayes-0.2.0.0: Bayesian modeling algorithms accelerated for particular model structures

PortabilityPOSIX
Stabilityexperimental
Maintainerchad.scherrer@gmail.com
Safe HaskellNone

Statistics.FastBayes.Linear

Description

This module gives an implementation of Bayesian linear regression, with the scale of the prior chosen by marginal likelihood.

The inputs for a Bayesian linear model are identical to those of a classical linear model, except that in addition to a design matrix and response, we must also specify a prior distribution on the weights and the noise. This leaves us with an open question of how these should be specified.

In his book Pattern Recognition and Machine Learning, Christopher Bishop provides details for an approach that simplifies the situation significantly, and allows for much faster inference. The structure of the linear model allows us to integrate the posterior over the weights, resulting in the marginal likelihood, expressed as a function of the prior precision and noise precision. This, in turn, can be easily optimized.

Synopsis

Documentation

data Fit Source

Instances

fitSource

Arguments

:: ([(Double, Double)] -> (Double, Double))

How to take the limit of the (α,β) sequence. A simple approach ise.g., fit (!! 1000) x y

-> Matrix Double

The design matrix (each column is a feature)

-> Vector Double

The response vector

-> Fit 

fit lim x y fits a Bayesian linear model to a design matrix x and response vector y. This is an iterative algorithm, resulting in a sequence (list) of (α,β) values. Here α is the prior precision, and β is the noise precision. lim function passed in is used to specify how the limit of this sequence should be computed.

design :: Fit -> Matrix DoubleSource

The design matrix used for the fit.

response :: Fit -> Vector DoubleSource

The response vector used for the fit

priorPrecision :: Fit -> DoubleSource

The precision (inverse variance) of the prior distribution, determined by maximizing the marginal likelihood

noisePrecision :: Fit -> DoubleSource

The precision (inverse variance) of the noise

effectiveNumParameters :: Fit -> DoubleSource

The effective number of parameters in the model

logEvidence :: Fit -> DoubleSource

The log of the evidence, which is useful for model comparison (different features, same response)

mapWeights :: Fit -> Vector DoubleSource

The MAP (maximum a posteriori) values for the parameter weights

hessian :: Fit -> Matrix DoubleSource

The Hessian (matrix of second derivatives) for the posterior distribution