hbayes-0.3: Bayes/VariableElimination.hs
{- | Algorithms for variable elimination
-}
module Bayes.VariableElimination(
-- * Inferences
priorMarginal
, posteriorMarginal
-- * Interaction graph and elimination order
, interactionGraph
, degreeOrder
, minDegreeOrder
, minFillOrder
, allVariables
, marginal
, mpemarginal
, mpe
, EliminationOrder
) where
import Bayes
import Bayes.Factor
import Data.List(partition,minimumBy,(\\),find,foldl')
import Data.Maybe(fromJust)
import Data.Function(on)
import qualified Data.Map as M
import Bayes.Factor.PrivateCPT(convertToMaxFactor,CPT,MAXCPT)
import Bayes.Factor.CPT
import Bayes.Factor.MaxCPT
import Bayes.PrivateTypes(DVISet)
--import Debug.Trace
--debug s a = trace (s ++ "\n" ++ show a ++ "\n") a
-- | Elimination order
type EliminationOrder dv = [dv]
-- | Get all variables from a Bayesian Network
allVariables :: (Graph g, Factor f)
=> BayesianNetwork g f
-> [DV]
allVariables g =
let s = allVertexValues g
createDV = factorMainVariable
in
map createDV s
-- | Used for bucket elimination. Factor are organized by their first DV
data Buckets f = Buckets !(EliminationOrder DV) !(M.Map DV [f])
instance Show f => Show (Buckets f) where
show (Buckets v m) = "BUCKET\n" ++ show v ++ "\n" ++ concatMap disp (M.toList m)
where
disp (v,f) = "Bucket for " ++ show v ++ "\n" ++ concatMap dispElem f ++ "\n----\n"
dispElem f = show f ++ "\n"
convertToMaxCPT :: Buckets CPT -> Buckets MAXCPT
convertToMaxCPT (Buckets e m) = Buckets e (M.map (map convertToMaxFactor) m)
createBuckets :: (Factor f)
=> [f] -- ^ Factor to use for computing the marginal one
-> EliminationOrder DV-- ^ Variables to eliminate
-> EliminationOrder DV -- ^ Remaining variables
-> Buckets f
createBuckets s e r =
let -- We put the selected variables for elimination in the right order at the beginning
-- Which means the function can work with a partial order which is completed with other
-- variables by default.
theOrder = e ++ r
addDVToBucket (rf, m) dv =
let (fk,remaining) = partition (flip containsVariable dv) rf
in
(remaining, M.insert dv fk m)
(_,b) = foldl' addDVToBucket (s,M.empty) theOrder
in
Buckets theOrder b
-- | Get the factors for a bucket
getBucket :: DV
-> Buckets f
-> [f]
getBucket dv (Buckets _ m) = fromJust $ M.lookup dv m
-- | Update bucket
updateBucket :: Factor f
=> DV -- ^ Variable that was eliminated
-> f -- ^ New factor resulting from this elimination
-> Buckets f
-> Buckets f
updateBucket dv f b@(Buckets e m) =
if isScalarFactor f
then
Buckets (remainingVarsToProcess e) (M.insert dv [f] m)
else
let b' = removeFromBucket dv b
in
addBucket b' f
where
remainingVarsToProcess [] = []
remainingVarsToProcess l = tail l
-- | Add a factor to the right bucket
addBucket :: Factor f => Buckets f -> f -> Buckets f
addBucket (Buckets e b) f =
let inBucket = find (f `containsVariable`) e
in
case inBucket of
Nothing -> Buckets e b
Just bucket -> Buckets e (M.insertWith' (++) bucket [f] b)
-- | Remove a variable from the bucket
removeFromBucket :: DV -> Buckets f -> Buckets f
removeFromBucket dv (Buckets [] m) = Buckets [] (M.delete dv m)
removeFromBucket dv (Buckets e m) = Buckets (tail e) (M.delete dv m)
marginalizeOneVariable :: Factor f => Buckets f -> DV -> Buckets f
marginalizeOneVariable currentBucket dv =
let fk = getBucket dv currentBucket
p = factorProduct fk
f' = factorProjectOut [dv] p
in
updateBucket dv f' currentBucket
-- | Compute the prior marginal. All the variables in the
-- elimination order are conditionning variables ( p( . | conditionning variables) )
marginal :: Factor f
=> [f] -- ^ Bayesian Network
-> EliminationOrder DV -- ^ Ordering of variables to marginalize
-> EliminationOrder DV -- ^ Ordering of remaining variables
-> [DVI] -- ^ Assignment for some factors in variables to marginalize
-> f
marginal lf p r assignment =
-- The elimintation order are the variables to eliminate.
-- But the algorithm also needs the remaining variables
let bucket = createBuckets lf p r
assignmentFactors = map factorFromInstantiation assignment
bucket' = foldl' addBucket bucket assignmentFactors
Buckets _ resultBucket = foldl' marginalizeOneVariable bucket' p
resultFactor = factorProduct . concat . M.elems $ resultBucket
-- The norm is P(e) and result factor is P(Q,e)
in
-- We get P(Q , e)
resultFactor
-- | Compute the prior marginal. All the variables in the
-- elimination order are conditionning variables ( p( . | conditionning variables) )
-- First we sum, then we maximize for the remaining variables
mpemarginal :: [CPT] -- ^ Bayesian Network
-> EliminationOrder DV -- ^ Ordering of variables to marginalize
-> EliminationOrder DV -- ^ Ordering of remaining variables
-> [DVI] -- ^ Assignment for some factors in variables to marginalize
-> MAXCPT
mpemarginal lf p r assignment =
-- The elimintation order are the variables to eliminate.
-- But the algorithm also needs the remaining variables
let bucket = createBuckets lf p r
assignmentFactors = map factorFromInstantiation assignment
bucket' = foldl' addBucket bucket assignmentFactors
bucket'' = foldl' marginalizeOneVariable bucket' p
bucketMax = convertToMaxCPT bucket''
Buckets _ resultBucket = foldl' marginalizeOneVariable bucketMax r
resultFactor = factorProduct . concat . M.elems $ resultBucket
-- The norm is P(e) and result factor is P(Q,e)
in
-- We get P(Q , e)
resultFactor
-- | Most Probable Explanation (or Maximum A Posteriori estimator)
-- when restricted to a subest of variables in output
mpe :: (Graph g, BayesianDiscreteVariable dva, BayesianDiscreteVariable dvb)
=> BayesianNetwork g CPT -- ^ Bayesian network defining the factors
-> EliminationOrder dva -- ^ Ordering of variables to sum out (should contain evidence variables)
-> EliminationOrder dvb -- ^ Ordering of remaining variables (to maximize)
-> [DVI] -- ^ Assignment
-> [DVISet] -- ^ MPE or MAP instantiation
mpe g someP someR assignment =
let p = map dv someP
r = map dv someR
s = allVertexValues g
resultFactor = mpemarginal s p r assignment
in
mpeInstantiations (resultFactor)
posteriorMarginal :: (Graph g, Factor f, Show f, BayesianDiscreteVariable dva, BayesianDiscreteVariable dvb)
=> BayesianNetwork g f -- ^ Bayesian Network
-> EliminationOrder dva -- ^ Ordering of variables to marginzalie
-> EliminationOrder dvb-- ^ Ordering of remaining variables
-> [DVI] -- ^ Assignment for some factors in variables to marginalize
-> f
posteriorMarginal g someP someR assignment =
let p = map dv someP
r = map dv someR
s = allVertexValues g
resultFactor = marginal s p r assignment
norm = factorNorm resultFactor
in
-- We get P(Q | e)
resultFactor `factorDivide` norm
-- | Compute the prior marginal. All the variables in the
-- elimination order are conditionning variables ( p( . | conditionning variables) )
priorMarginal :: (Graph g, Factor f, Show f, BayesianDiscreteVariable dva, BayesianDiscreteVariable dvb)
=> BayesianNetwork g f -- ^ Bayesian Network
-> EliminationOrder dva-- ^ Ordering of variables to marginalize
-> EliminationOrder dvb-- ^ Ordering of remaining to keep in result
-> f
priorMarginal g someEA someEB =
let ea = map dv someEA
eb = map dv someEB
s = allVertexValues g
resultFactor = marginal s ea eb []
norm = factorNorm resultFactor
in
-- We get P(Q | e)
resultFactor `factorDivide` norm
-- | Compute the interaction graph of the BayesianNetwork
interactionGraph :: (FoldableWithVertex g,Factor f, UndirectedGraph g')
=> BayesianNetwork g f
-> g' () DV
interactionGraph g =
foldrWithVertex addFactor emptyGraph g
where
addFactor vertex factor graph =
let allvars = factorVariables factor
edges = [(x,y) | x <- allvars, y <- allvars , x /= y]
addNewEdge g (va,vb) =
let g' = addVertex (variableVertex vb) vb . addVertex (variableVertex va) va $ g
in
addEdge (edge (variableVertex va) (variableVertex vb)) () $ g'
in
foldl' addNewEdge graph edges
-- | Number of neighbors for a variable in the bayesian network
nbNeighbors :: UndirectedSG () DV
-> DV
-> Int
nbNeighbors g dv =
let r = fromJust $ neighbors g (variableVertex dv)
in
length r
-- | Number of missing links between the neighbors of the graph
nbMissingLinks :: UndirectedSG () DV
-> DV
-> Int
nbMissingLinks g dv =
let r = fromJust $ neighbors g (variableVertex dv)
edges = [(x,y) | x <- r, y <- r , x /= y, not (isLinkedWithAnEdge g x y)]
in
length edges
-- | Compute the degree order of an elimination order
degreeOrder :: (FoldableWithVertex g, Factor f, Graph g)
=> BayesianNetwork g f
-> EliminationOrder DV
-> Int
degreeOrder g p =
let ig = interactionGraph g :: UndirectedSG () DV
(_,w) = foldl' processVariable (ig,0) p
in
w
where
addAnEdge g (va,vb) = addEdge (edge va vb) () g
processVariable (g,w) bdv =
let r = fromJust $ neighbors g (variableVertex bdv)
nbNeighbors = length r
edges = [(x,y) | x <- r, y <- r , x /= y, not (isLinkedWithAnEdge g x y)]
g' = removeVertex (variableVertex bdv) (foldl' addAnEdge g edges)
in
if nbNeighbors > w
then
(g',nbNeighbors)
else
(g',w)
-- | Find an elimination order minimizing a metric
eliminationOrderForMetric :: (Graph g, Factor f, FoldableWithVertex g, UndirectedGraph g')
=> (g' () DV -> DV -> Int)
-> BayesianNetwork g f
-> EliminationOrder DV
eliminationOrderForMetric metric g =
let ig = interactionGraph g
s = allVertexValues ig
getOptimalNode _ [] = []
getOptimalNode g l =
let (optimalNode,_) = minimumBy (compare `on` snd) . map (\v -> (v,metric g v)) $ l
g' = removeVertex (variableVertex optimalNode) g
in
optimalNode : getOptimalNode g' (l \\ [optimalNode])
in
getOptimalNode ig s
-- | Elimination order minimizing the degree
minDegreeOrder :: (Graph g, Factor f, FoldableWithVertex g)
=> BayesianNetwork g f
-> EliminationOrder DV
minDegreeOrder = eliminationOrderForMetric nbNeighbors
-- | Elimination order minimizing the filling
minFillOrder :: (Graph g, Factor f, FoldableWithVertex g)
=> BayesianNetwork g f
-> EliminationOrder DV
minFillOrder = eliminationOrderForMetric nbMissingLinks