blob: 1ac2dbd4f0ac2849ad59bb7745fc4b4a8bcb4f04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
function L = log_prior(CPD)
% LOG_PRIOR Return log P(theta) for a tabular CPD
% L = log_prior(CPD)
switch CPD.prior_type
case 'none',
L = 0;
case 'dirichlet',
D = CPD.dirichlet(:);
L = sum(log(D + (D==0)));
case 'entropic',
% log-prior = log exp(-H(theta)) = sum_i theta_i log (theta_i)
fam_sz = CPD.sizes;
psz = prod(fam_sz(1:end-1));
ssz = fam_sz(end);
C = reshape(CPD.CPT, psz, ssz);
L = sum(sum(C .* log(C + (C==0))));
end
|